/* ===========================================================
   Atulyam Health — premium design system
   Editorial serif + refined gold-on-navy, cinematic motion.
   =========================================================== */
:root {
  --navy:      #090e1a;
  --navy-2:    #0b1322;
  --navy-soft: #0e1728;
  --panel:     #101c30;
  --cream:     #f6f1e7;
  --cream-2:   #efe7d7;
  --ink:       #131c2b;
  --ink-soft:  #5f6b7c;
  --muted:     #8a97a9;

  --gold-1: #f2dda6;
  --gold-2: #d8b877;
  --gold-3: #b8934f;
  --gold:   #cba86a;
  --gold-light: #e6cf9b;
  --gold-grad: linear-gradient(135deg, #f4e1af 0%, #d5b06a 46%, #b78f4c 100%);
  --gold-sheen: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 48%, transparent 62%);

  --line:      rgba(203,168,106,.30);
  --line-2:    rgba(203,168,106,.18);
  --line-soft: rgba(246,241,231,.10);
  --hair:      rgba(246,241,231,.08);

  --radius: 18px;
  --radius-lg: 26px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow: 0 40px 90px -50px rgba(0,0,0,.75);
  --shadow-gold: 0 30px 70px -40px rgba(203,168,106,.4);
  --ease: cubic-bezier(.19,1,.22,1);
  --nav-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--cream); background: var(--navy);
  font-family: var(--sans); line-height: 1.65; font-weight: 400;
  overflow-x: hidden; letter-spacing: .002em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(203,168,106,.28); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* film-grain + vignette for depth */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035; mix-blend-mode: overlay;
}
main, header, footer { position: relative; z-index: 2; }

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

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: .32em;
  font-size: 11px; font-weight: 600; font-family: var(--sans);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--gold);
  opacity: .8;
}
.center .eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: .8; }
.center .eyebrow { justify-content: center; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -.01em; }
h1 { font-size: clamp(46px, 7.4vw, 104px); font-weight: 500; letter-spacing: -.022em; }
h2 { font-size: clamp(34px, 5.2vw, 68px); letter-spacing: -.018em; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; }
h4 { font-size: 20px; }
p  { color: var(--muted); margin: 0; }
.light h1, .light h2, .light h3, .light h4 { color: var(--ink); }
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 30px; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--sans); font-size: 11.5px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
  color: #1a1206; background: var(--gold-grad); cursor: pointer; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .4s ease;
  box-shadow: 0 14px 34px -18px rgba(203,168,106,.7);
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: var(--gold-sheen);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -20px rgba(203,168,106,.8); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }
.btn-outline {
  color: var(--gold-light); background: transparent; border-color: var(--line);
  box-shadow: none; backdrop-filter: blur(2px);
  transition: transform .5s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}
