@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/barlow-condensed-800-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

:root {
  --paper: #f5f7f8;
  --navy: #0a2942;
  --navy-deep: #061b2c;
  --blue: #0b5c9e;
  --blue-bright: #0874be;
  --orange: #ff8a34;
  --orange-dark: #c94f0d;
  --graphite: #17212a;
  --mist: #e8f1f7;
  --line: rgba(10, 41, 66, 0.22);
  --line-light: rgba(245, 247, 248, 0.32);
  --error: #b42318;
  --success: #14703c;
  --text-muted: #536575;
  --focus-inner: #fff;
  --focus-outer: #0a2942;
  --display: "Barlow Condensed", "Bahnschrift", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --utility-height: 32px;
  --header-height: 118px;
  --section-space: clamp(4.5rem, 6.5vw, 6.5rem);
  --type-hero: clamp(3.5rem, 5.25vw, 5rem);
  --type-section: clamp(2.5rem, 4vw, 4rem);
  --type-subsection: clamp(1.75rem, 2.3vw, 2.25rem);
  --type-score: clamp(3.75rem, 6vw, 5.5rem);
  --type-feature-quote: clamp(2.25rem, 3vw, 2.75rem);
  --type-step: clamp(2rem, 3.4vw, 3.25rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --motion-instant: 120ms;
  --motion-fast: 180ms;
  --motion-base: 240ms;
  --motion-slow: 420ms;
  --motion-focal: 680ms;
}

@view-transition {
  navigation: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--navy-deep);
  background: var(--orange);
}

* {
  scrollbar-color: var(--orange) var(--navy);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--navy);
}

*::-webkit-scrollbar-thumb {
  border: 2px solid var(--navy);
  background: var(--orange);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus-inner);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus-outer);
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1,
h2 {
  line-height: 0.98;
}

h1 {
  font-size: var(--type-hero);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: var(--type-section);
}

h3 {
  font-size: var(--type-subsection);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  max-width: 66ch;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--orange-dark);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-utility {
  position: fixed;
  z-index: 51;
  top: 0;
  right: 0;
  left: 0;
  height: var(--utility-height);
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  line-height: 1;
}

.site-utility__inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-inline: auto;
}

.site-utility a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-utility a:hover,
.site-utility a:focus-visible {
  color: #fff;
}

.site-utility a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -3px;
}

.site-utility__address {
  overflow: hidden;
  max-width: 260px;
  text-overflow: ellipsis;
}

