:root {
  --navy: #162033;
  --navy-2: #24314a;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --teal: #2f7d73;
  --teal-dark: #226258;
  --blue: #4e7298;
  --amber: #d89435;
  --red: #a83f3d;
  --slate: #616b7d;
  --line: #ddd8ce;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(22, 32, 51, 0.12);
  --shadow-soft: 0 12px 36px rgba(22, 32, 51, 0.08);
  --radius: 22px;
  --radius-sm: 13px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 82% 4%, rgba(78, 114, 152, 0.12), transparent 31rem),
    radial-gradient(circle at 7% 52%, rgba(47, 125, 115, 0.09), transparent 28rem),
    var(--ivory);
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--navy);
}

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

button,
.button {
  touch-action: manipulation;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.62em;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p,
ul,
ol {
  margin: 0 0 1.15em;
}

ul,
ol {
  padding-left: 1.25em;
}

li + li {
  margin-top: 0.4em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.91);
  border-bottom: 1px solid rgba(22, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--navy);
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(47, 125, 115, 0.1);
  color: var(--teal-dark);
}

.site-nav .button,
.site-nav .button:hover {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
}

.announcement {
  color: var(--white);
  background: var(--navy);
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 9px;
  font-size: 0.88rem;
  text-align: center;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--amber);
  border-radius: 50%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--amber);
}

.hero h1 {
  max-width: 12ch;
}

.hero .lead,
.legal-hero .lead {
  max-width: 63ch;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(22, 32, 51, 0.15);
}

.button:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(22, 32, 51, 0.25);
  box-shadow: none;
}

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

.button.small {
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 11px;
  font-size: 0.91rem;
}

.button[aria-disabled="true"],
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero-note {
  margin-top: 18px;
  color: var(--slate);
  font-size: 0.88rem;
}

.visual-stage {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}

.visual-stage::before {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  content: "";
  background: linear-gradient(145deg, rgba(47, 125, 115, 0.18), rgba(78, 114, 152, 0.09));
  border-radius: 43% 57% 63% 37% / 46% 37% 63% 54%;
  transform: rotate(-8deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: 320px;
  padding: 12px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 43px;
  box-shadow: 0 35px 80px rgba(22, 32, 51, 0.25);
  transform: rotate(2.2deg);
}

.phone-screen {
  min-height: 610px;
  overflow: hidden;
  padding: 38px 17px 20px;
  background: var(--ivory);
  border-radius: 33px;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 92px;
  height: 24px;
  background: #111827;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 9px 2px 22px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.score-ring {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: conic-gradient(var(--teal) 0 79%, #dce6e2 79% 100%);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.score-ring::before {
  position: absolute;
}

.phone-card {
  margin: 12px 0;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(22, 32, 51, 0.06);
}

.phone-card.primary {
  color: var(--white);
  background: var(--navy);
  border: 0;
}

.phone-card p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.45;
}

.phone-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: var(--teal-dark);
  background: rgba(47, 125, 115, 0.1);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
}

.chip.amber {
  color: #704711;
  background: #f8e8d1;
}

