:root {
  --navy-950: #061321;
  --navy-900: #091b2d;
  --navy-850: #0c2439;
  --navy-800: #13344d;
  --blue-700: #0f476f;
  --blue-500: #4b86ad;
  --gold-500: #d1a859;
  --gold-300: #f2dfb3;
  --cream: #f5f3ed;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #15263b;
  --muted: #667181;
  --line: rgba(15, 42, 65, 0.13);
  --success: #269158;
  --warning: #c88720;
  --shadow-sm: 0 12px 35px rgba(7, 27, 45, 0.08);
  --shadow-lg: 0 35px 90px rgba(4, 19, 34, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: inherit; }

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

button { color: inherit; }

::selection { background: var(--gold-300); color: var(--navy-950); }

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

.section { padding: 118px 0; }

.section-shell { position: relative; overflow: hidden; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.88);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 25, 43, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}

body:not(.inner-page) .site-header:not(.is-scrolled) .brand,
body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav a {
  color: rgba(255, 255, 255, .86);
}

body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav a {
  color: rgba(255, 255, 255, .62);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(5, 23, 43, 0.18);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.primary-nav a {
  position: relative;
  color: #33465a;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 680;
  line-height: 1.15;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 25, 44, 0.12);
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 25, 44, 0.18);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.light-link:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(209, 168, 89, .58);
  outline-offset: 4px;
}

.button small {
  display: block;
  margin-bottom: 1px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .74;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 12px;
  white-space: nowrap;
}

.button-primary {
  min-height: 60px;
  color: var(--white);
  background: var(--navy-900);
}

.button-light {
  min-height: 60px;
  color: var(--navy-950);
  background: var(--white);
}

.apple-mark {
  position: relative;
  top: -1px;
  font-size: 18px;
  line-height: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow-dark { color: var(--blue-700); }

.hero {
  min-height: 760px;
  padding: calc(var(--header-height) + 82px) 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 38%, rgba(38, 99, 139, .22), transparent 33%),
    linear-gradient(128deg, var(--navy-950) 0%, var(--navy-900) 58%, #0b2940 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -140px;
  left: -10%;
  height: 240px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  transform: translateY(72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: 7%;
  width: 430px;
  height: 430px;
  background: rgba(55, 129, 170, .13);
}

.hero-glow-two {
  bottom: 5%;
  left: 25%;
  width: 240px;
  height: 240px;
  background: rgba(209, 168, 89, .08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 60px;
}

.hero-copy { max-width: 650px; }

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 83px);
  font-weight: 680;
  letter-spacing: -.062em;
  line-height: .99;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .83);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateY(3px); }
.text-link-dark { color: var(--blue-700); }
.text-link-dark:hover span { transform: translateX(3px); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .53);
  font-size: 12px;
}

.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i { color: var(--gold-500); font-style: normal; }

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

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.orbit-one { width: 540px; height: 350px; }
.orbit-two { width: 670px; height: 430px; border-color: rgba(209, 168, 89, .11); }

.phone {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 46px;
  background: linear-gradient(145deg, #64819a 0%, #152e46 15%, #071727 74%, #748a9e 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.phone-hero {
  z-index: 3;
  width: 278px;
  height: 564px;
  transform: rotate(3.2deg);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: inherit;
  pointer-events: none;
}

.phone-buttons::before,
.phone-buttons::after {
  content: "";
  position: absolute;
  left: -4px;
  z-index: -1;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #19334a;
}

.phone-buttons::before { top: 112px; height: 65px; }
.phone-buttons::after { top: 188px; height: 45px; }

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

.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 80px;
  height: 23px;
  border-radius: 30px;
  background: #03090e;
  transform: translateX(-50%);
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px 0;
  color: var(--navy-900);
  font-size: 8px;
  font-weight: 700;
}