.site-utility__address::before,
.site-utility__hours::before {
  width: 5px;
  height: 5px;
  margin-right: 0.55rem;
  flex: 0 0 5px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.site-utility__hours,
.site-utility__contact {
  display: flex;
  align-items: center;
}

.site-utility__hours {
  min-width: 0;
  gap: 0.7rem;
  white-space: nowrap;
}

.site-utility__hours span + span::before {
  margin-right: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  content: "/";
}

.site-utility__contact {
  gap: 1rem;
}

.site-utility__contact a + a::before {
  width: 1px;
  height: 12px;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.site-utility__compact {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: calc(var(--utility-height) + 18px);
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 60px;
  align-items: center;
  width: min(1180px, calc(100vw - 48px));
  min-height: 0;
  padding: 0.3rem 0.72rem 0.3rem 1.2rem;
  color: #fff;
  background: rgba(4, 28, 45, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(4, 28, 45, 0.19);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  transform: translateX(-50%);
  transition: grid-template-rows 260ms var(--ease), background-color 260ms ease, box-shadow 260ms ease;
  view-transition-name: site-header;
}

.site-header.is-scrolled {
  grid-template-rows: 52px;
  background: rgba(4, 28, 45, 0.96);
  box-shadow: 0 14px 36px rgba(4, 28, 45, 0.25);
}

.site-header::after {
  display: none;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: var(--display);
  font-size: 1.3rem;
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo--header {
  width: auto;
  height: 60px;
}

.brand-logo--footer {
  width: 225px;
  margin: -0.55rem 0 0;
}

.wordmark strong {
  color: var(--orange);
  font-weight: inherit;
}

.wordmark__mark {
  width: 30px;
  color: #fff;
}

.accent-stroke {
  color: var(--orange);
  stroke: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.35vw, 1.4rem);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a {
  font-size: 0.94rem;
  white-space: nowrap;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
  transition-duration: var(--motion-instant);
}

.button--primary {
  color: var(--navy-deep);
  background: var(--orange);
}

.button--primary:hover {
  color: #fff;
  background: var(--orange-dark);
}

.button--secondary {
  color: #fff;
  background: var(--blue);
}

.button--secondary:hover {
  background: var(--navy);
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button--outline:hover {
  color: #fff;
  background: var(--navy);
}

.button--ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.64);
}

.button--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.action-arrow {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.3rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-cta {
  min-height: 48px;
  padding-inline: 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 9px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 49;
  inset: 0;
  overflow-y: auto;
  padding: 7.25rem 24px 2rem;
  color: #fff;
  background: rgba(4, 28, 45, 0.985);
  overscroll-behavior: contain;
}

.mobile-menu:not([hidden]) {
  display: grid;
  align-content: start;
  gap: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-menu:not([hidden]) {
    animation: menu-reveal 320ms var(--ease) both;
  }

  .mobile-menu:not([hidden]) > a {
    animation: menu-link-in 360ms var(--ease) both;
  }

  .mobile-menu:not([hidden]) > a:nth-child(2) { animation-delay: 35ms; }
  .mobile-menu:not([hidden]) > a:nth-child(3) { animation-delay: 70ms; }
  .mobile-menu:not([hidden]) > a:nth-child(4) { animation-delay: 105ms; }
  .mobile-menu:not([hidden]) > a:nth-child(5) { animation-delay: 140ms; }
  .mobile-menu:not([hidden]) > a:nth-child(6) { animation-delay: 175ms; }
  .mobile-menu:not([hidden]) > a:nth-child(7) { animation-delay: 210ms; }
}

.mobile-menu > a:not(.button) {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 2rem;
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 2rem;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 50% 54%;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__image {
    animation: hero-image-reveal var(--motion-focal) var(--ease) both;
  }

  .hero__content > h1,
  .hero__content > p,
  .hero__content > .action-row,
  .hero__content > .location-link {
    animation: hero-copy-in 520ms var(--ease) both;
  }

  .hero__content > h1 { animation-delay: 90ms; }
  .hero__content > p { animation-delay: 150ms; }
  .hero__content > .action-row { animation-delay: 210ms; }
  .hero__content > .location-link { animation-delay: 270ms; }

  .measure-line--hero {
    animation: measure-line-in 620ms var(--ease) 180ms both;
    transform-origin: top;
  }
}

.hero__shade {
  background: linear-gradient(90deg, rgba(6, 27, 44, 0.98) 0%, rgba(6, 27, 44, 0.78) 34%, rgba(6, 27, 44, 0.18) 67%, rgba(6, 27, 44, 0.06) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: min(820px, calc(100svh - var(--header-height)));
  padding-block: 5rem;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero p {
  max-width: 500px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.125rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero .button {
  min-width: 188px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

.location-link svg {
  width: 24px;
  color: var(--orange);
}

.measure-line {
  position: absolute;
  z-index: 2;
  width: 1px;
  background: var(--line-light);
}

.measure-line--hero {
  top: 10%;
  bottom: 10%;
  left: max(24px, calc((100vw - 1180px) / 2 - 18px));
}

.paper-grid {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(11, 92, 158, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 92, 158, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
}

.device-section,
.catalogue-section {
  padding-block: var(--section-space);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: #425566;
  font-size: 1.12rem;
}

.device-heading-copy {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
}

.device-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1px;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
}

.device-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 200px;
  padding: 1.4rem;
  color: var(--navy);
  background: rgba(245, 247, 248, 0.98);
  text-decoration: none;
  transition: color 240ms ease, background-color 240ms ease;
}

.device-choice svg {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 76px;
  opacity: 0.9;
  transition: transform 300ms var(--ease);
}

.device-choice__image {
  position: absolute;
  top: 0.45rem;
  right: 1.35rem;
  width: 132px;
  height: 132px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 10px 12px rgba(6, 27, 44, 0.14));
  transform-origin: center;
  transition: filter 300ms var(--ease), transform 300ms var(--ease);
}

.device-choice__image--phone {
  width: 68px;
}

.device-choice__image--tablet,
.device-choice__image--laptop {
  width: 164px;
}

.device-choice__image--console {
  width: 124px;
}

.device-choice span {
  max-width: 180px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 650;
  line-height: 1;
}

.device-choice small {
  margin-top: 0.45rem;
  color: var(--orange-dark);
  font-weight: 700;
}

.device-choice::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.device-choice:hover,
.device-choice:focus-visible {
  color: #fff;
  background: var(--blue);
}

.device-choice:hover svg,
.device-choice:focus-visible svg {
  transform: translateY(-6px);
}

.device-choice:hover .device-choice__image,
.device-choice:focus-visible .device-choice__image {
  filter: drop-shadow(0 14px 16px rgba(6, 27, 44, 0.24)) saturate(1.05);
  transform: translateY(-6px) scale(1.025);
}

.device-choice:hover::after,
.device-choice:focus-visible::after {
  transform: scaleX(1);
}

.device-choice--featured::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 6px;
  background: var(--orange);
  content: "";
}

.uncertain-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  background: var(--navy);
}

.uncertain-panel svg {
  width: 58px;
  margin-bottom: 2rem;
}

.uncertain-panel h3 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.uncertain-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--blue);
  font-weight: 750;
}

.uncertain-panel .text-link {
  color: #fff;
}

.uncertain-panel .action-arrow,
.text-link .action-arrow,
.address-docket .action-arrow {
  margin-left: 0;
}

.faults-section {
  overflow: clip;
  padding-block: clamp(5rem, 5.75vw, 5.5rem) clamp(5.5rem, 6.75vw, 6.5rem);
  color: var(--graphite);
  background: #fff;
}

.faults-layout {
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 3.5vw, 3.5rem);
}

.faults-layout > h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: 0.92;
  text-align: center;
  text-wrap: balance;
}

