:root {
  --teal: #018786;
  --teal-2: #02a7a5;
  --teal-soft: rgba(1, 135, 134, 0.18);
  --red: #810303;
  --red-soft: rgba(129, 3, 3, 0.22);
  --black: #000000;
  --white: #ffffff;
  --grey: #434343;
  --grey2: #212121;
  --bg: #151515;
  --panel: #2a2a2a;
  --panel-2: #343434;
  --text: #ffffff;
  --muted: rgba(255,255,255,.76);
  --soft: rgba(255,255,255,.56);
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 26px 90px rgba(0,0,0,.45);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(1,135,134,.18), transparent 28%),
    radial-gradient(circle at left 18%, rgba(129,3,3,.14), transparent 22%),
    linear-gradient(180deg, #151515 0%, #191919 46%, #141414 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(2, 167, 165, .86);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  transform: translateY(-150%);
  transition: transform .18s ease;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.narrow { max-width: 980px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(20, 20, 20, .84);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.92);
  background: #1d1d1d;
  color: var(--white);
  font-size: 1.18rem;
  letter-spacing: 0;
  font-weight: 950;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
  font-size: .94rem;
}

.nav-links a:hover,
.footer-links a:hover { color: #9cf5f3; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0b0b0b;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #4a4a4a;
  border-color: var(--line-strong);
}

.button.primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.button.dark { background: #000; }

.hero {
  position: relative;
  padding: clamp(58px, 7vw, 82px) 0 56px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 18%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(1,135,134,.18);
  box-shadow:
    0 0 0 42px rgba(1,135,134,.032),
    0 0 0 84px rgba(1,135,134,.022),
    0 0 0 126px rgba(1,135,134,.014);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: center;
  gap: clamp(30px, 5vw, 58px);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 950;
}

.eyebrow .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 18px 0 0 rgba(1,135,134,.48), 36px 0 0 rgba(1,135,134,.22);
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.85rem, 5.6vw, 5.15rem);
  letter-spacing: -.062em;
  max-width: 760px;
}

.hero .lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--teal);
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.trust-card span {
  color: var(--muted);
  font-size: .9rem;
}

/* HERO PHONE */

.hero-phone-wrap {
  position: relative;
  min-height: clamp(560px, 60vw, 670px);
  display: grid;
  place-items: center;
  padding: 18px;
  isolation: isolate;
}

.hero-phone-wrap::before {
  content: "";
  position: absolute;
  width: min(520px, 100%);
  height: min(520px, 100%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,135,134,.23), transparent 62%);
  filter: blur(10px);
  z-index: -2;
}

.phone-float {
  position: absolute;
  left: 0;
  bottom: 128px;
  width: 176px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(67,67,67,.94), rgba(33,33,33,.98));
  padding: 13px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  animation: bob 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.phone-float.right {
  inset: 42px 0 auto auto;
  animation-delay: -3s;
}

.phone-float strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 7px;
  line-height: 1.15;
}

.phone-float p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-stage {
  position: relative;
  z-index: 6;
  width: clamp(265px, 29vw, 315px);
  max-width: 100%;
  overflow: visible;
}

.phone {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 9 / 19.4;
  border: 8px solid #090909;
  border-radius: 38px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  z-index: 8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #161616;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(14px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  background: var(--grey2);
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #161616;
}

.phone-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px auto 0;
  width: 100%;
  color: var(--muted);
  font-size: .9rem;
  position: relative;
  z-index: 20;
  background: rgba(21, 21, 21, .74);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}

.phone-caption strong { color: #fff; }

.screen-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.screen-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.24);
  cursor: pointer;
  padding: 0;
}

.screen-dot.active {
  background: var(--teal);
  border-color: var(--teal);
}

.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap: 7px;
  width: 100%;
  margin: 14px auto 0;
  position: relative;
  z-index: 20;
}

.thumb {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
  cursor: pointer;
  opacity: .72;
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--teal);
}

.thumb img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  background: #161616;
}

/* SECTIONS */

.section {
  padding: 86px 0;
}

.section.alt {
  background: rgba(255,255,255,.022);
  border-block: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2.12rem, 4.6vw, 4.25rem);
  letter-spacing: -.055em;
}

.section-head p {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.account-grid,
.gallery-grid,
.safety-grid,
.legal-grid,
.about-grid {
  display: grid;
  gap: 18px;
}

.feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-grid { 
  grid-template-columns: repeat(3, minmax(0,1fr)); 
}
.account-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.safety-grid, .legal-grid, .about-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.panel {
  background: linear-gradient(180deg, rgba(67,67,67,.9), rgba(42,42,42,.99));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
}

.panel.highlight {
  background:
    radial-gradient(circle at top left, rgba(1,135,134,.16), transparent 34%),
    linear-gradient(180deg, rgba(67,67,67,.94), rgba(42,42,42,.99));
}

.panel.red {
  background:
    radial-gradient(circle at top right, rgba(129,3,3,.18), transparent 34%),
    linear-gradient(180deg, rgba(67,67,67,.94), rgba(42,42,42,.99));
}

.panel h3 {
  font-size: 1.34rem;
  margin-bottom: 10px;
}

.panel h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul,
.policy-card ul,
.policy-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.panel li + li,
.policy-card li + li {
  margin-top: 7px;
}

.panel a,
.policy-card a {
  color: #9cf5f3;
  font-weight: 850;
}

.icon-pill {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: #9bf0ef;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.tier {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tier.free {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--muted);
}

.tier.pro {
  background: rgba(129,3,3,.35);
  border: 1px solid rgba(129,3,3,.8);
  color: #ffc4c4;
}

.gallery-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(67,67,67,.9), rgba(42,42,42,.99));
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform .18s ease, border-color .18s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 9 / 18.1;
  object-fit: contain;
  background: var(--grey2);
}