.metric-float {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 14px 16px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(22, 32, 51, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.metric-float strong {
  display: block;
  font-size: 1.28rem;
}

.metric-float span {
  color: var(--slate);
  font-size: 0.76rem;
}

.metric-float.one {
  top: 95px;
  right: -20px;
}

.metric-float.two {
  bottom: 80px;
  left: -28px;
}

.section {
  padding: 88px 0;
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section.soft {
  background: rgba(255, 253, 249, 0.6);
  border-block: 1px solid rgba(22, 32, 51, 0.07);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--slate);
  font-size: 1.08rem;
}

.dark .section-heading p {
  color: #cbd3df;
}

.grid-3,
.grid-4,
.legal-card-grid {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.legal-card,
.info-card {
  padding: 25px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.feature-card .number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 13px;
  font-weight: 900;
}

.feature-card p,
.legal-card p,
.info-card p {
  color: var(--slate);
}

.feature-card p:last-child,
.legal-card p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.legal-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
}

.legal-card .icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: rgba(47, 125, 115, 0.11);
  border-radius: 14px;
  font-weight: 900;
}

.legal-card a {
  margin-top: auto;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.trust-item {
  padding: 27px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item span {
  color: #cbd3df;
  font-size: 0.9rem;
}

.legal-hero {
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(22, 32, 51, 0.08);
}

.legal-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 24px;
  color: var(--slate);
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  color: #704711;
  background: #f8e8d1;
  border-radius: 999px;
  font-weight: 850;
}

.status-pill.green {
  color: var(--teal-dark);
  background: #dcece7;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
  padding: 56px 0 92px;
}

.toc {
  position: sticky;
  top: 112px;
  padding: 20px;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.81rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 8px;
  color: var(--slate);
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--navy);
  background: rgba(47, 125, 115, 0.08);
}

.policy-content {
  min-width: 0;
}

.policy-content > section {
  padding: 0 0 35px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.policy-content > section:last-child {
  border-bottom: 0;
}

.policy-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.policy-content h3 {
  margin-top: 1.6em;
  letter-spacing: -0.02em;
}

.notice {
  padding: 18px 20px;
  margin: 22px 0;
  background: #f8e8d1;
  border-left: 4px solid var(--amber);
  border-radius: 0 14px 14px 0;
}

.notice.info {
  background: #e6edf4;
  border-color: var(--blue);
}

.notice.success {
  background: #dcece7;
  border-color: var(--teal);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.92rem;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--navy);
  background: #efece6;
}

tr:last-child td {
  border-bottom: 0;
}

.country-tool {
  padding: 28px;
  margin: 30px 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.country-tool label {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.country-tool select {
  width: 100%;
  min-height: 52px;
  padding: 10px 44px 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
}

.country-result {
  min-height: 190px;
  padding-top: 22px;
}

.country-result h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.country-result p {
  color: #dbe1ea;
}

.country-result a {
  color: #bfe0d8;
}

.country-result .status-pill {
  margin-bottom: 13px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.choice-card h3 {
  margin-top: 0;
}

.choice-card .choice-status {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.request-builder {
  padding: 25px;
  margin-top: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #c8c4bc;
  border-radius: 11px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-help {
  margin-top: 5px;
  color: var(--slate);
  font-size: 0.82rem;
}

.copy-result {
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 800;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submission-result {
  padding: 14px 16px;
  margin: 16px 0;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid #b8d8d1;
  border-radius: 12px;
  font-weight: 800;
}

details {
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
}

details + details {
  margin-top: 12px;
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
}

details > div {
  padding: 0 20px 19px;
  color: var(--slate);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #2d4264);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin: 0;
  color: #d5dce7;
}

.cta-panel .button {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 58px 0 30px;
  color: #d7dde7;
  background: #101827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand p {
  max-width: 32ch;
  color: #aeb8c8;
}

.footer-title {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: #c8d0dc;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 42px;
  color: #9da9ba;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.muted {
  color: var(--slate);
}

.kicker {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .policy-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .visual-stage {
    min-height: 670px;
  }

  .grid-4,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

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

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding: 56px 0 60px;
  }

  .hero-grid {
    gap: 42px;
  }

  .visual-stage {
    min-height: 610px;
  }

  .phone {
    width: 285px;
  }

  .phone-screen {
    min-height: 555px;
  }

  .metric-float {
    width: 160px;
  }

  .metric-float.one {
    top: 76px;
    right: 0;
  }

  .metric-float.two {
    bottom: 58px;
    left: 0;
  }

  .section {
    padding: 65px 0;
  }

  .grid-3,
  .grid-4,
  .legal-card-grid,
  .choice-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .toc {
    display: block;
  }

  .policy-layout {
    gap: 30px;
    padding-top: 36px;
  }

  .legal-hero {
    padding-top: 50px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand span {
    display: none;
  }

  .phone {
    width: 260px;
  }

  .metric-float {
    width: 145px;
    padding: 11px;
  }
}

@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;
  }
}

@media print {
  .site-header,
  .announcement,
  .toc,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .policy-layout {
    display: block;
    padding: 0;
  }

  a {
    color: #000;
  }
}

/* --------------------------------------------------------------------------
   RELAY Premium Experience — homepage v2
   -------------------------------------------------------------------------- */

:root {
  --premium-black: #08070d;
  --premium-black-2: #111019;
  --premium-white: #f7f7f8;
  --premium-silver: #a9a8b2;
  --premium-pink: #efa38f;
  --premium-pearl: #f6d9cc;
  --premium-blue: #7f9fe9;
  --premium-mint: #83bcb1;
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page {
  color: #17151c;
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

.home-page::before {
  display: none;
}

.home-page .announcement {
  display: none;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  background: rgba(8, 7, 13, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(150%) blur(22px);
  transition: background 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.home-page .site-header.is-scrolled {
  background: rgba(8, 7, 13, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.16);
}

.home-page .nav-wrap {
  min-height: 64px;
}

.home-page .brand,
.home-page .site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.home-page .brand {
  font-size: 0.98rem;
  letter-spacing: 0.17em;
}

.home-page .brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.home-page .site-nav a {
  padding: 8px 11px;
  font-size: 0.84rem;
  font-weight: 600;
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.home-page .site-nav .button,
.home-page .site-nav .button:hover {
  min-height: 36px;
  padding: 8px 15px;
  color: #111019;
  background: rgba(255, 255, 255, 0.94);
  border-color: transparent;
  border-radius: 999px;
  box-shadow: none;
}

.premium-hero {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: var(--premium-black);
  isolation: isolate;
}

.premium-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(239, 163, 143, 0.13), transparent 64%);
  mix-blend-mode: screen;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: heroBreath 13s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 5, 11, 0.98) 0%, rgba(6, 5, 11, 0.87) 35%, rgba(6, 5, 11, 0.3) 61%, rgba(6, 5, 11, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 5, 11, 0.82) 0%, transparent 35%, rgba(6, 5, 11, 0.18) 100%);
}

.hero-grain {
  position: absolute;
  inset: -50%;
  z-index: -2;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grainShift 0.32s steps(2) infinite;
}

.premium-hero-inner {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 112px;
  padding-bottom: 94px;
}

.premium-hero-copy {
  width: min(700px, 62vw);
}

.premium-eyebrow,
.premium-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.premium-eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--premium-pink), var(--premium-pearl));
}

.premium-hero h1 {
  max-width: 9.5ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.15vw, 8rem);
  font-weight: 650;
  line-height: 0.91;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.premium-hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, #fff 4%, #f6c7b7 50%, #cf93aa 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.premium-lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.premium-actions.centered {
  justify-content: center;
}

.premium-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: transform 420ms var(--premium-ease), background 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

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

.premium-button.light {
  color: #111019;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.premium-button.light:hover {
  color: #111019;
  background: #fff;
  box-shadow: 0 21px 52px rgba(0, 0, 0, 0.3);
}

.premium-button.glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.premium-button.glass:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.premium-button.dark {
  color: #fff;
  background: #101018;
  box-shadow: 0 15px 35px rgba(16, 16, 24, 0.17);
}

.premium-button.dark:hover {
  color: #fff;
  background: #262331;
}

.premium-button.outline-dark {
  color: #17151c;
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(23, 21, 28, 0.22);
}

.premium-button.outline-dark:hover {
  color: #17151c;
  background: #fff;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.77rem;
  font-weight: 560;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: #eeb193;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(238, 177, 147, 0.8);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(238, 177, 147, 0.45);
  border-radius: 50%;
  animation: statusPulse 2.1s ease-out infinite;
}

.hero-caption {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.caption-line {
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 80%;
  content: "";
  background: #fff;
  animation: scrollLine 2.2s ease-in-out infinite;
}

.section-index {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0;
}

.principle-section {
  padding: clamp(105px, 15vw, 210px) 0;
  background: #f5f5f7;
}

.principle-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 40px;
}

.principle-label {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 12px;
  padding-top: 13px;
  color: #77737d;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle-copy h2 {
  max-width: 1120px;
  margin-bottom: 42px;
  color: #14131a;
  font-size: clamp(3.35rem, 6.7vw, 7.6rem);
  font-weight: 630;
  line-height: 0.96;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.principle-copy h2 span {
  color: #aaa6ae;
}

.principle-copy p {
  max-width: 720px;
  margin-left: auto;
  color: #696570;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.experience-section {
  position: relative;
  padding: 130px 0 180px;
  overflow: clip;
  color: #f7f7f8;
  background:
    radial-gradient(circle at 78% 45%, rgba(92, 80, 137, 0.2), transparent 34rem),
    linear-gradient(180deg, #0d0c13, #07070b);
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
  align-items: start;
  gap: clamp(55px, 8vw, 130px);
}

.section-intro {
  margin-bottom: 70px;
}

.section-intro > .section-index,
.section-intro > .premium-kicker {
  margin-right: 10px;
  color: #b9b5c1;
}

.section-intro h2 {
  max-width: 680px;
  margin-top: 28px;
  font-size: clamp(3.05rem, 5.4vw, 6.5rem);
  font-weight: 625;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-intro p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.08rem;
}

.story-beat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  outline: none;
  transition: color 500ms ease, transform 600ms var(--premium-ease), border-color 500ms ease;
}

.story-beat:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-beat:hover,
.story-beat:focus-visible,
.story-beat.is-active {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(239, 163, 143, 0.5);
  transform: translateX(8px);
}

.story-number {
  padding-top: 4px;
  color: #efa38f;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.story-beat h3 {
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 2.15vw, 1.9rem);
  letter-spacing: -0.035em;
}

.story-beat p {
  max-width: 510px;
  margin: 0;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.55;
}

.experience-visual {
  position: sticky;
  top: 94px;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.device-halo {
  position: absolute;
  width: min(620px, 90%);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(239, 163, 143, 0.22), transparent 44%),
    radial-gradient(circle, rgba(122, 151, 224, 0.15), transparent 64%);
  border-radius: 50%;
  filter: blur(8px);
  animation: haloPulse 6s ease-in-out infinite alternate;
}

.device-shell {
  position: relative;
  z-index: 2;
  width: min(350px, 78vw);
  aspect-ratio: 620 / 1342;
  padding: 10px;
  background: linear-gradient(145deg, #363440, #08080b 42%, #27252f);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50px;
  box-shadow:
    0 70px 110px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform 900ms var(--premium-ease);
}

.experience-visual:hover .device-shell {
  transform: perspective(1100px) rotateY(0) rotateX(0) translateY(-6px);
}

.device-island {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 5;
  width: 30%;
  height: 24px;
  background: #08080a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.device-screen-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f1eb;
  border-radius: 41px;
}

.product-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035) translateY(14px);
  transition: opacity 700ms ease, transform 900ms var(--premium-ease);
}

.product-screen.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.floating-proof {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(35, 32, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: floatProof 5s ease-in-out infinite alternate;
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  font-size: 0.88rem;
}

.floating-proof span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.proof-a {
  top: 18%;
  right: 0;
}

.proof-b {
  bottom: 17%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -1.6s;
}

.proof-check {
  width: 28px;
  height: 28px;
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  color: #0e1112 !important;
  background: #a6d1c6;
  border-radius: 50%;
  font-size: 0.72rem !important;
}

.continuity-section {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  color: #fff;
  background:
    radial-gradient(900px circle at var(--mouse-x) var(--mouse-y), rgba(110, 137, 214, 0.16), transparent 60%),
    linear-gradient(135deg, #131721 0%, #0a0c12 54%, #151019 100%);
}

.continuity-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  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: 56px 56px;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.continuity-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.section-intro.light {
  margin-bottom: 55px;
}

.section-intro.light h2 {
  max-width: 710px;
}

.metric-list {
  display: grid;
  gap: 20px;
  max-width: 680px;
}

.metric-row {
  display: grid;
  grid-template-columns: 145px minmax(120px, 1fr) 38px;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.metric-row i {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.metric-row b {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #849fe8, #d6aac4);
  border-radius: inherit;
  transition: width 1.4s var(--premium-ease);
}

.metric-list.is-visible .metric-row b {
  width: calc(var(--progress) * 1%);
}

.metric-row strong {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.score-visual {
  position: relative;
  width: min(500px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.score-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-one {
  inset: 1%;
  border-color: rgba(133, 160, 229, 0.24);
  border-top-color: rgba(244, 174, 154, 0.8);
  animation: orbitSpin 14s linear infinite;
}

.orbit-two {
  inset: 10%;
  border-bottom-color: rgba(128, 194, 179, 0.72);
  transform: rotate(32deg);
  animation: orbitSpin 19s linear infinite reverse;
}

.score-core {
  position: relative;
  width: 68%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background:
    radial-gradient(circle at 35% 27%, rgba(255, 255, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(36, 43, 61, 0.9), rgba(12, 14, 21, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(112, 137, 211, 0.13), 0 50px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.score-core span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.score-core strong {
  margin: 8px 0 9px;
  font-size: clamp(5.5rem, 9vw, 8.3rem);
  font-weight: 590;
  line-height: 0.86;
  letter-spacing: -0.07em;
  font-variant-numeric: tabular-nums;
}

.score-core small {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.35;
}

.intelligence-section {
  padding: 150px 0;
  background: #f5f5f7;
}

.intelligence-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 75px;
}

.intelligence-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 11px;
  color: #77737d;
}

.intelligence-head h2 {
  margin: 0;
  font-size: clamp(3.25rem, 6vw, 7rem);
  font-weight: 630;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.intelligence-head h2 span {
  color: #a7a3ac;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.intelligence-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 17, 24, 0.07);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(25, 23, 31, 0.07);
}

.intelligence-card h3 {
  max-width: 540px;
  margin: 16px 0 13px;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 640;
  letter-spacing: -0.052em;
}

.intelligence-card p {
  max-width: 570px;
  color: #706c76;
  font-size: 1rem;
}

.intelligence-main {
  grid-row: 1 / span 2;
  min-height: 690px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 170, 151, 0.28), transparent 19rem),
    linear-gradient(155deg, #23202a, #0e0d13 64%);
}

.intelligence-main p {
  color: rgba(255, 255, 255, 0.58);
}

.card-label {
  color: #9a7584;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intelligence-main .card-label {
  color: #efaa95;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #5b5260;
  background: #f0e8e8;
  border-radius: 15px;
  font-size: 1.15rem;
}

.briefing-preview {
  position: absolute;
  right: clamp(25px, 4vw, 52px);
  bottom: clamp(25px, 4vw, 52px);
  left: clamp(25px, 4vw, 52px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.briefing-preview > * {
  display: block;
}

.briefing-risk {
  margin-bottom: 18px;
  color: #f0a68f;
  font-size: 0.67rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.briefing-preview strong {
  margin-bottom: 5px;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.briefing-preview small {
  color: rgba(255, 255, 255, 0.48);
}

.briefing-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 680;
}

.briefing-action b {
  font-size: 1.25rem;
}

.sentiment-card {
  background: linear-gradient(145deg, #fff, #f4eceb);
}

.boundary-card {
  background: linear-gradient(145deg, #f5f8f7, #e9f0ee);
}

.boundary-card .card-icon {
  color: #3f746b;
  background: #d8e8e4;
}

.premium-trust {
  padding: 155px 0;
  color: #fff;
  background: #07080b;
}

.trust-heading {
  max-width: 1000px;
  margin-bottom: 80px;
}

.trust-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: #a9a8b2;
}

.trust-heading h2 {
  margin-bottom: 32px;
  font-size: clamp(3.1rem, 6.2vw, 7.1rem);
  font-weight: 620;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

.trust-heading h2 span {
  color: #6e6d76;
}

.trust-heading > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
}

.trust-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-tile {
  min-height: 290px;
  padding: clamp(28px, 3.5vw, 44px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transition: transform 650ms var(--premium-ease), border-color 500ms ease, background 500ms ease;
}

.trust-tile:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  border-color: rgba(239, 163, 143, 0.28);
  transform: translateY(-6px);
}

.trust-tile-wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.trust-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #f2b29c;
  background: rgba(239, 163, 143, 0.1);
  border: 1px solid rgba(239, 163, 143, 0.2);
  border-radius: 17px;
  font-size: 1.3rem;
}

.trust-tile h3 {
  margin: 22px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: -0.045em;
}

.trust-tile-wide h3 {
  margin-top: 0;
}

.trust-tile p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.94rem;
}

.trust-tile a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #f1c1b1;
  font-weight: 680;
  text-decoration: none;
}

.premium-final {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 130px 0;
  background: linear-gradient(180deg, #f4f1f2, #f7f7f8);
}

.final-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 850px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(237, 167, 143, 0.3), rgba(178, 145, 193, 0.12) 42%, transparent 70%);
  filter: blur(18px);
  transform: translateX(-50%);
}

.final-inner {
  position: relative;
  text-align: center;
}

.final-inner .premium-kicker {
  color: #77717c;
}

.final-inner h2 {
  max-width: 1000px;
  margin: 28px auto;
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 625;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.final-inner h2 span {
  color: #a19da5;
}

.final-inner p {
  max-width: 650px;
  margin-inline: auto;
  color: #74707a;
  font-size: 1.08rem;
}

.js .home-page [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--premium-ease), transform 1100ms var(--premium-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 115ms);
}

.js .home-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreath {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.7%, -0.3%, 0); }
}

@keyframes grainShift {
  0% { transform: translate3d(-2%, -3%, 0); }
  25% { transform: translate3d(3%, -1%, 0); }
  50% { transform: translate3d(-1%, 3%, 0); }
  75% { transform: translate3d(2%, 1%, 0); }
  100% { transform: translate3d(-3%, -2%, 0); }
}

@keyframes statusPulse {
  from { opacity: 0.8; transform: scale(0.75); }
  to { opacity: 0; transform: scale(1.5); }
}

@keyframes scrollLine {
  0% { top: -100%; }
  65%, 100% { top: 120%; }
}

@keyframes haloPulse {
  from { opacity: 0.72; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.05); }
}

@keyframes floatProof {
  from { transform: translate3d(0, -5px, 0); }
  to { transform: translate3d(0, 8px, 0); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .premium-hero-copy {
    width: min(680px, 70vw);
  }

  .experience-shell,
  .continuity-grid {
    gap: 60px;
  }

  .proof-a {
    right: -10px;
  }

  .proof-b {
    left: -10px;
  }
}

@media (max-width: 900px) {
  .premium-hero-copy {
    width: min(650px, 86vw);
  }

  .hero-art img {
    object-position: 59% center;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(6, 5, 11, 0.97) 0%, rgba(6, 5, 11, 0.8) 50%, rgba(6, 5, 11, 0.25) 100%),
      linear-gradient(0deg, rgba(6, 5, 11, 0.86), transparent 45%);
  }

  .hero-caption {
    display: none;
  }

  .principle-grid,
  .intelligence-head {
    grid-template-columns: 1fr;
  }

  .principle-copy p {
    margin-left: 0;
  }

  .experience-shell,
  .continuity-grid {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    position: relative;
    top: auto;
    min-height: 720px;
    margin-top: 30px;
  }

  .continuity-copy {
    order: 2;
  }

  .score-visual {
    order: 1;
  }

  .intelligence-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .intelligence-main {
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .home-page .site-header {
    background: rgba(8, 7, 13, 0.76);
  }

  .home-page .menu-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .home-page .site-nav {
    top: 64px;
    color: #fff;
    background: rgba(17, 16, 25, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
  }

  .premium-hero-inner {
    align-items: flex-end;
    padding-top: 105px;
    padding-bottom: 108px;
  }

  .premium-hero-copy {
    width: 100%;
  }

  .premium-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 16.5vw, 5.8rem);
  }

  .hero-art img {
    object-position: 69% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(6, 5, 11, 0.98) 2%, rgba(6, 5, 11, 0.84) 46%, rgba(6, 5, 11, 0.24) 100%),
      linear-gradient(90deg, rgba(6, 5, 11, 0.68), transparent 90%);
  }

  .premium-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-button {
    width: 100%;
  }

  .hero-status {
    align-items: flex-start;
  }

  .scroll-cue {
    display: none;
  }

  .principle-section,
  .experience-section,
  .continuity-section,
  .intelligence-section,
  .premium-trust,
  .premium-final {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .principle-copy h2,
  .section-intro h2,
  .intelligence-head h2,
  .trust-heading h2,
  .final-inner h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .story-beat {
    grid-template-columns: 36px 1fr;
  }

  .experience-visual {
    min-height: 650px;
  }

  .floating-proof {
    min-width: 132px;
    padding: 12px 13px;
  }

  .proof-a {
    top: 13%;
    right: 0;
  }

  .proof-b {
    bottom: 13%;
    left: 0;
  }

  .metric-row {
    grid-template-columns: 104px minmax(90px, 1fr) 30px;
    gap: 10px;
    font-size: 0.72rem;
  }

  .intelligence-main {
    min-height: 650px;
  }

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

  .trust-tile-wide {
    grid-column: auto;
  }

  .trust-tile {
    min-height: auto;
  }

  .premium-final {
    min-height: 660px;
  }
}

@media (max-width: 430px) {
  .premium-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.4rem);
  }

  .premium-lead {
    font-size: 1rem;
  }

  .device-shell {
    width: min(310px, 82vw);
    border-radius: 45px;
  }

  .device-screen-stack {
    border-radius: 36px;
  }

  .experience-visual {
    min-height: 595px;
  }

  .floating-proof {
    transform: scale(0.9);
  }

  .trust-tile-wide {
    display: block;
  }

  .trust-tile-wide .trust-symbol {
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art img,
  .hero-grain,
  .live-dot::after,
  .scroll-cue i::after,
  .device-halo,
  .floating-proof,
  .score-orbit {
    animation: none !important;
  }

  .product-screen {
    transition: none;
  }
}

@media print {
  .premium-hero,
  .experience-section,
  .continuity-section,
  .premium-trust,
  .premium-final {
    color: #000;
    background: #fff;
  }

  .scroll-cue,
  .floating-proof,
  .hero-grain,
  .device-halo,
  .final-glow {
    display: none !important;
  }
}