.phone-diagram {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(720px, 58vw, 820px);
  margin: 0;
  place-items: center;
  isolation: isolate;
}

.phone-diagram::before {
  position: absolute;
  z-index: -1;
  inset: 3% 14%;
  background: radial-gradient(circle at 50% 45%, rgba(11, 92, 158, 0.08), rgba(255, 255, 255, 0) 68%);
  content: "";
}

.exploded-phone-image {
  width: min(54%, 530px);
  height: auto;
  max-height: 820px;
  object-fit: contain;
  filter: brightness(1.03) contrast(1.04) drop-shadow(0 24px 32px rgba(6, 27, 44, 0.18));
}

.fault-marker {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 0.22rem;
  color: var(--navy-deep);
  background: #fff;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

.fault-marker::after {
  position: absolute;
  top: 50%;
  height: 1px;
  background: currentColor;
  content: "";
}

.fault-marker::before {
  position: absolute;
  z-index: 2;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: var(--navy-deep);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--navy-deep);
  content: "";
}

.fault-marker--left {
  left: 3%;
}

.fault-marker--left::after {
  left: calc(100% + 8px);
  width: var(--leader);
}

.fault-marker--left::before {
  left: calc(100% + var(--leader) + 2px);
}

.fault-marker--right {
  right: 3%;
}

.fault-marker--right::after {
  right: calc(100% + 8px);
  width: var(--leader);
}

.fault-marker--right::before {
  right: calc(100% + var(--leader) + 2px);
}

.fault-marker--screen {
  --leader: clamp(230px, 31vw, 450px);
  top: 8%;
}

.fault-marker--camera {
  --leader: clamp(340px, 47vw, 680px);
  top: 20%;
}

.fault-marker--battery {
  --leader: clamp(230px, 31vw, 450px);
  top: 47%;
}

.fault-marker--sound {
  --leader: clamp(280px, 30vw, 430px);
  top: 73%;
}

.fault-marker--charge {
  --leader: clamp(360px, 48vw, 690px);
  top: 87%;
}

.fault-marker:hover {
  color: var(--blue);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .phone-diagram:not(.is-diagnosing) .fault-marker {
    opacity: 0;
  }

  .motion-ready .phone-diagram:not(.is-diagnosing) .fault-marker::after {
    transform: scaleX(0);
  }

  .motion-ready .phone-diagram:not(.is-diagnosing) .fault-marker::before {
    transform: scale(0);
  }

  .phone-diagram.is-diagnosing .exploded-phone-image {
    animation: diagnostic-assemble 720ms var(--ease) both;
  }

  .phone-diagram.is-diagnosing .fault-marker {
    animation: diagnostic-label-in 420ms var(--ease) var(--diagnostic-delay, 120ms) both;
  }

  .phone-diagram.is-diagnosing .fault-marker::after {
    animation: diagnostic-leader-in 500ms var(--ease) calc(var(--diagnostic-delay, 120ms) + 80ms) both;
  }

  .phone-diagram.is-diagnosing .fault-marker::before {
    animation: diagnostic-pin-in 300ms var(--ease) calc(var(--diagnostic-delay, 120ms) + 300ms) both;
  }
}

.fault-marker--left::after { transform-origin: left; }
.fault-marker--right::after { transform-origin: right; }
.fault-marker--screen { --diagnostic-delay: 100ms; }
.fault-marker--camera { --diagnostic-delay: 180ms; }
.fault-marker--battery { --diagnostic-delay: 260ms; }
.fault-marker--sound { --diagnostic-delay: 340ms; }
.fault-marker--charge { --diagnostic-delay: 420ms; }

@media (hover: hover) {
  .phone-diagram:has(.fault-marker:hover) .fault-marker:not(:hover),
  .phone-diagram:has(.fault-marker:focus-visible) .fault-marker:not(:focus-visible) {
    opacity: 0.34;
  }

  .fault-marker {
    transition: color var(--motion-fast) ease, opacity var(--motion-fast) ease, transform var(--motion-base) var(--ease);
  }

  .fault-marker--left:hover,
  .fault-marker--left:focus-visible {
    color: var(--orange-dark);
    transform: translateX(4px);
  }

  .fault-marker--right:hover,
  .fault-marker--right:focus-visible {
    color: var(--orange-dark);
    transform: translateX(-4px);
  }
}

.local-proof {
  overflow: clip;
  padding-block: clamp(4rem, 5vw, 5rem);
  color: #fff;
  background: var(--navy-deep);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.proof-layout h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: var(--type-section);
}

.proof-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 1.5rem;
}

.storefront-image {
  width: 100%;
  height: clamp(380px, 32vw, 480px);
  aspect-ratio: 8 / 5;
  border: 1px solid var(--line-light);
  object-fit: cover;
  object-position: center 56%;
}