.gallery-copy { padding: 16px; }

.gallery-copy strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-copy span {
  color: var(--muted);
  font-size: .93rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 950;
}

.download {
  text-align: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(1,135,134,.2), transparent 34%),
    linear-gradient(180deg, rgba(67,67,67,.95), rgba(42,42,42,.99));
  border-radius: 38px;
  padding: 58px 26px;
  box-shadow: var(--shadow);
}

.download h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -.06em;
  margin-bottom: 14px;
}

.download p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.07rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 950;
  transition: transform .18s ease, border-color .18s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.store-button small {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
}

.store-button strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, opacity .18s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.store-badge img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 620px) {
  .store-badge img {
    height: 52px;
  }
}

/* POLICY PAGES */

.policy-page {
  padding: 58px 0 78px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap: 24px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(42,42,42,.92);
  padding: 16px;
}

.policy-nav a {
  display: block;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
}

.policy-nav a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}

.policy-stack {
  display: grid;
  gap: 16px;
}

.policy-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(1,135,134,.18), transparent 34%),
    linear-gradient(180deg, rgba(67,67,67,.96), rgba(42,42,42,.99));
  box-shadow: var(--shadow);
}

.policy-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -.052em;
}

.policy-hero p {
  color: var(--muted);
  max-width: 820px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(67,67,67,.88), rgba(42,42,42,.99));
  padding: 22px;
}

.policy-card h2 {
  font-size: 1.42rem;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.policy-card h3 {
  font-size: 1.08rem;
  color: rgba(255,255,255,.86);
  margin: 18px 0 8px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card p {
  margin: 0 0 14px;
}

.meta {
  color: var(--soft);
  font-size: .95rem;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #141414;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .phone-float {
    display: none;
  }

  .hero-phone-wrap {
    min-height: unset;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .safety-grid,
  .legal-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero-phone-wrap {
    min-height: unset;
    padding-top: 20px;
  }

  .phone-stage {
    width: min(315px, 88vw);
  }

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

  .policy-nav {
    position: static;
  }
}

@media (max-width: 840px) {
  .nav-inner {
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 10px 0 4px;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.05);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .account-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .thumbnail-strip {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    padding-top: 46px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    width: min(300px, 92vw);
  }

  .phone {
    aspect-ratio: 9 / 19.4;
    border-width: 8px;
    border-radius: 38px;
  }

  .phone-caption {
    display: block;
    margin-top: 18px;
  }

  .screen-dots {
    justify-content: start;
    margin-top: 12px;
  }

  .download {
    padding: 44px 20px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .brand {
    font-size: .8rem;
    letter-spacing: .14em;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .panel,
  .download {
    border-radius: 28px;
  }

  .policy-hero,
  .policy-card {
    padding: 20px;
  }
}

/* UPDATED HERO - STATIC GRAPHIC VERSION */

.hero {
  position: relative;
  padding: clamp(58px, 7vw, 90px) 0 clamp(52px, 6vw, 78px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 16%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(1,135,134,.18);
  box-shadow:
    0 0 0 42px rgba(1,135,134,.032),
    0 0 0 84px rgba(1,135,134,.022),
    0 0 0 126px rgba(1,135,134,.014);
  z-index: -1;
}

.hero-download-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-graphic-wrap {
  position: relative;
  z-index: 4;
}

.hero-graphic-wrap::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 20%, rgba(1,135,134,.28), transparent 38%),
    radial-gradient(circle at 15% 90%, rgba(129,3,3,.18), transparent 42%);
  filter: blur(8px);
  z-index: -1;
}

.hero-graphic-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(67,67,67,.92), rgba(25,25,25,.98));
  box-shadow: var(--shadow);
}

.hero-graphic-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: contain;
  background: #111;
}

.hero-graphic-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(14px);
}

.hero-graphic-overlay strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.hero-graphic-overlay span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.25;
  margin-top: 3px;
}

.hero-graphic-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-mini-cards div {
  min-height: 94px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
}

.hero-mini-cards strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 4px;
}

.hero-mini-cards span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero-download-grid {
    grid-template-columns: 1fr;
  }

  .hero-graphic-wrap {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero-graphic-card {
    border-radius: 26px;
  }

  .hero-graphic-overlay {
    position: static;
    margin: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-graphic-overlay a {
    width: 100%;
  }

  .hero-mini-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 46px;
  }

  .hero-download-grid {
    gap: 28px;
  }
}

/* HERO LAYOUT - FULL WIDTH INTRO + LOWER SPLIT */

.hero-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  grid-template-areas:
    "copy copy"
    "trust graphic"
    "actions graphic";
  gap: 28px clamp(32px, 5vw, 64px);
  align-items: start;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 5;
  max-width: none;
}

.hero-copy h1 {
  max-width: 1050px;
}

.hero .lead {
  max-width: 950px;
}

.trust-row {
  grid-area: trust;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  align-self: start;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.hero-graphic-wrap {
  grid-area: graphic;
  position: relative;
  z-index: 4;
  margin-top: 0;
  align-self: start;
}

.hero-graphic-overlay {
  justify-content: center;
  text-align: center;
}

.hero-graphic-overlay a {
  display: none;
}

@media (max-width: 1080px) {
  .hero-download-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "graphic"
      "trust"
      "actions";
    gap: 28px;
  }

  .hero-graphic-wrap {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .trust-row {
    grid-template-columns: 1fr;
  }

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

/* HERO INTRO FULL WIDTH */

.hero-copy {
  width: 100%;
  max-width: none;
}

.hero-copy h1 {
  width: 100%;
  max-width: none;
}

.hero .lead {
  width: 100%;
  max-width: none;
}