/* =====================================================================
   Swasti Bharat · International Yoga Day 2026 — design system stylesheet
   Tokens + chrome are lifted verbatim from the canonical v7-shared.css.
   DO NOT introduce off-system colours, fonts, radii or shadows here.
   Brand: Plum (primary) + Saffron (accent). Fonts: Inter Tight / Inter /
   Fraunces / DM Mono. This file is self-contained (no external CSS dep).
   ===================================================================== */

:root {
  --plum: #5C1E47; --plum-mid: #6B2855; --plum-deep: #3D0C2E; --plum-darker: #1F0617;
  --plum-light: #8B4675; --plum-soft: #F2E6ED;
  --saffron: #E87B2C; --saffron-bright: #FF8848; --saffron-deep: #B85C1A; --saffron-soft: #FDEFE0;
  --teal: #0F6B5F; --teal-bright: #15A47A;
  --lavender: #B492FF; --lavender-deep: #6B49C9;
  --coral: #E85C4A; --coral-bright: #FF6B5C;
  --mustard: #D4A847; --mustard-deep: #A6802F;
  --sage: #7A9E7E; --pink: #E85C8E; --lemon: #F0CE3D; --aqua: #1FA9A0; --jade: #15803D;
  --bg: #FFFFFF; --bg-soft: #FAF6F2; --bg-warm: #FCF4EA;
  --bg-dark: #1A0E16; --bg-darker: #0F0510;
  --cult-dark: #1A0E16;
  --ink: #1F0E18; --ink-2: #3B2A33; --muted: #6B5963; --muted-2: #9B8B92;
  --line: #EFE6E4; --line-strong: #DDD0CC; --line-dark: #2A1A22;
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px; --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(31,14,24,0.05);
  --shadow-md: 0 4px 12px -2px rgba(31,14,24,0.09);
  --shadow-lg: 0 16px 32px -8px rgba(31,14,24,0.12);
  --shadow-xl: 0 32px 64px -16px rgba(31,14,24,0.18);
  --shadow-cta: 0 8px 24px -8px rgba(31, 6, 23, 0.45);
  --g-sunset: linear-gradient(135deg, #FFB088 0%, #E87B2C 30%, #E85C4A 60%, #8B4675 100%);
  --g-plum-rich: linear-gradient(135deg, #8B4675 0%, #5C1E47 60%, #1F0617 100%);
  --g-lantern: linear-gradient(135deg, #E87B2C 0%, #8B4675 60%, #3D0C2E 100%);
  --g-twilight: linear-gradient(135deg, #E85C4A 0%, #C53A6E 50%, #5C1E47 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03', 'cv01';
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.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; }

/* === LOGO LOCKUP (official Swasti Bharat SVG) === */
.logo { display: inline-flex; align-items: center; gap: 0; line-height: 0; }
.logo-mark { display: inline-block; flex-shrink: 0; width: 168px; height: 44px;
  background: url('../brand/swasti-bharat-logo.svg') no-repeat left center / contain; }
.logo-mark.sm { width: 120px; height: 32px; }
.logo-mark.lg { width: 240px; height: 64px; }

/* === OFFER / EVENT MARQUEE BAR === */
.offer-bar { background: linear-gradient(90deg, #5C1E47 0%, #E87B2C 50%, #5C1E47 100%); background-size: 200% 100%; animation: offerSlide 6s linear infinite; color: white; padding: 8px 0; font-size: 12px; font-weight: 700; overflow: hidden; position: relative; }
@keyframes offerSlide { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }
.offer-bar-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; will-change: transform; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.offer-bar-track span { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.04em; }
.offer-bar-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron-bright); }
.offer-bar-track strong { font-weight: 800; }

/* === LANDING NAV === */
.land-nav { background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--line); padding: 14px 0; position: sticky; top: 0; z-index: 90; backdrop-filter: blur(20px); }
.land-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.land-nav .nav-links { display: flex; gap: 4px; align-items: center; }
.land-nav .nav-links a { color: var(--ink-2); font-size: 14px; font-weight: 600; padding: 10px 14px; position: relative; transition: color .2s; }
.land-nav .nav-links a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px; border-radius: 2px; background: var(--g-sunset); background-size: 200% 100%; transform: scaleX(0); transform-origin: left center; transition: transform .35s cubic-bezier(.65,0,.35,1); animation: navShimmer 3.5s linear infinite; }
.land-nav .nav-links a:hover { color: var(--ink); }
.land-nav .nav-links a:hover::after { transform: scaleX(.45); }
@keyframes navShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.land-nav .right { display: flex; align-items: center; gap: 14px; }
.land-nav .trust { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.land-nav .trust strong { color: var(--ink); font-weight: 700; }
.nav-cta-mini { background: var(--saffron); color: white; padding: 9px 18px; border-radius: 8px; font-weight: 800; font-size: 13px; box-shadow: 0 4px 12px -4px rgba(232,123,44,0.5); transition: all .2s; }
.nav-cta-mini:hover { background: var(--saffron-bright); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .2s; }
/* Drawer is hidden entirely on desktop; the mobile media query turns it on. */
.mobile-drawer, .drawer-backdrop { display: none; }

/* === BUTTONS === */
.btn-primary { background: linear-gradient(135deg, var(--plum-mid) 0%, var(--plum-deep) 100%); color: white; font-size: 14px; font-weight: 800; padding: 12px 22px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: all .2s; box-shadow: 0 4px 14px -4px rgba(31,6,23,0.4), inset 0 1px 0 rgba(255,255,255,0.08); display: inline-block; }
.btn-primary:hover { background: linear-gradient(135deg, var(--plum) 0%, var(--plum-darker) 100%); transform: translateY(-2px); }
.btn-saffron { background: var(--saffron); color: white; padding: 12px 22px; border-radius: var(--r-sm); font-weight: 800; font-size: 14px; box-shadow: var(--shadow-cta); display: inline-block; border: none; cursor: pointer; transition: all .2s; }
.btn-saffron:hover { background: var(--saffron-bright); transform: translateY(-2px); }
.btn-secondary { color: var(--ink); border: 2px solid var(--ink); padding: 10px 22px; border-radius: var(--r-sm); font-weight: 700; font-size: 14px; display: inline-block; background: transparent; cursor: pointer; transition: all .2s; }
.btn-secondary:hover { background: var(--ink); color: white; }
.cta-big { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; background: var(--g-plum-rich); color: white; font-size: 15px; font-weight: 800; border-radius: 12px; box-shadow: 0 12px 28px -8px rgba(31,6,23,0.55); transition: all .2s; border: none; cursor: pointer; }
.cta-big:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(31,6,23,0.7); }
.cta-big.saf { background: var(--saffron); box-shadow: 0 12px 28px -8px rgba(232,123,44,0.6); }
.cta-big.saf:hover { background: var(--saffron-bright); }
.cta-big .arrow { transition: transform .2s; }
.cta-big:hover .arrow { transform: translateX(3px); }

/* === SECTION PRIMITIVES === */
.section-pad { padding: 80px 0; }
.sec-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.sec-title { font-family: 'Inter Tight', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); margin: 0 0 14px; }
.sec-title .accent { background: var(--g-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; display: inline-block; padding: 0.05em 0.1em 0.18em 0; margin: -0.05em -0.04em -0.18em 0; }
.sec-sub { font-size: 17px; color: var(--ink-2); line-height: 1.55; max-width: 640px; margin: 0 0 40px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.tag.plum-soft { background: var(--plum-soft); color: var(--plum); }
.tag.saffron-soft { background: var(--saffron-soft); color: var(--saffron-deep); }
.tag.success { background: #DEF7E5; color: var(--jade); }

/* === HERO === */
.hero { padding: 56px 0 64px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 15% 0%, rgba(232,123,44,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 90% 100%, rgba(92,30,71,0.10) 0%, transparent 60%), var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero .badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--saffron-soft); color: var(--saffron-deep); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid rgba(232,123,44,0.25); }
.badge.plum { background: var(--plum-soft); color: var(--plum); border-color: rgba(92,30,71,0.2); }
.badge.live { background: var(--coral); color: white; border-color: var(--coral); }
.badge.live::before { content: '●'; margin-right: 4px; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-family: 'Inter Tight', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; color: var(--ink); margin: 0 0 18px; }
.hero h1 .accent { background: var(--g-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; display: inline-block; padding: 0.05em 0.1em 0.18em 0; margin: -0.05em -0.04em -0.18em 0; }
.hero .lead { font-size: 18px; color: var(--ink-2); line-height: 1.55; max-width: 540px; margin: 0 0 24px; font-weight: 500; }
.hero .quick-stats { display: flex; gap: 28px; margin-bottom: 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.qstat strong { font-family: 'Inter Tight'; font-size: 24px; font-weight: 800; color: var(--ink); display: block; letter-spacing: -0.02em; line-height: 1; }
.qstat span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-top: 4px; display: block; }
.hero .cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cta-sub { font-size: 12px; color: var(--muted); }
.cta-sub strong { color: var(--coral); font-weight: 700; }
.hero-art { position: relative; }
.hero-art .photo { aspect-ratio: 4/5; border-radius: 24px; background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1000&q=85&auto=format&fit=crop') center/cover; box-shadow: 0 32px 80px -20px rgba(31,6,23,0.4); position: relative; overflow: hidden; }
.hero-art .photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(31,6,23,0.25) 100%); border-radius: 24px; }
.float-card { position: absolute; background: white; border-radius: 14px; padding: 12px 14px; box-shadow: 0 20px 40px -12px rgba(31,6,23,0.25); display: flex; align-items: center; gap: 10px; }
.float-card.fc1 { top: 24px; left: -16px; }
.float-card.fc2 { bottom: 32px; right: -16px; }
.float-card .ico-circ { width: 36px; height: 36px; border-radius: 50%; background: var(--saffron-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.float-card .ico-circ.plum { background: var(--plum-soft); }
.float-card .text strong { display: block; font-family: 'Inter Tight'; font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
.float-card .text span { font-size: 11px; color: var(--muted); }

/* === COUNTDOWN === */
.countdown { display: inline-flex; gap: 10px; margin: 22px 0 0; }
.cd-cell { background: var(--plum-darker); color: white; border-radius: var(--r-md); padding: 12px 14px; min-width: 64px; text-align: center; box-shadow: var(--shadow-md); }
.cd-cell strong { font-family: 'Inter Tight'; font-size: 30px; font-weight: 800; line-height: 1; display: block; letter-spacing: -0.02em; }
.cd-cell span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); font-weight: 700; margin-top: 6px; display: block; }
.cd-cell.saf { background: var(--saffron); }

/* === GENERIC FEATURE / "WHAT YOU GET" GRID === */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feature-card { padding: 28px 26px; background: white; border: 1px solid var(--line); border-radius: var(--r-lg); transition: all .2s; }
.feature-card:hover { transform: translateY(-3px); border-color: var(--saffron); box-shadow: 0 16px 32px -10px rgba(232,123,44,0.18); }
.feature-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--saffron-soft); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.feature-card .ico.plum { background: var(--plum-soft); }
.feature-card h4 { font-family: 'Inter Tight'; font-size: 18px; font-weight: 800; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* === ABOUT SPLIT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.section-pad { padding: 80px 0; }
.split-art { aspect-ratio: 4/3; border-radius: var(--r-xl); background-size: cover; background-position: center; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.split-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(31,6,23,0.28) 100%); }
.prose p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin: 0 0 16px; }
.prose p strong { color: var(--ink); }
.pill-list { list-style: none; display: grid; gap: 10px; margin: 20px 0 0; }
.pill-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.pill-list li::before { content: '✓'; color: var(--teal-bright); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* === SESSION DETAILS BAND === */
.session-band { background: var(--g-lantern); color: white; }
.session-band .sec-eyebrow { color: rgba(255,255,255,0.85); }
.session-band .sec-title { color: white; }
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.session-card { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(12px); border-radius: var(--r-lg); padding: 26px 24px; }
.session-card .ico { font-size: 26px; margin-bottom: 12px; }
.session-card .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.session-card .val { font-family: 'Inter Tight'; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.session-card .val small { display: block; font-size: 13px; font-weight: 600; opacity: 0.85; margin-top: 4px; letter-spacing: 0; }

/* === INSTRUCTOR === */
.instructor-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.instructor-photo { aspect-ratio: 4/5; border-radius: var(--r-xl); background-size: cover; background-position: center; box-shadow: var(--shadow-xl); position: relative; }
.instructor-photo .verified { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.95); color: var(--plum); padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; backdrop-filter: blur(8px); }
.instructor-photo .verified::before { content: '✓ '; color: var(--teal-bright); font-weight: 900; }
.instructor-meta { display: flex; gap: 28px; margin: 22px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.instructor-meta .m strong { font-family: 'Inter Tight'; font-size: 22px; font-weight: 800; color: var(--ink); display: block; line-height: 1; }
.instructor-meta .m span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-top: 4px; display: block; }

/* === CERTIFICATE PREVIEW === */
.cert-preview-section { background: var(--bg-soft); }
.cert-stage { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; margin-top: 32px; }
.cert-frame { background: white; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); padding: 14px; border: 1px solid var(--line); transform: rotate(-1.2deg); transition: transform .3s; }
.cert-frame:hover { transform: rotate(0deg) scale(1.01); }
.cert-canvas { aspect-ratio: 1.414/1; border: 2px solid var(--saffron); border-radius: var(--r-md); background:
   radial-gradient(circle at 50% 0%, rgba(232,123,44,0.08), transparent 60%), var(--bg-warm);
   padding: 7% 8%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.cert-canvas::before { content: ''; position: absolute; inset: 10px; border: 1px solid var(--saffron-soft); border-radius: 8px; pointer-events: none; }
.cert-logos { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cert-logos .logo-mark { width: 132px; height: 34px; }
.cert-seal { width: 46px; height: 46px; border-radius: 50%; background: var(--g-lantern); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-md); }
.cert-body { text-align: center; margin: auto 0; }
.cert-body .ttl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron-deep); font-weight: 800; }
.cert-body .name { font-family: 'Fraunces', serif; font-size: clamp(22px, 3.4vw, 40px); font-weight: 600; color: var(--plum); margin: 8px 0; line-height: 1.05; }
.cert-body .desc { font-size: clamp(10px, 1.2vw, 13px); color: var(--ink-2); max-width: 80%; margin: 0 auto; line-height: 1.5; }
.cert-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.cert-foot .sig { text-align: center; }
.cert-foot .sig .line { font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--line-strong); padding: 0 14px 2px; }
.cert-foot .sig small { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.cert-foot .qr { width: 44px; height: 44px; background: #fff; border: 1px solid var(--line); border-radius: 6px; display: grid; place-items: center; font-size: 9px; color: var(--muted); }

/* === REGISTRATION FORM === */
.register-section { background: var(--bg-warm); }
.register-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.register-aside { position: sticky; top: 96px; }
.register-aside .points { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.register-aside .points li { display: flex; gap: 12px; align-items: flex-start; }
.register-aside .points .n { width: 34px; height: 34px; border-radius: 10px; background: var(--saffron-soft); color: var(--saffron-deep); font-weight: 800; font-family: 'Inter Tight'; display: grid; place-items: center; flex-shrink: 0; }
.register-aside .points strong { display: block; font-family: 'Inter Tight'; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.register-aside .points span { font-size: 13px; color: var(--ink-2); line-height: 1.45; }
.form-card { background: white; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 36px 32px; }
.form-card h3 { font-family: 'Inter Tight'; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 4px; }
.form-card .form-sub { font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  font-size: 15px; font-family: inherit; color: var(--ink); background: var(--bg); transition: border-color .15s, box-shadow .15s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,123,44,0.15); }
.field input::placeholder { color: var(--muted-2); }
.field .err-msg { font-size: 12px; color: #B83830; font-weight: 600; display: none; }
.field.has-error input, .field.has-error select { border-color: #B83830; }
.field.has-error .err-msg { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; grid-column: 1 / -1; margin-top: 4px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--saffron); }
.consent label { font-size: 13px; color: var(--ink-2); line-height: 1.45; font-weight: 500; }
.form-actions { grid-column: 1 / -1; margin-top: 8px; }
.form-actions .cta-big { width: 100%; justify-content: center; }
.form-note { grid-column: 1 / -1; font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }
.form-alert { grid-column: 1/-1; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; display: none; }
.form-alert.error { background: #FFE5E1; color: #B83830; display: block; }
.form-alert.ok { background: #DEF7E5; color: var(--jade); display: block; }
.spin { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 32px auto 0; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-item summary { font-family: 'Inter Tight'; font-size: 17px; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; cursor: pointer; list-style: none; letter-spacing: -0.01em; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--saffron-deep); font-size: 26px; font-weight: 300; line-height: 0.6; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 14px 0 0; }
.faq-item p strong { color: var(--ink); }

/* === FINAL CTA === */
.final-cta { padding: 96px 0; background: linear-gradient(135deg, rgba(31,6,23,0.92) 0%, rgba(61,12,46,0.88) 60%, rgba(31,6,23,0.95) 100%), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&q=85&auto=format&fit=crop') center/cover; color: white; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,123,44,0.4) 0%, transparent 60%); }
.final-cta .inner { max-width: 720px; margin: 0 auto; position: relative; }
.final-cta .eyebrow-final { font-size: 12px; font-weight: 800; color: var(--saffron-bright); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.final-cta h2 { font-family: 'Inter Tight'; font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: white; margin: 0 0 18px; }
.final-cta h2 em { font-style: italic; color: var(--saffron-bright); }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.85); margin: 0 0 36px; line-height: 1.55; }
.final-trust { margin-top: 32px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.7); }
.final-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* === FOOTER === */
.footer { background: var(--plum-darker); color: white; padding: 72px 0 32px; }
.footer-links { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.footer-brand .logo-mark { width: 180px; height: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.6; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; }
.footer-social a:hover { background: var(--saffron); }
.footer-col h5 { font-family: 'Inter Tight'; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.5); gap: 16px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: white; }

/* === GENERIC PAGE (verify / static) === */
.page-hero { padding: 64px 0 40px; background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(232,123,44,0.10), transparent 60%), var(--bg); }
.page-hero h1 { font-family: 'Inter Tight'; font-weight: 800; font-size: 48px; line-height: 1.02; letter-spacing: -0.035em; color: var(--ink); }
.page-hero h1 .accent { background: var(--g-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }

/* =====================================================================
   RESPONSIVE — mobile-first hardening. Mobile responsiveness is
   non-negotiable: every grid collapses, nav becomes a drawer, type scales.
   ===================================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 40px; }
  .sec-title, .page-hero h1 { font-size: 32px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .session-grid { grid-template-columns: 1fr; }
  .split, .instructor-wrap, .cert-stage, .register-wrap { grid-template-columns: 1fr; gap: 32px; }
  .register-aside { position: static; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .final-cta h2 { font-size: 34px; }
  .land-nav .nav-links, .land-nav .trust { display: none; }
  .nav-toggle { display: block; }
  /* Mobile drawer */
  .mobile-drawer { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: #fff; z-index: 200; transform: translateX(100%); transition: transform .28s cubic-bezier(.65,0,.35,1); box-shadow: -16px 0 48px -16px rgba(31,6,23,0.3); padding: 24px 22px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a { padding: 12px 8px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-drawer .cta-big { margin-top: 14px; justify-content: center; }
  .drawer-backdrop { display: block; position: fixed; inset: 0; background: rgba(31,6,23,0.4); z-index: 150; opacity: 0; pointer-events: none; transition: opacity .28s; }
  .drawer-backdrop.open { opacity: 1; pointer-events: auto; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 56px 0; }
  .hero { padding: 28px 0 44px; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
  .hero .quick-stats { gap: 16px; }
  .qstat strong { font-size: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .sec-title, .page-hero h1 { font-size: 27px; }
  .sec-sub { font-size: 15px; }
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cd-cell { min-width: 56px; padding: 10px 10px; }
  .cd-cell strong { font-size: 24px; }
  .float-card.fc1 { left: 0; top: 12px; }
  .float-card.fc2 { right: 0; bottom: 12px; }
  .offer-bar-track { gap: 24px; animation-duration: 22s; }
  .hero .cta-row .cta-big { width: 100%; justify-content: center; }
}

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