.address-docket {
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: 0;
  width: min(260px, 45%);
  padding: 1.5rem;
  color: var(--navy);
  background: var(--paper);
  border-top: 4px solid var(--orange);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24));
}

.address-docket span {
  display: block;
  margin-bottom: 1rem;
  color: #526573;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.address-docket strong {
  display: block;
  margin-bottom: 1.3rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.address-docket a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 750;
}

.reviews-section {
  padding-block: clamp(4.5rem, 5.25vw, 5.5rem);
  color: var(--navy);
  background-color: var(--paper);
  border-bottom: 1px solid rgba(10, 41, 66, 0.2);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1.5fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.reviews-summary {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.reviews-summary h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1;
}

.reviews-count {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin: 1.5rem 0 0.9rem;
  padding-block: 1rem;
  border-block: 1px solid var(--navy);
}

.reviews-count strong {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: clamp(3.25rem, 4.7vw, 4.25rem);
  font-weight: 650;
  line-height: 0.72;
  letter-spacing: -0.035em;
}

.reviews-count span {
  max-width: 140px;
  color: #405568;
  font-weight: 700;
  line-height: 1.15;
}

.review-stars {
  display: flex;
  gap: 0.28rem;
  color: var(--orange-dark);
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1;
}

.reviews-note {
  max-width: 36ch;
  margin: 0.7rem 0 1.25rem;
  color: #536575;
  font-size: 0.9rem;
}

.reviews-summary .button svg {
  width: 18px;
  margin-left: 0.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "feature repair" "service holiday";
  gap: 1px;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.review-wall .review-entry:nth-child(1) { grid-area: feature; }
.review-wall .review-entry:nth-child(2) { grid-area: repair; }
.review-wall .review-entry:nth-child(3) { grid-area: service; }
.review-wall .review-entry:nth-child(4) { grid-area: holiday; }

.review-entry {
  position: relative;
  display: flex;
  margin: 0;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
}

.review-entry--featured {
  color: #fff;
  background: var(--navy-deep);
}

.review-entry--featured::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24%;
  height: 4px;
  background: var(--orange);
  content: "";
}

.review-entry__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(10, 41, 66, 0.2);
  font-size: 0.875rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-entry--featured .review-entry__meta {
  color: #abd4ef;
  border-color: rgba(255, 255, 255, 0.22);
}

.review-entry blockquote {
  margin: 1rem 0 1.25rem;
  color: var(--navy);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.review-entry--featured blockquote {
  max-width: 30ch;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.review-entry figcaption {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.review-entry--featured figcaption {
  color: var(--orange);
}

.review-entry figcaption span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 600;
}

.review-controls {
  display: none;
}

.review-navigation {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-navigation button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  cursor: pointer;
  place-items: center;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.review-navigation button:hover:not(:disabled) {
  color: var(--navy-deep);
  background: var(--orange);
}

.review-navigation button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.review-navigation svg {
  width: 18px;
}

.review-navigation output {
  min-width: 44px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-align: center;
}

.review-swipe-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.catalogue-intro {
  align-self: center;
}

.catalogue-intro p {
  color: #4d5f6f;
  font-size: 1.08rem;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.catalogue-grid a {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  padding: 1.35rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  overflow: hidden;
}

.catalogue-grid span {
  position: relative;
  z-index: 2;
  max-width: 150px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

.catalogue-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--thumb-position, 58% 50%);
  filter: saturate(0.9) contrast(1.01);
  transform: scale(1.005);
  transition: filter 220ms ease, transform 420ms var(--ease);
}

.catalogue-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.9) 100%);
}

.catalogue-grid a:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.04);
}

.availability-note {
  grid-column: 2;
  margin: -2.5rem 0 0;
  color: #506271;
  font-size: 0.92rem;
}

.sell-section {
  padding-block: clamp(3.5rem, 4.5vw, 4rem);
  color: #fff;
  background: var(--blue);
}

.sell-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr) auto;
  align-items: center;
  gap: 3rem;
}

.sell-layout h2 {
  margin: 0;
  color: #fff;
  font-size: var(--type-section);
}

.sell-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  min-height: 620px;
  background: var(--orange);
}

.contact-section > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.contact-panel {
  align-self: center;
  margin: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--navy);
  background: var(--paper);
  clip-path: polygon(0 0, calc(50% - 28px) 0, 50% 18px, calc(50% + 28px) 0, 100% 0, 100% 100%, calc(50% + 28px) 100%, 50% calc(100% - 18px), calc(50% - 28px) 100%, 0 100%);
}

.contact-panel h2 {
  font-size: var(--type-section);
}

