:root {
  color-scheme: light;
  --navy-950: #031523;
  --navy-900: #061d30;
  --navy-800: #0a2942;
  --navy-700: #103a5a;
  --blue: #118fcb;
  --gold: #d6a73f;
  --gold-light: #f4d98f;
  --cream: #f5eddd;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --ink: #15222c;
  --muted: #657078;
  --line: rgba(9, 41, 66, 0.15);
  --shadow: 0 28px 70px rgba(2, 18, 30, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 21, 35, 0.82);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; }
.brand img { width: 138px; filter: brightness(0) invert(1); }
.brand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 36px); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links a { opacity: 0.8; transition: opacity 180ms ease, color 180ms ease; }
.nav-links a:hover { color: var(--gold-light); opacity: 1; }
.header-action { justify-self: end; padding: 11px 18px; color: var(--navy-950); font-size: 0.84rem; font-weight: 700; border-radius: 999px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 8px 26px rgba(214, 167, 63, 0.2); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: inherit; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

.vault-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  overflow: hidden;
  padding: 130px clamp(24px, 6vw, 100px) 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(17, 143, 203, 0.16), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(214, 167, 63, 0.1), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #092945);
}
.vault-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.overline { margin: 0 0 20px; color: var(--gold-light); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }
.overline span { color: rgba(255,255,255,.58); }
.overline-dark { color: #9b7117; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }
h1 { max-width: 700px; margin-bottom: 26px; font-size: clamp(3.3rem, 6vw, 6.8rem); line-height: 0.96; letter-spacing: -0.055em; }
h1 em { display: block; color: var(--gold-light); font-weight: 600; }
.hero-lead { max-width: 650px; margin-bottom: 25px; color: rgba(255,255,255,.78); font-size: clamp(1.03rem, 1.4vw, 1.22rem); line-height: 1.75; }
.hero-lead strong { color: var(--white); }
.hero-promise { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-promise span { padding: 7px 12px; color: var(--gold-light); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(244,217,143,.3); border-radius: 999px; background: rgba(255,255,255,.04); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 14px 22px; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.055em; text-transform: uppercase; border-radius: 3px; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 16px 34px rgba(214, 167, 63, 0.22); }
.button-gold:hover { box-shadow: 0 20px 44px rgba(214, 167, 63, 0.32); }
.button-quiet { min-height: auto; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.45); border-radius: 0; }
.button-navy { color: var(--white); background: var(--navy-900); box-shadow: 0 14px 32px rgba(3,21,35,.18); }
.button-large { min-height: 58px; padding-inline: 32px; }
.hero-note { margin: 24px 0 0; color: rgba(255,255,255,.43); font-size: 0.74rem; line-height: 1.5; }
.hero-art { position: relative; z-index: 2; padding: 14px; }
.art-frame { position: relative; padding: 10px; border: 1px solid rgba(244,217,143,.4); border-radius: 36px; background: rgba(255,255,255,.04); box-shadow: 0 42px 100px rgba(0,0,0,.32); transform: rotate(1.5deg); }
.art-frame::before { content: ""; position: absolute; z-index: -1; inset: 12% -7% -9% 14%; border: 1px solid rgba(17,143,203,.26); border-radius: 40px; transform: rotate(-5deg); }
.art-frame img { width: 100%; height: auto; }
.value-stamp { position: absolute; right: -3%; bottom: -8%; width: 146px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; color: var(--navy-950); border: 2px solid var(--navy-950); border-radius: 50%; background: var(--gold-light); box-shadow: 0 18px 44px rgba(0,0,0,.3); transform: rotate(-9deg); }
.value-stamp::before { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(3,21,35,.55); border-radius: inherit; }
.value-stamp span, .value-stamp small { font-size: 0.62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.value-stamp strong { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.hero-orbit-one { width: 680px; height: 680px; right: -230px; top: -250px; }
.hero-orbit-two { width: 420px; height: 420px; left: -260px; bottom: -210px; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 22px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; animation: bob 1.8s ease-in-out infinite; }

.explainer-section { position: relative; overflow: hidden; padding: clamp(86px, 10vw, 140px) 0; background: var(--cream); }
.explainer-section::before { content: ""; position: absolute; top: -170px; right: -140px; width: 430px; height: 430px; border: 1px solid rgba(16,58,90,.12); border-radius: 50%; box-shadow: 0 0 0 50px rgba(16,58,90,.025), 0 0 0 100px rgba(16,58,90,.02); }
.explainer-shell { position: relative; display: grid; grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 7vw, 105px); }
.explainer-copy h2 { max-width: 440px; margin-bottom: 24px; color: var(--navy-900); font-size: clamp(2.7rem, 4.4vw, 5.1rem); line-height: 1.02; letter-spacing: -.045em; }
.explainer-copy > p:not(.overline) { max-width: 430px; margin-bottom: 30px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.text-link svg { width: 18px; fill: none; stroke: var(--gold); stroke-width: 2; transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(4px); }
.explainer-video { position: relative; aspect-ratio: 16 / 9; padding: 8px; background: var(--white); border: 1px solid rgba(9,41,66,.13); border-radius: 24px; box-shadow: 24px 28px 0 rgba(3,21,35,.09), var(--shadow); }
.explainer-video::after { content: "EXPLAINED"; position: absolute; right: -22px; bottom: -34px; padding: 9px 14px; color: var(--gold-light); font-size: .66rem; font-weight: 700; letter-spacing: .2em; background: var(--navy-900); border-radius: 999px; transform: rotate(-3deg); }
.explainer-video iframe { display: block; width: 100%; height: 100%; border: 0; border-radius: 17px; }

.section-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.intro-statement, .use-section, .promise-section, .faq-section { padding-block: clamp(90px, 11vw, 155px); }
.section-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 55px; color: #907129; }
.section-kicker::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.section-kicker span { display: grid; place-items: center; width: 38px; height: 38px; font-size: .72rem; font-weight: 700; border: 1px solid rgba(144,113,41,.45); border-radius: 50%; }
.section-kicker p { margin: 0; font-size: .73rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 140px); }
.intro-grid h2, .tier-heading h2, .use-heading h2, .promise-heading h2, .faq-intro h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 1.03; letter-spacing: -.045em; }
.intro-copy { padding-top: 12px; }
.intro-copy > p { color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.intro-copy .example-callout { margin: 28px 0; padding: 28px 0 28px 28px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.1rem); line-height: 1.4; border-left: 3px solid var(--gold); }
.example-callout strong { color: #987019; }

.tier-section { padding-block: clamp(85px, 10vw, 140px); background: var(--cream); border-block: 1px solid rgba(144,113,41,.18); }
.tier-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 60px; }
.tier-heading h2 { max-width: 760px; }
.tier-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tier-card { position: relative; overflow: hidden; padding: 12px; border: 1px solid rgba(3,21,35,.12); border-radius: 24px; background: rgba(255,255,255,.58); box-shadow: 0 12px 38px rgba(59,42,8,.06); transition: transform 220ms ease, box-shadow 220ms ease; }
.tier-card:hover { transform: translateY(-7px) rotate(-.4deg); box-shadow: var(--shadow); }
.tier-card-raised { transform: translateY(24px); }
.tier-card-raised:hover { transform: translateY(17px) rotate(.4deg); }
.tier-card-featured { border-color: rgba(182,130,20,.58); background: #fffaf0; }
.tier-card img { width: 100%; height: auto; object-fit: contain; }
.featured-label { position: absolute; z-index: 2; top: 25px; right: 25px; padding: 8px 11px; color: var(--navy-950); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; background: var(--gold-light); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.tier-card-copy { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 12px; border: 1px solid var(--line); border-radius: 14px; }
.tier-card-copy div { padding: 17px; }
.tier-card-copy div + div { border-left: 1px solid var(--line); }
.tier-card-copy span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tier-card-copy strong { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); }
.tier-card-copy .tier-bonus strong { color: #9a7116; }
.tier-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 65px; padding: 30px 34px; color: var(--ink); border: 1px solid rgba(3,21,35,.14); background: rgba(255,255,255,.45); }
.tier-cta p { max-width: 670px; margin: 0; line-height: 1.65; }

.why-section { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); min-height: 760px; color: var(--white); background: var(--navy-900); }
.why-visual { position: relative; display: grid; align-content: center; justify-items: center; overflow: hidden; padding: 60px; background: linear-gradient(145deg, #a97919, var(--gold) 48%, var(--gold-light)); }
.compass-lines { position: absolute; width: 620px; aspect-ratio: 1; border: 1px solid rgba(3,21,35,.25); border-radius: 50%; }
.compass-lines::before, .compass-lines::after { content: ""; position: absolute; inset: 12%; border: inherit; border-radius: inherit; }
.compass-lines::after { inset: 30%; }
.why-visual::before, .why-visual::after { content: ""; position: absolute; width: 1px; height: 100%; background: rgba(3,21,35,.18); transform: rotate(45deg); }
.why-visual::after { transform: rotate(-45deg); }
.why-number { position: relative; z-index: 2; color: var(--navy-950); font-family: var(--serif); font-size: clamp(7rem, 13vw, 12rem); font-weight: 700; line-height: .8; letter-spacing: -.08em; }
.why-visual p { position: relative; z-index: 2; margin: 30px 0 0; color: var(--navy-950); text-align: center; font-size: .78rem; font-weight: 800; letter-spacing: .2em; line-height: 1.6; text-transform: uppercase; }
.why-copy { display: grid; align-content: center; padding: clamp(70px, 9vw, 145px); }
.why-copy h2 { max-width: 780px; margin-bottom: 34px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -.045em; }
.why-copy > p:not(.overline):not(.why-close) { max-width: 700px; color: rgba(255,255,255,.68); font-size: 1.02rem; line-height: 1.82; }
.why-copy blockquote { max-width: 760px; margin: 30px 0 22px; padding-left: 24px; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.25rem); line-height: 1.35; border-left: 2px solid var(--gold); }
.why-close { font-weight: 700; }

.use-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 145px); }
.use-heading { position: sticky; top: 120px; align-self: start; }
.use-heading h2 { margin-bottom: 28px; }
.use-heading p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.experience-list article { display: grid; grid-template-columns: 42px .8fr 1.2fr; gap: 22px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--line); }
.experience-list article:last-child { border-bottom: 1px solid var(--line); }
.experience-list span { color: #a57b23; font-size: .7rem; font-weight: 700; }
.experience-list h3 { margin: 0; font-size: 1.45rem; }
.experience-list p { margin: 0; color: var(--muted); line-height: 1.65; }
.eligibility-note { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: center; margin-top: 70px; padding: 28px 32px; color: rgba(255,255,255,.75); background: var(--navy-800); }
.eligibility-note svg { width: 40px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; }
.eligibility-note p { margin: 0; line-height: 1.65; }
.eligibility-note strong { color: var(--white); }

.rule-section { padding-block: clamp(85px, 10vw, 140px); background: #e9dfca; }
.rule-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.rule-copy h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.5vw, 4.7rem); line-height: 1.05; letter-spacing: -.045em; }
.rule-copy > p { color: #5e625f; line-height: 1.75; }
.rule-copy .rule-reassurance { margin-top: 28px; padding: 22px; color: var(--navy-900); border-left: 3px solid var(--gold); background: rgba(255,255,255,.35); }
.rule-table-wrap { padding: 12px; border: 1px solid rgba(3,21,35,.15); background: rgba(255,255,255,.42); box-shadow: 18px 18px 0 rgba(3,21,35,.08); }
table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.62); }
caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
th:last-child, td:last-child { text-align: right; }
td { font-family: var(--serif); font-size: 1.2rem; }
td strong { color: #956b15; }

.promise-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.promise-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.promise-grid article { min-height: 270px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid article:nth-child(3n) { border-right: 0; }
.promise-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.promise-grid strong { color: #a47b28; font-size: .68rem; letter-spacing: .08em; }
.promise-grid h3 { margin: 55px 0 13px; font-size: 1.55rem; }
.promise-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.gift-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 750px; background: var(--navy-950); }
.gift-copy { display: grid; align-content: center; padding: clamp(70px, 8vw, 130px); color: var(--white); }
.gift-copy h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 4.8vw, 5rem); line-height: 1.04; letter-spacing: -.045em; }
.gift-copy > p:not(.overline) { max-width: 650px; color: rgba(255,255,255,.65); line-height: 1.8; }
.gift-example { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 12px 18px; align-items: baseline; max-width: 500px; margin: 24px 0 35px; padding: 22px 0; border-block: 1px solid rgba(255,255,255,.15); }
.gift-example span { color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gift-example strong { color: var(--gold-light); font-family: var(--serif); font-size: 2rem; }
.gift-copy .button { justify-self: start; }
.gift-art { position: relative; display: grid; place-items: center; overflow: hidden; padding: clamp(35px, 6vw, 95px); background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.gift-art::before { content: ""; position: absolute; width: 760px; height: 760px; border: 1px solid rgba(3,21,35,.22); border-radius: 50%; }
.gift-art img { position: relative; width: min(800px, 90%); height: auto; object-fit: contain; box-shadow: 0 40px 90px rgba(3,21,35,.32); transform: rotate(3deg); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 135px); }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { margin-bottom: 28px; }
.faq-intro p { color: var(--muted); line-height: 1.75; }
.text-link { display: inline-block; margin-top: 22px; color: #8f6918; font-weight: 700; border-bottom: 1px solid rgba(143,105,24,.35); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 54px 26px 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 10px; top: 19px; color: #987019; font-family: var(--sans); font-size: 1.8rem; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details div { padding: 0 55px 25px 0; color: var(--muted); line-height: 1.75; }
.faq-list details div p:last-child { margin-bottom: 0; }

.final-cta { position: relative; overflow: hidden; padding: clamp(100px, 13vw, 180px) 24px; color: var(--white); text-align: center; background: var(--navy-900); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(214,167,63,.12); border-radius: 50%; }
.final-cta::before { left: -240px; top: -220px; }
.final-cta::after { right: -240px; bottom: -260px; }
.final-cta-copy { position: relative; z-index: 2; width: min(1050px, 100%); margin: auto; }
.final-cta h2 { margin-bottom: 42px; font-size: clamp(3rem, 6.5vw, 6.6rem); line-height: 1; letter-spacing: -.055em; }
.value-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 30px; margin-bottom: 44px; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2rem); }
.value-line b { color: var(--blue); }
.final-cta-copy > p:last-child { margin: 25px 0 0; color: rgba(255,255,255,.55); font-size: .85rem; }