.btn-outline::after { display: none; }
.btn-outline:hover { color: #1a1206; border-color: transparent; background: var(--gold-grad); }
.btn-dark {
  color: var(--ink); background: transparent; border-color: rgba(24,34,50,.28); box-shadow: none;
  transition: transform .5s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}
.btn-dark::after { display: none; }
.btn-dark:hover { color: var(--cream); border-color: transparent; background: var(--ink); }
.btn-sm { padding: 12px 22px; font-size: 10.5px; }
.btn-block { width: 100%; }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
  background: radial-gradient(circle at 50% 40%, #12203a, var(--navy) 70%);
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
#loader.done { opacity: 0; visibility: hidden; }
#loader .mark { width: 92px; height: 92px; opacity: 0; animation: markIn 1.1s var(--ease) .1s forwards; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
#loader .lwm { font-family: var(--serif); font-size: 30px; letter-spacing: .5em; color: var(--cream); text-indent: .5em; opacity: 0; animation: markIn 1s var(--ease) .35s forwards; }
#loader .lbar { width: 140px; height: 2px; background: var(--hair); border-radius: 2px; overflow: hidden; }
#loader .lbar i { display: block; height: 100%; width: 0; background: var(--gold-grad); animation: load 1.4s var(--ease) .3s forwards; }
@keyframes markIn { from { opacity: 0; transform: translateY(14px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes load { to { width: 100%; } }

/* ---------- Header ---------- */
header.site { position: fixed; top: 0; width: 100%; z-index: 40; transition: background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease); border-bottom: 1px solid transparent; }
header.site.scrolled { background: rgba(9,14,26,.72); backdrop-filter: saturate(150%) blur(18px); border-bottom: 1px solid var(--hair); }
nav.site { height: var(--nav-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; transition: height .5s var(--ease); }
.brand { justify-self: start; }
.nav-actions { justify-self: end; }
header.site.scrolled nav.site { height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 13px; font-family: var(--serif); color: var(--cream); line-height: 1; }
.brand-mark { height: 40px; width: auto; transition: height .5s var(--ease); filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
header.site.scrolled .brand-mark { height: 33px; }
.brand-logo { display: none; height: 34px; width: auto; transition: height .5s var(--ease); }
header.site.scrolled .brand-logo { height: 30px; }
.brand.has-logo .brand-logo { display: block; }
.brand.has-logo .brand-text { display: none; }
.brand-text { font-size: 17px; letter-spacing: .18em; }
.brand-text small { display: block; color: var(--gold); font: 8.5px var(--sans); letter-spacing: .3em; margin-top: 5px; }
.foot-brand .brand { display: block; }
.foot-brand .brand-mark { display: none; }
.foot-brand .brand-logo { height: 112px; margin-bottom: 6px; }

.nav-links { display: flex; gap: 26px; align-items: center; justify-self: center; }
.nav-links a { position: relative; font-size: 12px; letter-spacing: .09em; color: #c3ccd9; text-transform: uppercase; padding: 6px 0; transition: color .3s ease; white-space: nowrap; }
.nav-cta { white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-grad); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.points-pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); color: var(--gold-light); padding: 9px 15px; border-radius: 999px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; background: rgba(203,168,106,.05); white-space: nowrap; }
.points-pill b { color: var(--cream); }
.hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--hair); background: rgba(255,255,255,.02); border-radius: 13px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger span { width: 20px; height: 1.5px; background: var(--cream); transition: .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 39; background: linear-gradient(180deg, #0a1120, #070c16); transform: translateX(100%); transition: transform .6s var(--ease); display: flex; flex-direction: column; padding: 108px 30px 40px; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer a { font-family: var(--serif); font-size: 30px; padding: 17px 0; border-bottom: 1px solid var(--hair); color: var(--cream); }
.drawer a.active { color: var(--gold-light); }
.drawer .btn { margin-top: 30px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 150px 0 80px; background: radial-gradient(120% 90% at 80% 15%, #1b2a42 0, var(--navy) 55%); }
.hero::after { content: ''; position: absolute; inset: 0 0 0 44%; background: linear-gradient(90deg, var(--navy) 0%, rgba(9,14,26,.35) 38%, rgba(9,14,26,.05)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=88') center/cover; opacity: .82; animation: kenburns 24s ease-out forwards; }
.hero::before { content: ''; position: absolute; right: -8%; top: 50%; width: 620px; height: 620px; transform: translateY(-50%); background: radial-gradient(circle, rgba(203,168,106,.16), transparent 62%); pointer-events: none; z-index: 1; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.14); } }
.hero-content { position: relative; z-index: 3; }
.hero h1 { max-width: 15ch; }
.hero p { max-width: 560px; margin: 30px 0 38px; font-size: clamp(16px,2.1vw,20px); color: #cdd5e1; font-weight: 300; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 46px; margin-top: 58px; flex-wrap: wrap; }
.hero-stats div span { display: block; font-family: var(--serif); font-size: clamp(30px,3.4vw,40px); color: var(--cream); font-weight: 500; }
.hero-stats div small { color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }

/* generic hero-actions reveal handled by JS */

.trust { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 22px 0; color: var(--gold-light); text-align: center; text-transform: uppercase; letter-spacing: .22em; font-size: 10.5px; background: rgba(203,168,106,.03); }
.trust span { margin: 0 14px; color: var(--gold); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; padding: 190px 0 96px; overflow: hidden; background: radial-gradient(120% 80% at 82% 12%, #182740 0, var(--navy) 58%); }
.page-hero::before { content: ''; position: absolute; right: -6%; top: 30%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(203,168,106,.14), transparent 62%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 11px; color: var(--muted); margin-bottom: 26px; text-transform: uppercase; letter-spacing: .18em; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.page-hero h1 { max-width: 20ch; }
.page-hero p { max-width: 640px; margin-top: 26px; font-size: clamp(16px,2.1vw,20px); color: #c7d0dd; font-weight: 300; }
.page-hero .hero-actions { margin-top: 40px; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 90px; }
.light { background: var(--cream); color: var(--ink); }
.light p { color: var(--ink-soft); }
.soft { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%); }
.pad { padding: clamp(84px, 11vw, 150px) 0; }
.pad-sm { padding: clamp(60px, 8vw, 100px) 0; }
.center { text-align: center; }
.center .section-head { justify-content: center; }
.lead { font-size: clamp(16px,2.1vw,19px); max-width: 680px; margin-top: 26px; line-height: 1.7; }
.center .lead { margin-left: auto; margin-right: auto; }
.mt-btn { margin-top: 36px; }

.section-head { display: flex; justify-content: space-between; gap: 48px; align-items: end; margin-bottom: 54px; }
.section-head p { max-width: 380px; }
.section-head h2 { margin-top: 14px; }

/* ---------- Hospital marquee ---------- */
.logostrip { display: flex; flex-wrap: wrap; gap: 16px 48px; align-items: center; justify-content: center; }
.logostrip span { font-family: var(--serif); font-size: clamp(20px,2.6vw,30px); color: var(--ink); opacity: .55; letter-spacing: .02em; font-weight: 500; }
.light .logostrip span { color: #6f6a5e; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 64px; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: clamp(22px,2.6vw,32px); color: #7a746780; letter-spacing: .02em; white-space: nowrap; font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; padding: 32px 26px; min-height: 260px; border: 1px solid #e0d8c9;
  background: linear-gradient(180deg, #fbf9f4, #f4efe5); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -34px rgba(24,34,50,.4); border-color: var(--gold); }
.card:hover::before { transform: scaleX(1); }
.card-ico { font-size: 28px; filter: saturate(.9); }
.card-number { font-family: var(--serif); font-size: 15px; letter-spacing: .1em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.card h3 { margin-top: 14px; color: var(--ink); }
.card p { font-size: 14px; margin-top: 12px; color: var(--ink-soft); }
.card-link { color: var(--gold-3); font-size: 10.5px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; margin-top: 18px; display: inline-flex; gap: 6px; transition: gap .3s ease; }
.card:hover .card-link { gap: 12px; }

/* dark feature cards */
.dcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.dcard { position: relative; border: 1px solid var(--hair); border-radius: var(--radius); padding: 30px 26px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); overflow: hidden; transition: transform .55s var(--ease), border-color .55s var(--ease), background .55s var(--ease); }
.dcard::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 0%, rgba(203,168,106,.12), transparent 60%); opacity: 0; transition: opacity .55s var(--ease); }
.dcard:hover { transform: translateY(-6px); border-color: var(--line-2); }
.dcard:hover::before { opacity: 1; }
.dcard .ico { font-size: 26px; position: relative; }
.dcard h3 { margin: 16px 0 9px; color: var(--cream); position: relative; }
.dcard p { font-size: 14px; position: relative; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); min-height: 440px; background-size: cover; background-position: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.split-media::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.split h2 { margin: 14px 0 18px; }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.checklist .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(203,168,106,.16); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; border: 1px solid var(--line-2); }
.light .checklist li { color: var(--ink-soft); }
.light .checklist .tick { background: rgba(203,168,106,.16); color: var(--gold-3); }
.checklist li b { color: var(--cream); font-weight: 600; }
.light .checklist li b { color: var(--ink); }

/* stat band */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align: center; }
.statband > div { padding: 10px; border-left: 1px solid var(--hair); }
.statband > div:first-child { border-left: none; }
.statband .num { font-family: var(--serif); font-size: clamp(38px,5vw,60px); font-weight: 500; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.statband small { display: block; margin-top: 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 10.5px; color: var(--muted); }
.light .statband > div { border-color: #e0d8c9; }
.light .statband small { color: var(--ink-soft); }

/* ---------- Elite/Atulyam Points ---------- */
.points { position: relative; overflow: hidden; background:
  radial-gradient(circle at 12% 18%, rgba(203,168,106,.14), transparent 42%),
  radial-gradient(circle at 88% 88%, rgba(203,168,106,.10), transparent 44%),
  linear-gradient(180deg, var(--navy-2), var(--navy-soft)); }
.points-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.points h2 { margin: 16px 0 22px; }
.points-lead { font-size: clamp(16px,2.1vw,19px); color: #c6cfdc; max-width: 540px; font-weight: 300; }
.points-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.points-list li { display: flex; gap: 16px; align-items: flex-start; color: #d2d9e3; font-size: 15px; }
.points-list .tick { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(203,168,106,.14); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid var(--line-2); }
.points-card {
  position: relative; border-radius: var(--radius-lg); padding: 34px; overflow: hidden;
  background: linear-gradient(150deg, #17253c 0%, #0c1526 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow-gold);
  transform-style: preserve-3d; transition: transform .3s var(--ease);
}
.points-card::before { content: ''; position: absolute; top: -60%; left: -30%; width: 80%; height: 220%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent); transform: rotate(18deg); animation: sweep 2.6s var(--ease) .6s 1; }
@keyframes sweep { from { left: -40%; } to { left: 130%; } }
.pc-top { display: flex; justify-content: space-between; align-items: center; }
.pc-chip { width: 46px; height: 34px; border-radius: 7px; background: linear-gradient(135deg, var(--gold-1), var(--gold-3)); box-shadow: inset 0 1px 2px rgba(255,255,255,.5); }
.pc-brand { font-family: var(--serif); letter-spacing: .2em; font-size: 14px; color: var(--cream); }
.pc-balance { margin: 30px 0 5px; font-family: var(--serif); font-size: 52px; color: var(--cream); line-height: 1; font-weight: 500; }
.pc-balance small { font-size: 15px; color: var(--gold-light); font-family: var(--sans); letter-spacing: .1em; }
.pc-sub { color: var(--muted); font-size: 12.5px; }
.pc-rows { margin-top: 28px; border-top: 1px solid var(--hair); padding-top: 18px; display: grid; gap: 12px; }
.pc-row { display: flex; justify-content: space-between; font-size: 12.5px; color: #c6cfdc; }
.pc-row b { color: var(--gold-light); }
.pc-foot { margin-top: 22px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Medications ---------- */
.med-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.med-tab { padding: 13px 24px; border-radius: 999px; border: 1px solid #e0d8c9; background: #faf7f1; color: var(--ink); font-weight: 600; font-size: 13px; cursor: pointer; transition: .35s var(--ease); letter-spacing: .02em; }
.med-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 0 16px 30px -18px rgba(24,34,50,.5); }
.med-panel { display: none; }
.med-panel.active { display: block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.med-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.med-visual { border-radius: var(--radius-lg); min-height: 380px; background-size: cover; background-position: center; position: relative; box-shadow: var(--shadow); overflow: hidden; }
.med-visual span { position: absolute; left: 20px; bottom: 20px; background: rgba(9,14,26,.82); color: var(--cream); padding: 9px 16px; border-radius: 999px; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line-2); }
.med-copy h3 { color: var(--ink); font-size: clamp(26px,3vw,34px); }
.med-copy .price { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-family: var(--serif); font-size: 22px; margin-top: 4px; }
.med-copy > p { margin-top: 14px; color: var(--ink-soft); }
.med-features { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.med-features li { display: flex; gap: 11px; align-items: center; color: var(--ink-soft); font-size: 14.5px; }
.med-features li b { color: var(--ink); font-weight: 600; }
.med-features .dot { color: var(--gold-3); font-weight: 800; }
.med-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 10px; }
.confid { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--ink-soft); font-size: 12.5px; }
.confid b { color: var(--ink); }

/* ---------- Steps ---------- */
.steps h2 { margin-bottom: 58px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { border-top: 1px solid var(--line); padding-top: 22px; position: relative; }
.step strong { font-family: var(--serif); font-size: 38px; font-weight: 500; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { margin: 18px 0 11px; font-size: 21px; }
.step p { font-size: 14.5px; }
.light .step { border-color: #e0d8c9; }

/* ---------- Plans ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan { position: relative; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 38px 30px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)); display: flex; flex-direction: column; transition: transform .55s var(--ease), border-color .55s var(--ease); }
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan.featured { border-color: var(--line); background: linear-gradient(165deg, rgba(203,168,106,.12), rgba(255,255,255,.01)); box-shadow: var(--shadow-gold); }
.plan .tag { align-self: flex-start; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: #1a1206; background: var(--gold-grad); padding: 6px 13px; border-radius: 999px; font-weight: 800; margin-bottom: 18px; }
.plan h3 { color: var(--cream); }
.plan .cost { font-family: var(--serif); font-size: 46px; color: var(--cream); margin: 14px 0 2px; font-weight: 500; }
.plan .cost small { font-size: 14px; color: var(--muted); font-family: var(--sans); }
.plan ul { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 13px; }
.plan li { color: #d2d9e3; font-size: 14px; display: flex; gap: 11px; }
.plan li:before { content: '✦'; color: var(--gold-light); font-size: 11px; margin-top: 2px; }
.plan .btn { margin-top: auto; }

/* ---------- Advocacy / quote ---------- */
.advocacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.advocacy p { font-size: clamp(16px,2.1vw,19px); margin-top: 24px; max-width: 520px; font-weight: 300; }
.quote-box { position: relative; padding: 10px 0 10px 40px; color: var(--cream); font-family: var(--serif); font-size: clamp(24px,3.2vw,34px); line-height: 1.4; font-weight: 400; font-style: italic; }
.quote-box::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--gold-grad); }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tcard { border: 1px solid #e0d8c9; background: linear-gradient(180deg, #fbf9f4, #f4efe5); border-radius: var(--radius); padding: 32px 28px; transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -34px rgba(24,34,50,.35); }
.tcard .stars { color: var(--gold-3); letter-spacing: 4px; font-size: 13px; }
.tcard p { color: var(--ink); font-family: var(--serif); font-size: 20px; line-height: 1.5; margin: 16px 0 20px; font-style: italic; }
.tcard .who { color: var(--ink-soft); font-size: 12.5px; letter-spacing: .02em; }
.tcard .who b { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hair); }
.light .faq-item { border-color: #e0d8c9; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--serif); font-size: clamp(19px,2.2vw,24px); color: var(--cream); font-weight: 500; }
.light .faq-q { color: var(--ink); }
.faq-q .pm { flex: 0 0 auto; color: var(--gold); font-size: 26px; transition: transform .4s var(--ease); font-family: var(--sans); font-weight: 300; }
.faq-item.open .faq-q .pm { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 0 26px; font-size: 15px; max-width: 700px; line-height: 1.7; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 50% 0%, #17233a, var(--navy) 70%); color: var(--cream); text-align: center; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(203,168,106,.16), transparent 55%); pointer-events: none; }
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: var(--cream); }
.cta p { color: #c2cbd8; margin: 22px auto 34px; max-width: 540px; font-size: 18px; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info .checklist { margin-top: 30px; }
.info-rows { margin-top: 34px; display: grid; gap: 18px; }
.info-row { display: flex; gap: 14px; align-items: center; color: #c6cfdc; font-size: 15px; }
.info-row .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(203,168,106,.12); display: flex; align-items: center; justify-content: center; color: var(--gold-light); border: 1px solid var(--line-2); }
.form-card { background: linear-gradient(180deg, #fbf9f4, #f2ece1); color: var(--ink); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); border: 1px solid #e6ddcd; }
.form-card h3 { color: var(--ink); }
.form-card .sub { color: var(--ink-soft); font-size: 14px; margin: 8px 0 26px; }
.field { width: 100%; padding: 15px 17px; border: 1px solid #ddd4c4; border-radius: 13px; font-size: 15px; font-family: var(--sans); color: var(--ink); background: #fff; margin-bottom: 13px; transition: border-color .3s ease, box-shadow .3s ease; }
.field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,168,106,.15); }
textarea.field { min-height: 118px; resize: vertical; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.grid2 .field { margin-bottom: 0; }
.form-note { display: flex; gap: 9px; align-items: flex-start; margin-top: 16px; color: var(--ink-soft); font-size: 12px; }

/* ---------- Footer ---------- */
footer.site { padding: 84px 0 40px; background: linear-gradient(180deg, var(--navy-soft), var(--navy)); color: var(--muted); font-size: 13px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--hair); }
.foot-col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-weight: 600; }
.foot-col a { display: block; padding: 7px 0; color: #a7b2c1; font-size: 13.5px; transition: color .3s ease, padding-left .3s ease; }
.foot-col a:hover { color: var(--gold-light); padding-left: 5px; }
.foot-brand p { margin-top: 4px; max-width: 320px; font-size: 13px; line-height: 1.7; }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; flex-wrap: wrap; }
.disclaimer { max-width: 680px; line-height: 1.7; }

/* ---------- Questionnaire modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,10,18,.78); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 2; width: min(580px, 100%); max-height: 92svh; overflow-y: auto; background: linear-gradient(180deg, #fbf9f4, #f3ede2); color: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 50px 110px -40px rgba(0,0,0,.8); border: 1px solid #e6ddcd; animation: pop .5s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-head { padding: 30px 32px 0; }
.modal-head .eyebrow { color: var(--gold-3); }
.modal-head .eyebrow::before { background: var(--gold-3); }
.modal-head h3 { color: var(--ink); margin: 12px 0 5px; font-size: 27px; }
.modal-head p { color: var(--ink-soft); font-size: 14px; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd4c4; background: #fff; cursor: pointer; font-size: 18px; color: var(--ink); transition: .3s ease; }
.modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: rotate(90deg); }
.progress { height: 3px; background: #e5ddce; border-radius: 999px; margin: 24px 32px 0; overflow: hidden; }
.progress span { display: block; height: 100%; width: 0; background: var(--gold-grad); transition: width .5s var(--ease); }
.modal-body { padding: 26px 32px 6px; }
.q-step { display: none; }
.q-step.active { display: block; animation: fadeUp .45s var(--ease); }
.q-label { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 5px; font-weight: 500; }
.q-help { color: var(--ink-soft); font-size: 13px; margin-bottom: 18px; }
.q-options { display: grid; gap: 11px; }
.opt { display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid #ddd4c4; border-radius: 13px; background: #fff; cursor: pointer; font-size: 14.5px; color: var(--ink); transition: .25s var(--ease); }
.opt:hover { border-color: var(--gold); transform: translateX(3px); }
.opt.selected { border-color: var(--gold); background: #fdf8ee; box-shadow: inset 0 0 0 1px var(--gold); }
.opt input { accent-color: var(--gold-3); width: 18px; height: 18px; }
.q-field { width: 100%; padding: 15px 17px; border: 1px solid #ddd4c4; border-radius: 13px; font-size: 15px; font-family: var(--sans); color: var(--ink); background: #fff; }
.q-field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,168,106,.15); }
textarea.q-field { min-height: 96px; resize: vertical; }
.q-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.modal-foot { display: flex; justify-content: space-between; gap: 13px; padding: 18px 32px 30px; position: sticky; bottom: 0; background: linear-gradient(180deg, rgba(251,249,244,0), #f5efe4 34%); }
.link-back { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.link-back:hover { color: var(--ink); }
.q-note { display: flex; gap: 9px; align-items: flex-start; margin: 2px 32px 20px; color: var(--ink-soft); font-size: 12px; }
.q-success { text-align: center; padding: 14px 4px 8px; }
.q-success .check { width: 68px; height: 68px; border-radius: 50%; background: rgba(203,168,106,.16); color: var(--gold-3); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 18px; border: 1px solid var(--line); animation: pop .5s var(--ease); }
.q-success h3 { color: var(--ink); }
.q-success p { color: var(--ink-soft); margin-top: 12px; font-size: 14.5px; }
.q-success .earn { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; background: #fdf8ee; border: 1px solid var(--line); color: var(--gold-3); padding: 11px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* ---------- Reveal + back to top ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.totop { position: fixed; right: 22px; bottom: 22px; z-index: 30; width: 50px; height: 50px; border-radius: 50%; background: var(--gold-grad); color: #1a1206; border: none; cursor: pointer; font-size: 18px; opacity: 0; pointer-events: none; transition: .5s var(--ease); box-shadow: 0 18px 40px -18px rgba(203,168,106,.7); }
.totop.show { opacity: 1; pointer-events: auto; }
.totop:hover { transform: translateY(-4px); }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-3), var(--gold-2)); border-radius: 10px; border: 3px solid var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards, .cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .step-grid, .statband { grid-template-columns: repeat(2, 1fr); }
  .dcards, .tgrid, .plans-grid { grid-template-columns: 1fr; }
  .points-grid, .advocacy-grid, .med-layout, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 320px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .statband > div { border-left: none; }
}
@media (max-width: 1280px) { .points-pill { display: none; } }
@media (max-width: 1120px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  :root { --nav-h: 78px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 34px); }
  .cards, .cards.cols-3, .step-grid { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .hero-stats { gap: 30px; }
  .foot-top { grid-template-columns: 1fr; }
  .q-grid2, .grid2 { grid-template-columns: 1fr; }
  .med-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .med-tab { flex: 0 0 auto; }
  .brand-text small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero::after { animation: none; }
}

/* ---------- Bespoke line icons ---------- */
svg.i { display: inline-block; vertical-align: middle; stroke: currentColor; fill: none; overflow: visible; }
.card-ico { color: var(--gold-3); line-height: 0; margin-bottom: 4px; filter: none; }
.card-ico svg.i { width: 30px; height: 30px; }
.card:hover .card-ico { color: var(--gold-2); }
.dcard .ico { color: var(--gold-light); line-height: 0; }
.dcard .ico svg.i { width: 30px; height: 30px; }
.points-list .tick svg.i { width: 15px; height: 15px; }
.info-row .ico svg.i { width: 20px; height: 20px; }
.confid svg.i { width: 15px; height: 15px; color: var(--gold-3); flex: 0 0 auto; }
.form-note svg.i, .q-note svg.i { width: 15px; height: 15px; color: var(--gold-3); flex: 0 0 auto; margin-top: 1px; }
.q-success .earn svg.i { width: 15px; height: 15px; }

/* ---------- btn-dark used on dark sections -> render as light outline ---------- */
.cta .btn-dark, .soft .btn-dark, .points .btn-dark, .page-hero .btn-dark, .hero .btn-dark, .advocacy .btn-dark {
  color: var(--gold-light); background: transparent; border-color: var(--line);
}
.cta .btn-dark:hover, .soft .btn-dark:hover, .points .btn-dark:hover,
.page-hero .btn-dark:hover, .hero .btn-dark:hover, .advocacy .btn-dark:hover {
  color: #1a1206; border-color: transparent; background: var(--gold-grad);
}

/* ---------- Muted editorial photography treatment ---------- */
.split-media, .med-visual { filter: saturate(.76) contrast(1.03) brightness(.98); }
.split-media::before, .med-visual::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(9,14,26,.12) 0%, rgba(9,14,26,.34) 100%);
  mix-blend-mode: multiply; z-index: 0;
}
.med-visual span { z-index: 2; }
.hero::after { filter: saturate(.64) contrast(1.03) brightness(.86); }
.page-hero::before { filter: saturate(.55) brightness(.9); }

/* ===========================================================
   Accounts: auth pages + member dashboard
   =========================================================== */
/* header auth controls */
.nav-auth { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: #c3ccd9; white-space: nowrap; transition: color .3s ease; }
.nav-auth:hover { color: var(--gold-light); }
.nav-auth.acct { display: inline-flex; align-items: center; gap: 9px; }
.nav-auth .ava { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-grad); color: #1a1206; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; letter-spacing: .04em; }
.nav-actions .sep { width: 1px; height: 22px; background: var(--hair); }

/* auth pages */
.auth { min-height: 100svh; display: grid; place-items: center; padding: 130px 20px 70px; position: relative; }
.auth::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, #16233a, var(--navy) 60%); z-index: -1; }
.auth-card { width: min(470px, 100%); background: linear-gradient(180deg, #fbf9f4, #f2ece1); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 44px); box-shadow: var(--shadow); border: 1px solid #e6ddcd; animation: pop .5s var(--ease); }
.auth-brand { display: flex; justify-content: center; margin-bottom: 20px; }
.auth-brand img { height: 74px; width: auto; }
.auth-card h1 { color: var(--ink); font-size: clamp(28px, 4vw, 36px); text-align: center; }
.auth-card .sub { text-align: center; color: var(--ink-soft); margin: 10px 0 26px; font-size: 14px; }
.auth-card .field { margin-bottom: 13px; }
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-row .field { margin-bottom: 13px; }
.auth-card .btn { margin-top: 6px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ink-soft); }
.auth-alt a { color: var(--gold-3); font-weight: 600; }
.auth-mini { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin: -2px 0 14px; }
.auth-mini a { color: var(--gold-3); font-weight: 600; }
.auth-mini label { color: var(--ink-soft); display: inline-flex; gap: 7px; align-items: center; cursor: pointer; }
.auth-msg { display: none; padding: 12px 14px; border-radius: 11px; font-size: 13.5px; margin-bottom: 16px; }
.auth-msg.show { display: block; }
.auth-msg.err { background: #fbeaea; color: #9a3b3b; border: 1px solid #ecc7c7; }
.auth-msg.ok { background: #eef6ec; color: #3d6b3a; border: 1px solid #cfe4c8; }
.auth-legal { text-align: center; margin-top: 18px; font-size: 11.5px; color: var(--ink-soft); }
.auth-legal a { color: var(--gold-3); }
.pw-wrap { position: relative; }
.pw-wrap .pw-toggle { position: absolute; right: 12px; top: 13px; background: none; border: none; cursor: pointer; color: var(--ink-soft); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* dashboard */
.dash { padding: calc(var(--nav-h) + 42px) 0 90px; min-height: 100svh; }
.dash-welcome { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.dash-welcome .eyebrow { margin-bottom: 12px; }
.dash-welcome h1 { font-size: clamp(34px, 5vw, 56px); }
.dash-welcome p { margin-top: 8px; }
.dash-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tile { border: 1px solid var(--hair); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,.02); }
.tile .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.tile .v { font-family: var(--serif); font-size: clamp(30px, 4vw, 40px); color: var(--cream); margin-top: 8px; line-height: 1; }
.tile.gold .v { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.panel { border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 28px; background: rgba(255,255,255,.02); }
.panel + .panel { margin-top: 22px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.panel-head h3 { color: var(--cream); }
.panel-head a { color: var(--gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.txn { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--hair); }
.txn:last-child { border-bottom: none; padding-bottom: 0; }
.txn .desc { color: #dbe1ea; font-size: 14.5px; }
.txn .meta { color: var(--muted); font-size: 12px; margin-top: 3px; }
.txn .amt { font-family: var(--serif); font-size: 20px; white-space: nowrap; }
.txn .amt.earn { color: var(--gold-light); }
.txn .amt.redeem { color: #d79a86; }
.quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quick a { display: flex; gap: 13px; align-items: center; border: 1px solid var(--hair); border-radius: 14px; padding: 16px; background: rgba(255,255,255,.02); transition: .35s var(--ease); }
.quick a:hover { border-color: var(--line-2); transform: translateY(-3px); background: rgba(255,255,255,.04); }
.quick .qi { width: 40px; height: 40px; border-radius: 11px; background: rgba(203,168,106,.12); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex: 0 0 auto; }
.quick .qi svg.i { width: 20px; height: 20px; }
.quick b { color: var(--cream); font-weight: 600; font-size: 14px; display: block; }
.quick span.d { color: var(--muted); font-size: 12px; }
.dash-list { display: grid; gap: 12px; }
.dash-row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hair); align-items: center; }
.dash-row:last-child { border-bottom: none; }
.dash-row .t { color: #dbe1ea; font-size: 14px; }
.dash-row .s { color: var(--muted); font-size: 12px; margin-top: 2px; }
.chip { font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--gold-light); white-space: nowrap; }
.chip.soft { color: var(--muted); border-color: var(--hair); }

/* statement */
.stmt-tools { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.seg { display: inline-flex; border: 1px solid var(--hair); border-radius: 999px; overflow: hidden; }
.seg button { background: none; border: none; color: var(--muted); padding: 9px 16px; font-size: 12px; cursor: pointer; letter-spacing: .04em; }
.seg button.active { background: var(--gold-grad); color: #1a1206; font-weight: 700; }
.stmt-table { width: 100%; border-collapse: collapse; }
.stmt-table th { text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; padding: 12px 10px; border-bottom: 1px solid var(--hair); }
.stmt-table td { padding: 15px 10px; border-bottom: 1px solid var(--hair); font-size: 14px; color: #dbe1ea; }
.stmt-table td.num { text-align: right; font-family: var(--serif); font-size: 17px; white-space: nowrap; }
.stmt-table td.earn { color: var(--gold-light); }
.stmt-table td.redeem { color: #d79a86; }
.stmt-table tr:last-child td { border-bottom: none; }
.stmt-empty { text-align: center; color: var(--muted); padding: 40px 0; }

@media (max-width: 900px) {
  .dash-grid { grid-template-columns: 1fr; }
  .tiles, .quick { grid-template-columns: 1fr 1fr; }
  .auth-row { grid-template-columns: 1fr; }
  .stmt-table thead { display: none; }
  .stmt-table, .stmt-table tbody, .stmt-table tr, .stmt-table td { display: block; width: 100%; }
  .stmt-table tr { border: 1px solid var(--hair); border-radius: 14px; padding: 6px 12px; margin-bottom: 12px; }
  .stmt-table td { border: none; padding: 6px 0; display: flex; justify-content: space-between; }
  .stmt-table td.num { text-align: right; }
  .stmt-table td::before { content: attr(data-label); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
}
@media print {
  header.site, footer.site, .totop, #loader, .stmt-tools, .dash-welcome .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .panel { border: 1px solid #ccc; }
}
.drawer-auth { margin-top: 12px; }
@media (max-width: 1120px) { .nav-auth:not(.acct) { display: none; } }
footer.site .foot-bottom a { color: #aeb8c6; }
footer.site .foot-bottom a:hover { color: var(--gold-light); }
/* legal / prose pages */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); margin: 44px 0 14px; color: var(--cream); }
.light .prose h2 { color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 15.5px; line-height: 1.8; }
.prose ul { padding-left: 20px; margin: 10px 0; }
.prose a { color: var(--gold-light); }
.prose .upd { color: var(--muted); font-size: 13px; letter-spacing: .02em; }

/* ---------- Partner portal (hidden admin inbox) ---------- */
.partner-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 0 0 26px; flex-wrap: wrap; }
.partner-head h1 { font-size: clamp(30px, 4vw, 46px); }
.partner-head .sub { color: var(--muted); font-size: 13px; margin-top: 6px; }
.lead-card { border: 1px solid var(--hair); border-radius: var(--radius); padding: 22px 24px; background: rgba(255,255,255,.02); margin-bottom: 14px; transition: border-color .3s ease; }
.lead-card:hover { border-color: var(--line-2); }
.lead-card.handled { opacity: .5; }
.lead-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.lead-name { color: var(--cream); font-family: var(--serif); font-size: 21px; }
.lead-meta { color: var(--muted); font-size: 12.5px; margin-top: 3px; }
.lead-body { color: #cfd6e0; font-size: 14px; line-height: 1.75; }
.lead-body b { color: var(--cream); font-weight: 600; }
.lead-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.lead-actions button { background: none; border: 1px solid var(--hair); color: var(--muted); border-radius: 999px; padding: 8px 15px; font-size: 10.5px; cursor: pointer; letter-spacing: .08em; text-transform: uppercase; transition: .25s ease; }
.lead-actions button:hover { border-color: var(--line-2); color: var(--gold-light); }
.lead-actions button.del:hover { border-color: rgba(215,154,134,.5); color: #d79a86; }
.badge-type { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--gold-light); white-space: nowrap; }
.badge-type.checkin { color: #a9c7e0; border-color: rgba(160,190,220,.28); }
