:root {
  --ink: #061624;
  --navy: #071d2c;
  --navy-deep: #03101a;
  --sea: #18c9bd;
  --sea-dark: #087d82;
  --paper: #f5f1e8;
  --paper-alt: #eaf0ed;
  --white: #fff;
  --text: #34434c;
  --muted: #65727b;
  --line: rgba(7, 29, 44, 0.14);
  --shadow: 0 24px 70px rgba(3, 16, 26, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --content: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.96);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 44px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.brand span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.mobile-menu a {
  color: #40505a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--sea);
  border-radius: 7px;
  background: var(--sea);
  color: #06242b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 201, 189, 0.2);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.header-store-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.button-header-secondary {
  border-color: rgba(6, 22, 36, 0.32);
  background: transparent;
  color: var(--ink);
}

.button-header-secondary:hover,
.button-header-secondary:focus-visible {
  border-color: var(--sea-dark);
  background: rgba(24, 201, 189, 0.08);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-links {
  position: absolute;
  right: 0;
  top: 50px;
  width: min(280px, calc(100vw - 32px));
  padding: 12px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu-links a {
  padding: 11px 12px;
  border-radius: 6px;
}

.mobile-menu-links .menu-cta {
  margin-top: 5px;
  background: var(--sea);
  color: #06242b;
  text-align: center;
}

.mobile-menu-links .menu-cta-secondary {
  margin-top: 2px;
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dark .eyebrow,
.product-hero .eyebrow {
  color: var(--sea);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

p {
  line-height: 1.65;
}

.lead {
  max-width: 610px;
  color: #c7d4da;
  font-size: clamp(18px, 1.5vw, 22px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.safety {
  margin: 20px 0 0;
  color: #8ea5b0;
  font-size: 12px;
}

.hero-home,
.product-hero,
.closing {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(24, 201, 189, 0.17), transparent 31%),
    linear-gradient(140deg, #04131f, #092838 68%, #07313a);
}

.hero-home {
  min-height: 820px;
  padding: 86px max(22px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 48px;
}

.hero-home h1,
.product-hero h1,
.closing h2 {
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.product-hero {
  min-height: 730px;
  padding: 76px max(22px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 70px;
}

.product-hero h1 {
  font-size: clamp(54px, 5.3vw, 80px);
}

.product-hero .lead {
  font-size: clamp(17px, 1.35vw, 21px);
}

.product-visual {
  min-width: 0;
}

.home-devices {
  position: relative;
  min-height: 520px;
}

.device-kicker {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  margin: 0;
  color: var(--sea);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.device-link {
  position: absolute;
  display: block;
  color: var(--white);
  text-decoration: none;
  transform-origin: center bottom;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), filter 220ms ease, z-index 0s 220ms;
}

.device-link:hover,
.device-link:focus-visible {
  z-index: 10;
  filter: brightness(1.08);
  transform: translateY(-22px) scale(1.045);
  transition-delay: 0s;
  outline: none;
}

.device-link-mobile {
  z-index: 4;
  right: 0;
  bottom: 26px;
  width: 118px;
}

.device-link-wheelhouse {
  z-index: 3;
  left: 44px;
  bottom: 30px;
  width: 330px;
}

.device-link-desktop {
  z-index: 2;
  right: 26px;
  top: 68px;
  width: 560px;
}

.device-name {
  position: absolute;
  left: 50%;
  bottom: -34px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(3, 16, 26, 0.9);
  color: #d7e5e9;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: 180ms ease;
  white-space: nowrap;
}

.device-link:hover .device-name,
.device-link:focus-visible .device-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.phone-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 20%, transparent 78%, rgba(255,255,255,.1)), linear-gradient(180deg,#1b2028,#05070a);
  box-shadow: 0 18px 38px rgba(0,0,0,.22), inset 0 0 0 1px rgba(0,0,0,.72);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 50%;
  width: 34px;
  max-width: 36%;
  height: 7px;
  border-radius: 999px;
  background: rgba(4,6,9,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  aspect-ratio: 1080 / 2340;
  border: 0;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.42);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tablet-art {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: #09131d;
  box-shadow: 0 0 0 5px #0b1118, 0 0 0 8px #56636d, 0 22px 38px rgba(0,0,0,.38);
}

.tablet-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitor-shell {
  position: relative;
  width: 100%;
  margin: 0 auto 50px;
  padding: 16px 15px 38px;
  border: 3px solid #30363d;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 10%, transparent 90%, rgba(255,255,255,.08)), linear-gradient(180deg,#1b1b20,#07080c);
  box-shadow: inset 0 0 0 2px #0b0e12, 0 18px 42px rgba(0,0,0,.32);
}

.monitor-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  background: #090a0e;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.7), inset 0 0 26px rgba(0,0,0,.45);
}

.monitor-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monitor-brand {
  position: absolute;
  bottom: 13px;
  left: 50%;
  color: rgba(255,255,255,.76);
  font-size: 8px;
  font-weight: 700;
  text-transform: lowercase;
  transform: translateX(-50%);
}

.monitor-brand::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  vertical-align: -1px;
}

.monitor-controls { position: absolute; right: 13px; bottom: 14px; display: flex; gap: 6px; }
.monitor-controls i { width: 4px; height: 4px; border-radius: 1px; background: rgba(255,255,255,.55); }

.monitor-corner {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4a5568, #1a2230 44%, #05070a);
  box-shadow: 0 2px 5px rgba(0,0,0,.42);
}

.monitor-corner-tl { top: -7px; left: -7px; }
.monitor-corner-tr { top: -7px; right: -7px; }
.monitor-corner-bl { bottom: -7px; left: -7px; }
.monitor-corner-br { bottom: -7px; right: -7px; }

.monitor-hinge { position: absolute; z-index: 0; bottom: -4px; width: 18px; height: 9px; border: 1px solid rgba(0,0,0,.28); border-radius: 2px; background: linear-gradient(180deg,#e5e7eb,#7c8794); }
.monitor-hinge-left { left: calc(50% - 48px); }
.monitor-hinge-right { right: calc(50% - 48px); }

.monitor-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: 92px;
  height: 38px;
  border: 1px solid rgba(0,0,0,.24);
  border-top: 0;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 28%, transparent 72%, rgba(255,255,255,.08)), linear-gradient(180deg,#20242a,#0e1117);
  transform: translateX(-50%);
}

.monitor-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 282px;
  max-width: 76%;
  height: 17px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 24%, transparent 76%, rgba(255,255,255,.08)), linear-gradient(180deg,#20242a,#0c0f14);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transform: translateX(-50%);
}

.rugged-hero-image,
.screen-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.rugged-hero-image img,
.screen-card img {
  width: 100%;
}

.mobile-hero-phone {
  width: min(310px, 72%);
  margin: 0 auto;
}

.mobile-hero-phone .phone-shell {
  padding: 4px;
  border-radius: 32px;
}

.mobile-hero-phone .phone-screen {
  border-radius: 28px;
}

.mobile-detail-shot {
  width: min(320px, 100%);
  justify-self: center;
}

.mobile-detail-shot img {
  max-height: 660px;
  object-fit: cover;
  object-position: top;
}

.store-badges {
  align-items: center;
}

/*
 * Use optical rather than mathematical sizing: even after its transparent
 * source padding is removed, the Google artwork reads smaller than Apple's.
 * The Google badge is therefore about 10% larger in each responsive tier.
 */
.store-badge {
  display: inline-flex;
  width: 168px;
  height: 56px;
  align-items: center;
  border-radius: 7px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge-google {
  width: 185px;
  height: 62px;
}

a.store-badge:hover,
a.store-badge:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

a.store-badge:focus-visible {
  outline: 3px solid rgba(24, 201, 189, 0.32);
  outline-offset: 4px;
}

.store-badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.store-badge-coming-soon {
  box-sizing: border-box;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid #a6a6a6;
  background: #000;
  color: #fff;
  cursor: default;
}

.store-badge-coming-soon .coming-soon-apple {
  width: 29px;
  height: 36px;
  flex: 0 0 auto;
}

.coming-soon-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.coming-soon-copy small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.coming-soon-copy strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wheelhouse-store-badges + .secondary-action {
  display: inline-block;
  margin-top: 18px;
}

.secondary-action {
  align-self: center;
  color: #b8cbd3;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  min-height: 104px;
  padding: 24px clamp(20px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.content-section {
  padding: 104px max(22px, calc((100vw - var(--content)) / 2));
}

.content-section.alt {
  background: var(--paper-alt);
}

.content-section.dark {
  background: var(--navy);
}

.content-section.dark h2,
.content-section.dark h3 {
  color: var(--white);
}

.content-section.dark .section-intro p:last-child,
.content-section.dark p {
  color: #adc0c8;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-copy,
.info-card {
  padding: 26px;
}

.story-copy p,
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.split-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.phone-feature {
  text-align: center;
}

.phone-feature .phone-shell {
  width: min(230px, 100%);
  margin: 0 auto 26px;
}

.phone-feature p {
  color: var(--muted);
  font-size: 14px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.plan-card.featured {
  border-color: rgba(24, 201, 189, .45);
  background: linear-gradient(145deg, #fff, #eef9f7);
}

.plan-card ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sea-dark);
  font-weight: 700;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fact {
  padding: 26px;
  border-top: 2px solid var(--sea);
  background: rgba(255,255,255,.06);
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.fact span {
  color: #adc0c8;
  font-size: 14px;
  line-height: 1.5;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mosaic-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.mosaic-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mosaic-card div {
  padding: 24px;
}

.mosaic-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  padding: 94px max(22px, calc((100vw - 980px) / 2));
  text-align: center;
}

.closing p {
  max-width: 720px;
  margin-inline: auto;
  color: #b8cbd3;
  font-size: 18px;
}

.closing .actions {
  justify-content: center;
}

.site-footer {
  padding: 44px max(22px, calc((100vw - var(--content)) / 2));
  background: var(--navy-deep);
  color: #78909b;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.site-footer .brand span {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: #b8c7ce;
  font-size: 13px;
  text-decoration: none;
}

.legal {
  max-width: 980px;
  margin: 28px 0 0;
  font-size: 11px;
  line-height: 1.75;
}

@media (max-width: 1000px) {
  .nav-shell {
    gap: 16px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-store-links .button-small {
    padding-inline: 12px;
  }

  .hero-home,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero-home {
    padding-top: 70px;
  }

  .hero-home .hero-copy {
    max-width: 720px;
  }

  .home-devices {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .product-hero {
    gap: 50px;
  }

  .product-hero .hero-copy {
    max-width: 760px;
  }

  .product-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .story-grid,
  .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    height: 66px;
  }

  .nav-shell {
    width: calc(100% - 32px);
  }

  .desktop-nav,
  .nav-shell > .button,
  .nav-shell > .header-store-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  h1 {
    font-size: clamp(48px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-home,
  .product-hero {
    min-height: auto;
    padding: 58px 22px 70px;
  }

  .hero-home {
    gap: 30px;
  }

  .hero-home h1,
  .product-hero h1 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .hero-home .lead,
  .product-hero .lead {
    font-size: 17px;
  }

  .home-devices {
    min-height: 300px;
    margin-top: 8px;
  }

  .device-kicker {
    position: static;
    margin-bottom: 22px;
    text-align: right;
  }

  .device-link-desktop {
    right: 2%;
    top: 56px;
    width: 78%;
  }

  .device-link-wheelhouse {
    left: 2%;
    bottom: 8px;
    width: 51%;
  }

  .device-link-mobile {
    right: 3%;
    bottom: 2px;
    width: 17%;
  }

  .device-name {
    display: none;
  }

  .device-link .monitor-shell {
    padding: 8px 8px 22px;
  }

  .device-link .monitor-shell::before {
    bottom: -31px;
    height: 31px;
  }

  .device-link .tablet-art {
    border-radius: 10px;
    box-shadow: 0 0 0 3px #0b1118, 0 0 0 5px #56636d, 0 14px 24px rgba(0,0,0,.38);
  }

  .device-link .phone-shell {
    padding: 2px;
    border-radius: 14px;
  }

  .device-link .phone-screen {
    border-radius: 12px;
  }

  .mobile-hero-phone {
    width: min(250px, 68%);
  }

  .mobile-hero-phone .phone-shell {
    padding: 3px;
    border-radius: 30px;
  }

  .mobile-hero-phone .phone-screen {
    border-radius: 27px;
  }

  .content-section,
  .closing {
    padding: 72px 22px;
  }

  .proof-strip,
  .story-grid,
  .split-feature,
  .phone-gallery,
  .comparison,
  .product-facts,
  .feature-mosaic {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .split-feature {
    gap: 34px;
  }

  .phone-gallery {
    gap: 46px;
  }

  .phone-feature .phone-shell {
    width: min(210px, 66%);
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .store-badges {
    gap: 10px;
  }

  .store-badge {
    width: 150px;
    height: 50px;
  }

  .store-badge-google {
    width: 166px;
    height: 56px;
  }

  .store-badge-coming-soon {
    gap: 7px;
    padding: 4px 9px;
  }

  .store-badge-coming-soon .coming-soon-apple {
    width: 26px;
    height: 33px;
  }

  .coming-soon-copy small {
    font-size: 8px;
  }

  .coming-soon-copy strong {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .store-badges {
    gap: 8px;
  }

  .store-badge {
    width: 123px;
    height: 41px;
  }

  .store-badge-google {
    width: 136px;
    height: 45px;
  }

  .store-badge-coming-soon {
    gap: 5px;
    padding: 3px 7px;
  }

  .store-badge-coming-soon .coming-soon-apple {
    width: 21px;
    height: 27px;
  }

  .coming-soon-copy small {
    margin-bottom: 2px;
    font-size: 7px;
  }

  .coming-soon-copy strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Product identity: Mobile retains its wave; Wheelhouse and Desktop use the helm. */
.product-identity { display:flex; align-items:center; gap:16px; }
.product-identity img { width:64px; height:64px; border-radius:14px; flex-shrink:0; }
.product-identities { width:min(calc(100% - 44px),var(--content)); margin:0 auto 44px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.product-identity-card { display:flex; align-items:center; gap:18px; padding:22px; border:1px solid var(--line); border-radius:12px; text-decoration:none; color:var(--ink); background:rgba(255,255,255,.45); }
.product-identity-card img { width:64px; height:64px; border-radius:14px; flex-shrink:0; }
.product-identity-card strong,.product-identity-card small { display:block; }
.product-identity-card strong { font-size:18px; margin-bottom:6px; }
.product-identity-card small { font-size:15px; color:var(--text); }
.product-identity-card small a { text-underline-offset:4px; }
@media(max-width:600px) { .product-identities { grid-template-columns:1fr; } }