.important-section { padding-block: 70px; background: #eee7da; }
.important-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 55px; }
.important-grid p, .terms-note { color: #5e625f; font-size: .82rem; line-height: 1.75; }
.terms-note { margin: 30px 0 0; padding-top: 25px; font-weight: 700; border-top: 1px solid rgba(3,21,35,.14); }
.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 35px; padding: 42px clamp(24px, 6vw, 90px); color: rgba(255,255,255,.62); background: var(--navy-950); }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.site-footer p { margin: 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: .76rem; font-weight: 700; }
.footer-links a:hover { color: var(--gold-light); }

.reveal { animation: reveal-up 800ms both cubic-bezier(.2,.7,.2,1); }
.reveal-late { animation-delay: 180ms; }
@keyframes reveal-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob { 50% { transform: translateY(5px); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; position: absolute; top: calc(100% + 8px); right: 18px; left: 18px; padding: 10px; color: var(--ink); background: var(--white); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 13px 14px; border-radius: 9px; }
  .nav-links a:hover { color: var(--navy-700); background: var(--cream); }
  .menu-toggle { display: block; }
  .vault-hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { max-width: 780px; }
  .hero-art { width: min(840px, 92%); margin: 20px auto 40px; }
  .scroll-cue { display: none; }
  .why-section, .gift-section { grid-template-columns: 1fr; }
  .why-visual { min-height: 500px; }
  .gift-art { min-height: 600px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 800px) {
  .section-shell { width: min(100% - 34px, 1240px); }
  .explainer-shell, .intro-grid, .tier-heading, .use-layout, .rule-layout, .promise-heading, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .explainer-copy { max-width: 620px; }
  .explainer-copy h2 { max-width: 600px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card-raised { transform: none; }
  .tier-card-raised:hover { transform: translateY(-7px); }
  .use-heading, .faq-intro { position: static; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .promise-grid article:nth-child(2n) { border-right: 0; }
  .promise-grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .promise-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .important-grid { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 580px) {
  .site-header { min-height: 68px; padding: 10px 15px; }
  .brand img { width: 125px; }
  .header-action { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .vault-hero { padding: 115px 18px 70px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .button-quiet { padding-block: 10px; }
  .hero-art { width: 100%; }
  .art-frame { padding: 6px; border-radius: 22px; }
  .value-stamp { right: -2%; bottom: -18%; width: 112px; }
  .value-stamp strong { font-size: 1.7rem; }
  .explainer-section { padding-block: 78px 90px; }
  .explainer-video { padding: 5px; border-radius: 16px; box-shadow: 12px 15px 0 rgba(3,21,35,.09), 0 20px 45px rgba(2,18,30,.16); }
  .explainer-video iframe { border-radius: 11px; }
  .explainer-video::after { right: 8px; bottom: -31px; }
  .section-kicker { margin-bottom: 38px; }
  .intro-grid h2, .tier-heading h2, .use-heading h2, .promise-heading h2, .faq-intro h2 { font-size: 2.75rem; }
  .tier-card { padding: 7px; border-radius: 17px; }
  .tier-card-copy { grid-template-columns: 1fr 1fr; }
  .tier-card-copy .tier-bonus { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  .tier-cta { align-items: stretch; flex-direction: column; padding: 24px; }
  .why-visual { min-height: 390px; }
  .why-copy, .gift-copy { padding: 75px 24px; }
  .experience-list article { grid-template-columns: 34px 1fr; gap: 12px; }
  .experience-list p { grid-column: 2; }
  .eligibility-note { grid-template-columns: 1fr; padding: 24px; }
  .rule-table-wrap { overflow-x: auto; box-shadow: 10px 10px 0 rgba(3,21,35,.08); }
  th, td { padding: 15px 12px; white-space: nowrap; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid article, .promise-grid article:nth-child(3n), .promise-grid article:nth-child(2n), .promise-grid article:nth-last-child(-n+2) { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-grid article:last-child { border-bottom: 0; }
  .gift-art { min-height: 420px; padding: 35px 20px; }
  .gift-example { grid-template-columns: auto 1fr; }
  .faq-list summary { font-size: 1.15rem; }
  .final-cta { padding-inline: 18px; }
  .value-line { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