.app-greeting { padding: 31px 18px 13px; }
.app-greeting small { display: block; color: #6e7881; font-size: 10px; }
.app-greeting strong { display: block; margin-top: 2px; color: var(--navy-900); font-size: 22px; letter-spacing: -.03em; }

.balance-card {
  margin: 0 13px;
  padding: 20px;
  border-radius: 19px;
  color: var(--white);
  background: linear-gradient(145deg, #091b2d, #0d405c);
  box-shadow: 0 15px 30px rgba(7, 35, 55, .2);
}

.balance-card small { display: block; color: rgba(255, 255, 255, .63); font-size: 9px; }
.balance-card strong { display: block; margin: 5px 0 9px; font-size: 33px; letter-spacing: -.04em; }
.balance-card span { color: #e8d49f; font-size: 9px; }
.balance-card i { font-style: normal; }

.mini-heading {
  display: flex;
  justify-content: space-between;
  padding: 22px 17px 9px;
  color: var(--navy-900);
  font-size: 10px;
}

.mini-heading span { color: var(--blue-700); font-size: 8px; }

.entry-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 0 12px 7px;
  padding: 11px 9px;
  border: 1px solid rgba(10, 42, 66, .07);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(8, 31, 49, .04);
}

.entry-symbol {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: var(--gold-500);
  background: #f6eedc;
  font-size: 12px;
  place-items: center;
}

.entry-card strong, .entry-card small { display: block; }
.entry-card strong { color: var(--navy-900); font-size: 8px; }
.entry-card small { margin-top: 2px; color: #7c858d; font-size: 6px; }

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 99px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.entry-card .pill { padding: 4px 6px; font-size: 5px; }
.pill-gold { color: #845818; background: #f7ecd5; }
.pill-blue { color: #265976; background: #e6f0f5; }
.pill-green { color: #237046; background: #e4f3ea; }

.app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 14px 14px 17px;
  border-top: 1px solid rgba(9, 27, 45, .08);
  color: #8a9298;
  background: rgba(255, 255, 255, .92);
  font-size: 13px;
}

.app-tabs b { color: var(--navy-900); }

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  color: var(--white);
  background: rgba(10, 34, 54, .73);
  box-shadow: 0 15px 38px rgba(1, 13, 24, .26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.float-card-left { top: 115px; left: 2px; }
.float-card-right { right: -12px; bottom: 130px; }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: 10px; }
.float-card small { margin-top: 2px; color: rgba(255, 255, 255, .57); font-size: 8px; }
.float-icon { font-size: 15px; font-weight: 740; }
.gold { color: var(--gold-500); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 5px rgba(209, 168, 89, .12); }

.placeholder-note {
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .37);
  font-size: 9px;
  letter-spacing: .05em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trust-strip {
  position: relative;
  z-index: 4;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #7d8790;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-500); }

.problem-section { background: var(--paper); }

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(450px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.section-copy h2,
.section-heading h2,
.privacy-copy h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 660;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.section-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.memory-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.memory-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px 18px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.memory-count { color: #8b6d31; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.memory-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.memory-list li { display: flex; align-items: center; gap: 14px; padding: 13px 15px; border-radius: 12px; color: #5f6b78; background: #f7f7f4; font-size: 13px; }
.memory-list span { color: #b6a170; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.memory-resolved { display: flex; align-items: center; gap: 13px; margin-top: 12px; padding: 17px 16px; border-radius: 15px; color: var(--white); background: var(--navy-900); }
.memory-resolved i { display: grid; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; color: var(--navy-900); background: var(--gold-500); font-style: normal; place-items: center; }
.memory-resolved strong, .memory-resolved small { display: block; }
.memory-resolved strong { font-size: 12px; }
.memory-resolved small { margin-top: 2px; color: rgba(255, 255, 255, .58); font-size: 9px; }

.features-section { background: var(--cream); }

.section-heading { margin-bottom: 62px; }
.section-heading.centered { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:not(.eyebrow) { max-width: 620px; margin: 23px auto 0; color: var(--muted); font-size: 17px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  grid-column: span 2;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(8, 35, 55, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 10px 35px rgba(9, 31, 48, .04);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(8, 31, 49, .09); }
.feature-card-large { grid-column: span 3; min-height: 390px; }
.feature-number { color: #9d885d; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.feature-card h3 { margin: 25px 0 10px; color: var(--navy-900); font-size: 22px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.feature-visual {
  min-height: 155px;
  margin: 27px 0 10px;
  border: 1px solid rgba(12, 50, 76, .08);
  border-radius: 17px;
  background: #f5f6f4;
}

.track-visual { padding: 25px; }
.track-top { display: flex; align-items: end; justify-content: space-between; color: #73808b; font-size: 10px; }
.track-top strong { color: var(--navy-900); font-size: 25px; letter-spacing: -.04em; }
.track-bar { position: relative; height: 3px; margin: 32px 10px 12px; background: #dce2e3; }
.track-bar i { position: absolute; inset: 0 39% 0 0; background: var(--navy-800); }
.track-bar b, .track-bar em { position: absolute; top: 50%; width: 14px; height: 14px; border: 3px solid var(--white); border-radius: 50%; background: var(--gold-500); box-shadow: 0 1px 5px rgba(0, 0, 0, .14); transform: translate(-50%, -50%); }
.track-bar b { left: 0; background: var(--navy-800); }
.track-bar em { left: 61%; }
.track-labels { display: flex; justify-content: space-between; color: #89939a; font-size: 8px; }

.claim-visual { display: grid; grid-template-columns: 53px 1fr auto; align-items: center; gap: 18px; padding: 26px; }
.claim-date { display: grid; width: 53px; height: 62px; border-radius: 13px; color: var(--navy-900); background: var(--white); box-shadow: 0 7px 20px rgba(8, 31, 49, .08); place-items: center; align-content: center; }
.claim-date span { font-size: 22px; font-weight: 750; line-height: 1; }
.claim-date small { color: #9f7833; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.claim-visual strong, .claim-visual small { display: block; }
.claim-visual strong { color: var(--navy-900); font-size: 12px; }
.claim-visual small { max-width: 145px; margin-top: 5px; color: #78838c; font-size: 9px; }
.claim-visual > i { display: grid; width: 31px; height: 31px; border-radius: 50%; color: var(--white); background: var(--navy-900); font-style: normal; place-items: center; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }
.feature-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #657583; background: #f7f7f4; font-size: 9px; }
.status-stack { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.status-stack .pill { padding: 7px 10px; font-size: 8px; }
.template-lines { display: grid; gap: 8px; margin-top: 28px; }
.template-lines span { height: 12px; border: 1px solid rgba(10, 46, 70, .08); border-radius: 6px; background: linear-gradient(90deg, #dce4e7 28%, #f3f4f1 28%); }
.template-lines span:nth-child(2) { width: 83%; }
.template-lines span:nth-child(3) { width: 64%; }
.attachment-stack { position: relative; height: 57px; margin-top: 24px; }
.attachment-stack span { position: absolute; display: grid; width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 12px; color: #7b6a48; background: var(--white); box-shadow: 0 7px 15px rgba(8, 31, 49, .07); font-size: 9px; font-weight: 750; place-items: center; }
.attachment-stack span:nth-child(2) { left: 37px; transform: rotate(5deg); }
.attachment-stack span:nth-child(3) { left: 74px; transform: rotate(10deg); }

.how-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.how-glow {
  position: absolute;
  top: -300px;
  right: -230px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(209, 168, 89, .13);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(22, 81, 115, .13);
}

.section-heading-light h2 { color: var(--white); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 51px; right: 17%; left: 17%; height: 1px; background: linear-gradient(90deg, transparent, rgba(209, 168, 89, .5), transparent); }
.step-card { position: relative; min-height: 295px; padding: 29px; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-md); background: rgba(255, 255, 255, .045); }
.step-number { position: absolute; top: 26px; right: 26px; color: rgba(255, 255, 255, .32); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.step-icon { display: grid; width: 48px; height: 48px; border: 1px solid rgba(209, 168, 89, .35); border-radius: 14px; color: var(--gold-500); background: rgba(209, 168, 89, .08); font-size: 21px; place-items: center; }
.step-card h3 { margin: 58px 0 12px; font-size: 22px; letter-spacing: -.035em; }
.step-card p { margin: 0; color: rgba(255, 255, 255, .57); font-size: 14px; }

.preview-section { overflow: hidden; background: var(--paper); }
.phone-gallery { display: grid; grid-template-columns: repeat(4, 1fr); align-items: end; gap: 28px; margin-top: 75px; }
.preview-item { margin: 0; text-align: center; }
.preview-item:nth-child(odd) { transform: translateY(-27px); }
.phone-preview { width: 100%; max-width: 245px; height: 495px; margin: 0 auto; padding: 7px; border-radius: 40px; }
.phone-preview .phone-screen { border-radius: 33px; }
.placeholder-screen { padding: 57px 18px 20px; color: var(--navy-900); text-align: left; }
.placeholder-screen > small { display: block; color: #7d858d; font-size: 9px; }
.placeholder-screen > strong { display: block; margin-top: 3px; font-size: 21px; letter-spacing: -.035em; }
.screen-chip { display: block; width: fit-content; margin-bottom: 21px; padding: 5px 8px; border-radius: 99px; color: #775d29; background: #f3e7c9; font-size: 6px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.placeholder-balance { display: flex; flex-direction: column; margin-top: 18px; padding: 17px; border-radius: 15px; color: var(--white); background: linear-gradient(145deg, var(--navy-900), #12506b); }
.placeholder-balance span { font-size: 7px; opacity: .65; }
.placeholder-balance b { font-size: 25px; }
.placeholder-balance i { width: 55%; height: 5px; margin-top: 12px; border-radius: 3px; background: rgba(255, 255, 255, .22); }
.placeholder-row { display: grid; grid-template-columns: 31px 1fr 37px; align-items: center; gap: 9px; margin-top: 9px; padding: 11px 9px; border: 1px solid rgba(9, 37, 58, .07); border-radius: 11px; background: var(--white); }
.placeholder-row i { width: 29px; height: 29px; border-radius: 8px; background: #e5ecee; }
.placeholder-row span { height: 7px; border-radius: 4px; background: #d8dfe1; }
.placeholder-row b { height: 14px; border-radius: 7px; background: #f2e5c7; }
.form-line { width: 78%; height: 39px; margin-top: 11px; border: 1px solid rgba(9, 37, 58, .08); border-radius: 10px; background: var(--white); }
.form-line.wide { width: 100%; margin-top: 25px; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 11px; }
.form-pair i { height: 39px; border: 1px solid rgba(9, 37, 58, .08); border-radius: 10px; background: var(--white); }
.form-placeholder button { width: 100%; margin-top: 25px; padding: 11px; border: 0; border-radius: 10px; color: var(--white); background: var(--navy-900); font-size: 8px; }
.search-line { height: 30px; margin-top: 20px; border-radius: 9px; background: #e5e8e7; }
.detail-status { margin-top: 21px; padding: 20px; border-radius: 15px; color: var(--white); background: var(--navy-900); }
.detail-status span, .detail-status b { display: block; }
.detail-status span { font-size: 8px; opacity: .65; }
.detail-status b { margin-top: 3px; font-size: 22px; }
.timeline-line { position: relative; display: grid; grid-template-columns: 11px 1fr; align-items: center; gap: 10px; margin: 18px 7px; }
.timeline-line::before { content: ""; position: absolute; top: 12px; bottom: -21px; left: 5px; width: 1px; background: #d6dddf; }
.timeline-line:last-child::before { display: none; }
.timeline-line i { position: relative; z-index: 1; width: 11px; height: 11px; border: 3px solid #d1a859; border-radius: 50%; background: var(--white); }
.timeline-line span { width: 73%; height: 8px; border-radius: 5px; background: #dce2e3; }
.preview-item figcaption { display: grid; margin-top: 23px; }
.preview-item figcaption strong { color: var(--navy-900); font-size: 14px; }
.preview-item figcaption span { color: #7b858d; font-size: 11px; }

.privacy-section { padding-top: 10px; background: var(--paper); }
.privacy-panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; min-height: 500px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0a3049); box-shadow: var(--shadow-lg); }
.privacy-copy { position: relative; z-index: 2; padding: 70px 80px 70px 40px; }
.privacy-copy h2 { color: var(--white); }
.privacy-copy > p:not(.eyebrow) { max-width: 590px; margin: 23px 0 0; color: rgba(255, 255, 255, .67); font-size: 16px; }
.privacy-copy .privacy-caveat { padding-left: 14px; border-left: 1px solid rgba(209, 168, 89, .6); color: rgba(255, 255, 255, .44); font-size: 12px; }
.light-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: var(--gold-300); font-size: 13px; font-weight: 700; text-decoration: none; }
.light-link span { transition: transform .2s var(--ease); }
.light-link:hover span { transform: translateX(4px); }
.privacy-art { position: relative; display: grid; height: 100%; place-items: center; }
.privacy-orbit { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: inset 0 0 100px rgba(40, 112, 150, .1); }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; border: 1px solid rgba(209, 168, 89, .13); border-radius: 50%; }
.privacy-orbit::before { inset: 47px; }
.privacy-orbit::after { inset: 103px; }
.lock-shape { position: relative; z-index: 1; width: 135px; height: 112px; margin-top: 45px; border: 1px solid rgba(255, 255, 255, .27); border-radius: 27px; background: rgba(255, 255, 255, .06); box-shadow: 0 20px 50px rgba(0, 0, 0, .22); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lock-shape::before { content: ""; position: absolute; top: -73px; left: 30px; width: 71px; height: 75px; border: 10px solid rgba(255, 255, 255, .7); border-bottom: 0; border-radius: 42px 42px 0 0; }
.lock-shape span { position: absolute; top: 43px; left: 50%; width: 14px; height: 24px; border-radius: 8px; background: var(--gold-500); transform: translateX(-50%); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-grid .text-link { margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; color: var(--navy-900); font-size: 17px; font-weight: 650; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; right: 4px; width: 14px; height: 1px; background: var(--blue-700); transition: transform .22s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -5px 45px 24px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 112px 0; color: var(--white); background: var(--navy-950); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; }
.final-cta::before { top: -220px; left: -140px; width: 550px; height: 550px; }
.final-cta::after { right: -90px; bottom: -240px; width: 600px; height: 600px; border-color: rgba(209, 168, 89, .08); }
.cta-glow { position: absolute; top: 50%; left: 50%; width: 700px; height: 250px; border-radius: 50%; background: rgba(22, 94, 132, .17); filter: blur(65px); transform: translate(-50%, -50%); }
.final-cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta img { margin-bottom: 25px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0, 0, 0, .23); }
.final-cta .eyebrow { margin-bottom: 20px; }
.final-cta h2 { color: var(--white); font-size: clamp(50px, 6vw, 76px); }
.final-cta p:not(.eyebrow) { max-width: 540px; margin: 24px 0 33px; color: rgba(255, 255, 255, .57); }

.site-footer { padding: 58px 0 26px; border-top: 1px solid rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .56); background: #050f1a; }
.site-footer .brand { color: var(--white); }
.footer-main { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 45px; }
.footer-brand p { margin: 14px 0 0; font-size: 12px; }
.site-footer nav { display: flex; align-items: center; gap: 32px; }
.site-footer nav a { font-size: 12px; font-weight: 620; text-decoration: none; transition: color .2s ease; }
.site-footer nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 10px; }
.footer-bottom p { margin: 0; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: grid;
  max-width: 345px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  color: var(--white);
  background: rgba(6, 23, 38, .94);
  box-shadow: 0 20px 50px rgba(3, 15, 25, .22);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast strong { font-size: 13px; }
.toast span { color: rgba(255, 255, 255, .62); font-size: 11px; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.inner-page { background: var(--paper); }
.inner-page .site-header { background: rgba(251, 250, 247, .92); border-color: var(--line); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.page-main { padding-top: var(--header-height); }
.page-hero { position: relative; overflow: hidden; padding: 105px 0 85px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0d314a); }
.page-hero::after { content: ""; position: absolute; top: -190px; right: -100px; width: 520px; height: 520px; border: 1px solid rgba(209, 168, 89, .1); border-radius: 50%; box-shadow: inset 0 0 90px rgba(45, 116, 151, .08); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 800px; color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 690px; margin: 25px 0 0; color: rgba(255, 255, 255, .64); font-size: 18px; }
.page-breadcrumb { display: flex; gap: 9px; margin-top: 35px; color: rgba(255, 255, 255, .42); font-size: 11px; }
.page-breadcrumb a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.content-section { padding: 90px 0 110px; }
.support-layout { display: grid; grid-template-columns: .68fr 1.32fr; align-items: start; gap: 90px; }
.support-aside { position: sticky; top: 110px; }
.support-aside h2, .content-card h2, .legal-content h2 { margin: 0; color: var(--navy-900); font-size: 31px; letter-spacing: -.04em; line-height: 1.15; }
.support-aside p { margin: 17px 0 0; color: var(--muted); font-size: 14px; }
.contact-card { margin-top: 27px; padding: 25px; border-radius: 18px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-sm); }
.contact-card .contact-label { display: block; color: var(--gold-300); font-size: 8px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 12px; font-size: 16px; }
.contact-card p { margin: 7px 0 19px; color: rgba(255, 255, 255, .58); font-size: 11px; }
.contact-card a { display: inline-flex; padding: 10px 13px; border-radius: 9px; color: var(--navy-950); background: var(--white); font-size: 11px; font-weight: 700; text-decoration: none; }
.support-content .faq-list { margin-top: 5px; }
.support-note { margin-top: 35px; padding: 19px 21px; border: 1px solid #ead9ae; border-radius: 14px; color: #755d2f; background: #fbf5e8; font-size: 12px; }

.legal-wrap { display: grid; grid-template-columns: 245px minmax(0, 760px); align-items: start; justify-content: center; gap: 80px; }
.legal-nav { position: sticky; top: 110px; padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 8px 25px rgba(8, 31, 49, .04); }
.legal-nav strong { display: block; margin-bottom: 13px; color: var(--navy-900); font-size: 11px; }
.legal-nav a { display: block; padding: 6px 0; color: #687581; font-size: 11px; text-decoration: none; }
.legal-nav a:hover { color: var(--blue-700); }
.draft-notice { margin-bottom: 35px; padding: 22px 24px; border: 1px solid #dfbd76; border-radius: 16px; color: #5f4a22; background: #fcf5e5; }
.draft-notice strong { display: block; margin-bottom: 5px; color: #4c3918; font-size: 13px; }
.draft-notice p { margin: 0; font-size: 12px; }
.legal-meta { margin: 0 0 38px; color: #7d878f; font-size: 11px; }
.legal-content section { scroll-margin-top: 110px; }
.legal-content section + section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.legal-content h2 { font-size: 26px; }
.legal-content h3 { margin: 28px 0 9px; color: var(--navy-900); font-size: 17px; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #5f6c78; font-size: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--blue-700); }
.tbc { display: inline; padding: 2px 5px; border-radius: 5px; color: #7b5c1d; background: #f8e9c8; font-size: .86em; font-weight: 800; white-space: nowrap; }
.data-table-wrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 12px; }
.data-table th, .data-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: #5f6c78; text-align: left; vertical-align: top; }
.data-table th { color: var(--navy-900); background: #f5f6f3; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.placeholder-callout { margin-top: 24px; padding: 17px 19px; border-left: 3px solid var(--gold-500); color: #65717d; background: #f5f4ef; font-size: 12px; }
.inner-page .site-footer { margin-top: 0; }

.error-page { min-height: 100vh; display: grid; color: var(--white); background: var(--navy-950); place-items: center; }
.error-card { width: min(90%, 650px); text-align: center; }
.error-card img { width: 76px; border-radius: 20px; }
.error-card .error-code { display: block; margin: 24px 0 5px; color: var(--gold-500); font-size: 12px; font-weight: 800; letter-spacing: .17em; }
.error-card h1 { margin: 0; font-size: clamp(42px, 8vw, 75px); letter-spacing: -.055em; }
.error-card p { margin: 18px auto 30px; color: rgba(255, 255, 255, .6); }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: 25px; }
  .hero h1 { font-size: clamp(49px, 7vw, 72px); }
  .float-card-left { left: -30px; }
  .float-card-right { right: -20px; }
  .problem-grid { gap: 55px; }
  .phone-gallery { gap: 12px; }
  .privacy-copy { padding-right: 45px; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .menu-toggle { display: grid; width: 42px; height: 42px; margin-left: auto; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, .78); place-content: center; gap: 4px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1.5px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-5.5px) rotate(-45deg); }
  .primary-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; gap: 0; margin: 0; padding: 14px 18px 24px; border-bottom: 1px solid var(--line); background: rgba(251, 250, 247, .98); box-shadow: 0 20px 40px rgba(5, 24, 41, .1); opacity: 0; transform: translateY(-12px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(9, 27, 45, .07); font-size: 16px; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .hero { padding-top: calc(var(--header-height) + 68px); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 720px; margin: auto; }
  .hero .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-visual { min-height: 620px; }
  .problem-grid { grid-template-columns: 1fr; gap: 55px; }
  .section-copy { max-width: 680px; }
  .feature-card { grid-column: span 3; }
  .feature-card-large { grid-column: span 3; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 28px; }
  .phone-gallery { grid-template-columns: repeat(2, 1fr); row-gap: 75px; }
  .preview-item:nth-child(odd) { transform: none; }
  .privacy-panel { grid-template-columns: 1fr; }
  .privacy-art { min-height: 350px; }
  .privacy-copy { padding: 20px 55px 65px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .support-layout { grid-template-columns: 1fr; gap: 55px; }
  .support-aside { position: static; }
  .legal-wrap { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px 15px; }
  .legal-nav strong { width: 100%; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .brand { font-size: 17px; }
  .brand img { width: 39px; height: 39px; }
  .hero { min-height: auto; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: min(100%, 300px); }
  .trust-row { gap: 9px 17px; }
  .hero-visual { min-height: 530px; margin-top: 15px; }
  .phone-hero { width: 242px; height: 491px; }
  .phone { border-radius: 40px; }
  .phone-screen { border-radius: 33px; }
  .float-card { min-width: 175px; padding: 11px; }
  .float-card-left { top: 80px; left: -5px; }
  .float-card-right { right: -3px; bottom: 74px; }
  .float-card strong { font-size: 8px; }
  .orbit-one { width: 360px; height: 250px; }
  .orbit-two { width: 440px; height: 310px; }
  .placeholder-note { display: none; }
  .trust-strip-inner { flex-wrap: wrap; gap: 12px 19px; }
  .trust-strip i { display: none; }
  .section-copy h2, .section-heading h2, .privacy-copy h2, .page-hero h1 { font-size: clamp(37px, 11vw, 50px); }
  .section-heading { margin-bottom: 42px; }
  .memory-card { padding: 14px; border-radius: 24px; }
  .memory-list li { padding: 12px; font-size: 11px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large { grid-column: auto; min-height: 0; padding: 25px; }
  .feature-card-large { min-height: 360px; }
  .feature-card h3 { margin-top: 21px; }
  .claim-visual { grid-template-columns: 45px 1fr; padding: 20px; }
  .claim-visual > i { display: none; }
  .phone-gallery { grid-template-columns: 1fr; }
  .phone-preview { max-width: 258px; height: 520px; }
  .privacy-section { padding-top: 0; }
  .privacy-panel { width: calc(100% - 20px); min-height: auto; border-radius: 28px; }
  .privacy-art { min-height: 280px; }
  .privacy-orbit { width: 330px; height: 330px; }
  .privacy-copy { padding: 10px 28px 48px; }
  .privacy-copy > p:not(.eyebrow) { font-size: 14px; }
  .faq-list summary { font-size: 15px; }
  .final-cta { padding: 85px 0; }
  .final-cta h2 { font-size: clamp(43px, 12vw, 59px); }
  .footer-main { flex-direction: column; }
  .site-footer nav { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .toast { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .page-hero { padding: 78px 0 65px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .content-section { padding: 65px 0 85px; }
  .legal-content h2 { font-size: 23px; }
  .legal-nav { display: none; }
  .data-table th, .data-table td { min-width: 150px; padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .legal-nav, .toast { display: none; }
  .page-main { padding-top: 0; }
  .page-hero { padding: 35px 0; color: var(--ink); background: none; }
  .page-hero h1 { color: var(--ink); }
  .page-hero p:not(.eyebrow), .page-breadcrumb { color: var(--muted); }
  .content-section { padding: 40px 0; }
  .legal-wrap { display: block; }
  .legal-content { max-width: none; }
}