.contact-panel > p {
  color: #4c5e6d;
  font-size: 1.1rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-actions .button {
  width: 100%;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-links a {
  color: var(--blue);
  font-weight: 750;
}

.contact-links address {
  color: var(--navy);
  font-style: normal;
  font-weight: 650;
}

.site-footer {
  position: relative;
  padding: 0;
  color: #fff;
  background: var(--navy-deep);
  border-top: 3px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  padding-block: 3rem 2.75rem;
}

.footer-brand,
.footer-group {
  min-width: 0;
  padding-inline: clamp(1.25rem, 2.2vw, 2rem);
}

.footer-brand {
  padding-left: 0;
}

.footer-brand .wordmark {
  margin-bottom: 1.25rem;
  font-size: 1.38rem;
}

.footer-brand p {
  max-width: 29ch;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.2rem;
  color: #fff;
  border-bottom: 1px solid var(--orange);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-cta .action-arrow {
  color: var(--orange);
  transition: transform 220ms var(--ease);
}

.footer-cta:hover {
  color: var(--orange);
}

.footer-cta:hover .action-arrow {
  transform: translateX(3px);
}

.footer-group {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-group h2 {
  margin: 0 0 1.15rem;
  color: var(--orange);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 0.62rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-links a:hover {
  color: #fff;
}

.footer-group address {
  display: grid;
  gap: 0.14rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-links--compact {
  gap: 0.52rem;
}

.footer-contact a {
  display: grid;
  justify-items: start;
  gap: 0.08rem;
  overflow-wrap: anywhere;
}

.footer-contact a > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.external-arrow {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.6;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
}

.footer-bottom nav a,
.footer-credit {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom nav a:hover,
.footer-credit:hover {
  color: #fff;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.3rem;
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.whatsapp-float {
  position: fixed;
  z-index: 46;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: #128c4a;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(6, 27, 44, 0.24);
  text-decoration: none;
  transition: width 260ms var(--ease), background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.whatsapp-float__label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(8px);
  transition: max-width 260ms var(--ease), opacity 160ms ease, transform 260ms var(--ease);
}

.whatsapp-float__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
}

.whatsapp-float__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.whatsapp-float__icon path:last-child {
  fill: currentColor;
  stroke: none;
}

.whatsapp-float:focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 3px var(--navy-deep), 0 0 0 6px #fff, 0 14px 32px rgba(6, 27, 44, 0.3);
}

body.menu-open .whatsapp-float {
  pointer-events: none;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    width: 156px;
    background: #0e7b40;
    box-shadow: 0 14px 32px rgba(6, 27, 44, 0.3);
    transform: translateY(-2px);
  }

  .whatsapp-float:hover .whatsapp-float__label,
  .whatsapp-float:focus-visible .whatsapp-float__label {
    max-width: 92px;
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-repair-cta {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0.9rem 1.2rem;
  color: var(--navy-deep);
  background: var(--orange);
  border: 1px solid var(--navy-deep);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(6, 27, 44, 0.28);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(150%);
  transition: transform 300ms var(--ease);
}

.mobile-repair-cta.is-visible {
  transform: translateY(0);
}

.prototype-toast {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 1rem 1.2rem;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .site-utility .site-utility__address,
  .site-utility__wide,
  .site-utility__contact a:last-child {
    display: none;
  }

  .site-utility__compact {
    display: inline;
  }

  .site-utility__inner {
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
    margin-right: 0.7rem;
  }

  .menu-button {
    display: block;
  }

  .device-layout {
    grid-template-columns: 1fr;
  }

  .uncertain-panel {
    min-height: 260px;
  }

  .proof-layout {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    gap: 2.5rem;
  }

  .reviews-layout {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 2.5rem;
  }

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-intro {
    max-width: 640px;
  }

  .availability-note {
    grid-column: 1;
    margin-top: -1rem;
  }

  .sell-layout {
    grid-template-columns: 1fr 1fr;
  }

  .sell-layout .button {
    grid-column: 2;
    width: fit-content;
  }

  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 0;
  }

  .footer-brand,
  .footer-group {
    padding-inline: 2rem;
  }

  .footer-brand,
  .footer-group:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 104px;
    --shell: calc(100vw - 40px);
    --section-space: 4rem;
    --type-hero: clamp(3rem, 12vw, 3.75rem);
    --type-section: clamp(2.25rem, 9.5vw, 2.75rem);
    --type-subsection: 1.75rem;
    --type-score: 3.75rem;
    --type-feature-quote: clamp(1.75rem, 7.2vw, 2rem);
    --type-step: clamp(2rem, 8vw, 2.25rem);
  }

  .site-header {
    top: calc(var(--utility-height) + 12px);
    width: calc(100vw - 24px);
    grid-template-rows: 52px;
    padding: 0.2rem 0.38rem 0.2rem 0.85rem;
  }

  .wordmark {
    font-size: 1.1rem;
  }

  .wordmark__mark {
    display: none;
  }

  .brand-logo--header {
    display: block;
    width: auto;
    height: 52px;
  }

  .header-cta {
    display: none;
  }

  .site-utility {
    font-size: 0.69rem;
  }

  .site-utility__inner {
    width: calc(100vw - 24px);
    gap: 0.7rem;
  }

  .site-utility__hours {
    gap: 0;
  }

  .site-utility__hours::before {
    margin-right: 0.4rem;
  }

  .site-utility__contact {
    gap: 0.65rem;
  }

  .site-utility__contact a + a::before {
    margin-right: 0.65rem;
  }

  .menu-button {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__image {
    object-position: center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(6, 27, 44, 0.98) 0%, rgba(6, 27, 44, 0.85) 44%, rgba(6, 27, 44, 0.12) 86%);
  }

  .hero__content {
    justify-content: flex-end;
    min-height: calc(100svh - var(--header-height));
    padding-block: 16rem 2.2rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero p {
    margin-bottom: 1.4rem;
    font-size: 1rem;
  }

  .action-row {
    display: grid;
    width: 100%;
    margin-bottom: 1.2rem;
  }

  .hero .button {
    width: 100%;
  }

  .location-link {
    font-size: 0.92rem;
  }

  .measure-line--hero {
    left: 14px;
  }

  .section-heading--wide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-choice {
    min-height: 164px;
    padding: 1.05rem;
  }

  .device-choice svg {
    top: 1rem;
    right: 1rem;
    width: 60px;
  }

  .device-choice__image {
    top: 0.35rem;
    right: 1rem;
    width: 96px;
    height: 96px;
  }

  .device-choice__image--phone {
    width: 50px;
  }

  .device-choice__image--tablet,
  .device-choice__image--laptop {
    width: 124px;
  }

  .device-choice__image--console {
    width: 88px;
  }

  .device-choice span {
    font-size: 1.35rem;
  }

  .device-choice small {
    display: none;
  }

  .uncertain-panel {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 0.35rem 1rem;
    min-height: 0;
    padding: 1.25rem;
  }

  .uncertain-panel svg {
    grid-row: 1 / span 2;
    align-self: start;
    width: 44px;
    margin: 0;
  }

  .uncertain-panel h3 {
    margin: 0;
    font-size: 1.65rem;
  }

  .uncertain-panel p {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .uncertain-panel .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .faults-section {
    padding-block: 4rem 4.5rem;
  }

  .faults-layout {
    gap: 2.25rem;
  }

  .faults-layout > h2 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 10vw, 3.5rem);
  }

  .phone-diagram {
    min-height: 620px;
  }

  .exploded-phone-image {
    width: min(92%, 420px);
    max-height: 620px;
  }

  .fault-marker {
    font-size: 0.95rem;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .local-proof {
    padding-block: 3rem;
  }

  .proof-layout h2 {
    max-width: 11ch;
  }

  .proof-visual {
    padding-bottom: 0;
  }

  .storefront-image {
    height: clamp(230px, 58vw, 320px);
    aspect-ratio: 4 / 3;
    object-position: center 58%;
  }

  .address-docket {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 1.25rem), 320px);
    margin: -2rem 0 0 auto;
    padding: 1.15rem;
  }

  .address-docket span {
    margin-bottom: 0.65rem;
  }

  .address-docket strong {
    margin-bottom: 0.9rem;
    font-size: 1.7rem;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .reviews-section {
    padding-block: 3.25rem 3.5rem;
  }

  .reviews-summary {
    position: static;
  }

  .reviews-summary h2 {
    max-width: 290px;
    font-size: 2rem;
  }

  .reviews-count {
    max-width: none;
  }

  .review-wall {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    background: transparent;
    border: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .review-entry,
  .review-entry--featured {
    min-height: 300px;
    flex: 0 0 min(82vw, 310px);
    border: 1px solid var(--navy);
    scroll-snap-align: start;
  }

  .review-entry--featured blockquote {
    font-size: 1.375rem;
  }

  .catalogue-grid a,
  .catalogue-grid a:nth-child(1),
  .catalogue-grid a:nth-child(4) {
    min-height: 190px;
  }

  .catalogue-grid span {
    font-size: 1.25rem;
  }

  .sell-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sell-section {
    padding-block: 2.5rem;
  }

  .sell-layout .button {
    grid-column: 1;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-section > img {
    height: 270px;
    min-height: 270px;
  }

  .contact-panel {
    margin: 0;
    padding: 2.75rem 20px 3.25rem;
    clip-path: none;
  }

  .contact-panel h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }

  .contact-panel > p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .contact-links {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 2.5rem 1.25rem;
  }

  .footer-brand,
  .footer-group,
  .footer-group:nth-child(3) {
    padding: 0 0 1.75rem;
    border-left: 0;
  }

  .footer-group,
  .footer-group:nth-child(3) {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-brand p {
    max-width: 34ch;
  }

  .footer-group:first-of-type .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.7rem 1rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.85rem;
    padding-block: 1.25rem calc(5.5rem + env(safe-area-inset-bottom));
  }

  .footer-bottom nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
  }

  .footer-credit {
    justify-self: start;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 142px;
    height: 50px;
    transition: bottom 300ms var(--ease), background-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  }

  .whatsapp-float.is-above-repair-cta {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .whatsapp-float__label {
    max-width: 92px;
    opacity: 1;
    transform: none;
  }

  .whatsapp-float__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .whatsapp-float__icon svg {
    width: 27px;
    height: 27px;
  }

  .repair-page .whatsapp-float {
    z-index: 52;
    top: calc(var(--utility-height) + 16px);
    right: 70px;
    bottom: auto;
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    box-shadow: none;
  }

  .repair-page .whatsapp-float__label {
    display: none;
  }

  .repair-page .whatsapp-float__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mobile-repair-cta {
    display: flex;
  }

  .prototype-toast {
    right: 16px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    left: 16px;
  }
}

@media (max-width: 520px) {
  .fault-marker--left {
    left: 0;
  }

  .fault-marker--right {
    right: 0;
  }

  .fault-marker--screen {
    --leader: clamp(90px, 28vw, 145px);
  }

  .fault-marker--camera {
    --leader: clamp(125px, 38vw, 190px);
  }

  .fault-marker--battery {
    --leader: clamp(80px, 26vw, 135px);
  }

  .fault-marker--sound {
    --leader: clamp(70px, 22vw, 115px);
  }

  .fault-marker--charge {
    --leader: clamp(140px, 43vw, 210px);
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .wordmark {
    font-size: 1rem;
  }

  .hero__content {
    padding-bottom: 1.6rem;
  }

  .device-choice {
    min-height: 156px;
  }

  .device-choice svg {
    width: 52px;
  }

  .device-choice__image {
    right: 0.8rem;
    width: 88px;
    height: 88px;
  }

  .device-choice__image--phone {
    width: 44px;
  }

  .device-choice__image--tablet,
  .device-choice__image--laptop {
    width: 108px;
  }

  .device-choice__image--console {
    width: 80px;
  }

  .device-choice span {
    font-size: 1.15rem;
  }

  .address-docket {
    width: calc(100% - 0.75rem);
    padding: 1.25rem;
  }

  .phone-diagram {
    min-height: 550px;
    margin-inline: 0;
  }

  .exploded-phone-image {
    width: min(94%, 340px);
    max-height: 510px;
  }

  .fault-marker {
    min-height: 40px;
    font-size: 0.875rem;
  }

  .review-entry {
    min-height: 220px;
    padding: 1.35rem;
  }

  .review-entry__meta {
    display: grid;
    gap: 0.35rem;
  }

  .catalogue-grid a,
  .catalogue-grid a:nth-child(1),
  .catalogue-grid a:nth-child(4) {
    min-height: 156px;
    padding: 0.9rem;
  }

  .catalogue-grid span {
    max-width: 110px;
    font-size: 1.05rem;
  }
}

@media (max-width: 760px) {
  .review-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .review-entry.is-current {
    box-shadow: inset 0 3px 0 var(--orange);
  }
}

@media (max-width: 420px) {
  .review-swipe-hint {
    max-width: 112px;
  }
}

@keyframes page-out {
  to { opacity: 0.7; transform: translateY(-6px); }
}

@keyframes page-in {
  from { opacity: 0.78; transform: translateY(8px); }
}

@keyframes menu-reveal {
  from { opacity: 0; clip-path: inset(0 0 100%); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes menu-link-in {
  from { opacity: 0; transform: translateY(-8px); }
}

@keyframes hero-image-reveal {
  from { opacity: 0.72; clip-path: inset(0 0 0 28%); transform: scale(1.035); }
  to { opacity: 1; clip-path: inset(0); transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(14px); }
}

@keyframes measure-line-in {
  from { opacity: 0; transform: scaleY(0); }
}

@keyframes diagnostic-assemble {
  from { opacity: 0.68; filter: brightness(1.08) contrast(1.02) drop-shadow(0 12px 18px rgba(6, 27, 44, 0.08)); transform: translateY(20px) scale(0.975); }
}

@keyframes diagnostic-label-in {
  from { opacity: 0; transform: translateY(8px); }
}

@keyframes diagnostic-leader-in {
  from { transform: scaleX(0); }
}

@keyframes diagnostic-pin-in {
  from { opacity: 0; transform: scale(0); }
}

@keyframes reading-progress {
  to { transform: scaleX(1); }
}

::view-transition-old(root) {
  animation: page-out var(--motion-fast) ease both;
}

::view-transition-new(root) {
  animation: page-in var(--motion-base) var(--ease) both;
}

::view-transition-old(site-header),
::view-transition-new(site-header) {
  animation-duration: var(--motion-fast);
}

@supports (animation-timeline: scroll()) {
  body.has-scroll-progress .site-header::after {
    animation: reading-progress linear both;
    animation-timeline: scroll(root block);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .button,
  .desktop-nav a::after,
  .site-footer nav a::after,
  .device-choice,
  .fault-marker,
  .review-navigation button {
    transition-duration: var(--motion-instant) !important;
    transition-property: color, background-color, border-color, opacity !important;
  }

  .button:hover,
  .button:active,
  .device-choice:hover svg,
  .device-choice:focus-visible svg,
  .fault-marker:hover,
  .fault-marker:focus-visible {
    transform: none;
  }

  .device-choice:hover .device-choice__image,
  .device-choice:focus-visible .device-choice__image {
    transform: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(site-header),
  ::view-transition-new(site-header) {
    animation: none !important;
  }
}

/* Soft Technical Editorial footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 100, 154, 0.28), transparent 25rem),
    radial-gradient(circle at 88% 100%, rgba(17, 87, 134, 0.2), transparent 26rem),
    linear-gradient(145deg, #041a2b 0%, #06233a 58%, #082b46 100%);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 76%);
  content: "";
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: clamp(4.5rem, 6vw, 6rem) 4rem;
}

.footer-brand,
.footer-group {
  padding-inline: 0;
}

.footer-brand .wordmark {
  display: inline-flex;
  margin-bottom: 1.35rem;
}

.footer-brand .brand-logo--footer {
  width: min(100%, 235px);
  height: auto;
}

.footer-brand p {
  max-width: 31ch;
  margin-bottom: 1.5rem;
  color: rgba(224, 238, 247, 0.67);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-cta {
  min-height: 44px;
  padding: 0.62rem 1rem;
  color: var(--navy-deep);
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  transition: color 180ms ease, background-color 180ms ease, transform 220ms var(--ease);
}

.footer-cta .action-arrow {
  color: currentColor;
}

.footer-cta:hover {
  color: var(--navy-deep);
  background: #ffa15d;
  transform: translateY(-2px);
}

.footer-group {
  border-left: 0;
}

.footer-group h2 {
  position: relative;
  margin-bottom: 1.45rem;
  padding-bottom: 0.75rem;
  color: #fff;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: none;
}

.footer-group h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.footer-links {
  gap: 0.78rem;
}

.footer-links a {
  color: rgba(225, 238, 246, 0.68);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-group address {
  color: rgba(235, 244, 249, 0.82);
  line-height: 1.55;
}

.footer-contact a > span {
  color: rgba(184, 211, 226, 0.46);
}

.footer-bottom {
  min-height: 76px;
  color: rgba(208, 226, 236, 0.45);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom nav a,
.footer-credit {
  color: rgba(218, 233, 241, 0.55);
}

.footer-credit strong {
  color: rgba(239, 246, 250, 0.82);
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 48ch;
  }
}

@media (max-width: 680px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.4rem;
    padding-block: 2.75rem 1.25rem;
  }

  .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .footer-brand .wordmark {
    margin: 0;
  }

  .footer-brand .brand-logo--footer {
    width: min(100%, 178px);
  }

  .footer-brand p {
    grid-column: 1 / -1;
    max-width: 38ch;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-brand .footer-cta {
    justify-self: end;
    min-height: 44px;
    white-space: nowrap;
  }

  .footer-group {
    min-width: 0;
    padding-block: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-group h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.62rem;
  }

  .footer-group:first-of-type .footer-links {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .footer-links a,
  .footer-group address {
    font-size: 0.88rem;
  }

  .footer-group:nth-child(3) {
    padding-left: 0.15rem;
  }

  .footer-group:nth-child(4) {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }

  .footer-group:nth-child(4) h2,
  .footer-group:nth-child(4) .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.25rem;
  }

  .footer-contact a:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
  }

  .footer-contact a:nth-child(3) {
    order: 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
    min-height: 0;
    padding-block: 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  }

  .footer-bottom nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .footer-credit {
    justify-self: start;
  }

  body:not(.repair-page) .footer-bottom {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-brand .footer-cta {
    justify-self: start;
  }

  .footer-group:nth-child(3),
  .footer-group:nth-child(4) {
    grid-column: 1;
    padding-left: 0;
  }
}

/* Contextual WhatsApp actions */
.whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  color: #0b6b3a;
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.whatsapp-action__icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-action--outline,
.whatsapp-action--dark {
  padding: 0.68rem 1rem;
  border: 1px solid rgba(11, 107, 58, 0.34);
  border-radius: 999px;
  background: rgba(18, 140, 74, 0.07);
}

.whatsapp-action--dark {
  color: #e6f8ed;
  border-color: rgba(139, 231, 176, 0.38);
  background: rgba(18, 140, 74, 0.2);
}

.whatsapp-action--link {
  justify-content: flex-start;
  padding-block: 0.35rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.whatsapp-action:focus-visible {
  outline: 3px solid var(--focus-outer);
  outline-offset: 3px;
}

@media (hover: hover) {
  .whatsapp-action:hover {
    color: #07552e;
    transform: translateY(-1px);
  }

  .whatsapp-action--outline:hover {
    border-color: rgba(11, 107, 58, 0.52);
    background: rgba(18, 140, 74, 0.12);
  }

  .whatsapp-action--dark:hover {
    color: #fff;
    border-color: rgba(164, 240, 194, 0.58);
    background: rgba(18, 140, 74, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-action {
    transition-duration: 0.01ms;
  }

  .whatsapp-action:hover {
    transform: none;
  }
}
