@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800&family=Source+Code+Pro:wght@400;500;700&display=swap');

:root {
  --bg: #f6f8fc;
  --bg-2: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-tint: #f6f9ff;
  --ink: #061b31;
  --ink-2: #10243d;
  --muted: #64748d;
  --muted-2: #8a9ab0;
  --line: #e5edf5;
  --line-strong: #cbd8e6;
  --brand: #533afd;
  --brand-2: #7c4dff;
  --brand-3: #00d4ff;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --navy: #1c1e54;
  --dark: #081525;
  --ok: #15be53;
  --warn: #d97706;
  --err: #dc2626;
  --radius: 18px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --shadow: rgba(50,50,93,0.22) 0 30px 45px -30px, rgba(0,0,0,0.10) 0 18px 36px -18px;
  --shadow-soft: rgba(23,23,23,0.08) 0 15px 35px 0;
  --shadow-deep: rgba(3,3,39,0.28) 0 28px 64px -24px, rgba(0,0,0,.18) 0 18px 40px -26px;
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: 'Source Code Pro', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -5%, rgba(83, 58, 253, .24), transparent 32rem),
    radial-gradient(circle at 88% 4%, rgba(0, 212, 255, .18), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 48%, #eef3ff 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(rgba(83, 58, 253, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 58, 253, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 72%);
}
a { color: var(--brand); text-decoration: none; transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease; }
a:hover { color: #3323bf; text-decoration: none; }
.muted { color: var(--muted); }
.center { text-align: center; }
strong { color: var(--ink); }
code { font-family: var(--mono); background: #eef2ff; padding: 1px 6px; border-radius: 6px; font-size: .88em; color: #30208d; }
main { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* Header / footer */
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 10px 12px 10px 14px;
  position: sticky; top: 12px; z-index: 20;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(229,237,245,.92);
  border-radius: 18px;
  box-shadow: rgba(50,50,93,.12) 0 16px 34px -22px, rgba(0,0,0,.08) 0 12px 28px -18px;
  backdrop-filter: blur(18px) saturate(1.24);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -.02em; font-size: 1.08rem; }
.brand:hover { transform: translateY(-1px); }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: #fff; background: conic-gradient(from 180deg, var(--brand), var(--magenta), var(--brand-3), var(--brand)); box-shadow: 0 10px 24px rgba(83,58,253,.28); }
.site-header nav { display: flex; gap: 8px; align-items: center; }
.site-header nav a:not(.btn) { color: var(--ink); font-weight: 700; font-size: .95rem; padding: 9px 12px; border-radius: 10px; }
.site-header nav a:not(.btn):hover { background: rgba(83,58,253,.07); color: var(--brand); }
.site-footer {
  width: min(1180px, calc(100% - 32px));
  display: flex; justify-content: space-between; gap: 20px; padding: 26px 6px 42px;
  border-top: 1px solid rgba(203,216,230,.8); margin: 72px auto 0; font-size: .92rem; color: var(--muted);
}
.footer-links { display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a { color: inherit; font-weight:800; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: 8px; font-weight: 800; border: 1px solid transparent; cursor: pointer; font-size: .98rem; line-height: 1; text-align: center; font-family: var(--font); }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), #6e55ff); color: #fff; box-shadow: 0 18px 38px -22px rgba(83,58,253,.9), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-primary:hover { color: #fff; background: linear-gradient(135deg, #4434d4, var(--brand)); box-shadow: 0 22px 44px -22px rgba(83,58,253,1); }
.btn-ghost { background: rgba(255,255,255,.9); color: var(--ink); border-color: #d6dffc; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.btn-ghost:hover { border-color: #b9b9f9; background: rgba(83,58,253,.055); color: var(--brand); }
.btn-small { padding: 9px 13px; font-size: .9rem; border-radius: 8px; }

/* Hero */
.hero { position: relative; text-align: center; padding: 90px 0 42px; }
.hero-clean::before, .hero-clean::after { content: ""; position: absolute; pointer-events: none; filter: blur(.2px); }
.hero-clean::before { width: 430px; height: 430px; right: -210px; top: 72px; background: radial-gradient(circle, rgba(249,107,238,.16), transparent 62%); }
.hero-clean::after { width: 360px; height: 360px; left: -190px; top: 175px; background: radial-gradient(circle, rgba(0,212,255,.16), transparent 60%); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 8px 13px; border: 1px solid rgba(185,185,249,.7); border-radius: 999px; background: rgba(255,255,255,.72); color: #3726bf; font-weight: 900; font-size: .82rem; letter-spacing: .02em; box-shadow: 0 10px 28px -22px rgba(83,58,253,.9); }
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 5px rgba(21,190,83,.12); }
.hero h1 { max-width: 920px; margin: 0 auto 18px; font-size: clamp(3rem, 7.2vw, 6.65rem); line-height: .91; font-weight: 300; letter-spacing: -0.07em; color: var(--ink); }
.grad { background: linear-gradient(100deg, #3021c6 0%, var(--brand) 34%, var(--magenta) 78%, var(--ruby) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(1.12rem, 2.1vw, 1.42rem); line-height: 1.35; color: var(--muted); max-width: 790px; margin: 0 auto 28px; font-weight: 300; }
.hero-panel { position: relative; max-width: 850px; margin: 0 auto; padding: 12px; border: 1px solid rgba(229,237,245,.95); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.hero-panel::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(110deg, rgba(83,58,253,.52), rgba(0,212,255,.22), rgba(249,107,238,.42)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.audit-form { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; max-width: 100%; margin: 0 auto; }
.audit-form input { min-width: 0; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; font-size: 1.02rem; background: #fff; color: var(--ink); font-family: var(--font); box-shadow: inset 0 1px 1px rgba(6,27,49,.035); }
.audit-form input::placeholder { color: #98a7ba; }
.audit-form input:focus { outline: 3px solid rgba(83,58,253,.14); border-color: var(--brand); }
.form-hint { margin: 13px 0 0; font-size: .95rem; }
.hero-steps { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-steps span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(229,237,245,.92); color: #31435a; font-size: .92rem; box-shadow: rgba(50,50,93,.10) 0 12px 24px -20px; }
.hero-steps strong { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #eef2ff, #fff); color: var(--brand); font-size: .72rem; border: 1px solid #dbe3ff; }
.held-banner { margin: 28px auto 0; max-width: 720px; background: rgba(255,251,235,.9); border: 1px solid #fde68a; color: #92400e; padding: 12px 16px; border-radius: 12px; font-size: .94rem; }

/* Product preview + landing sections */
.product-stage { position: relative; margin: 42px auto 14px; max-width: 1040px; border-radius: 30px; padding: 1px; background: linear-gradient(135deg, rgba(83,58,253,.55), rgba(0,212,255,.30), rgba(249,107,238,.42)); box-shadow: var(--shadow-deep); }
.product-frame { border-radius: 29px; overflow: hidden; background: #071526; color: #fff; border: 1px solid rgba(255,255,255,.10); }
.product-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,.065); border-bottom: 1px solid rgba(255,255,255,.10); font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.68); }
.dots { display: inline-flex; gap: 7px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; display: block; }
.dots i:nth-child(2) { background: #febc2e; } .dots i:nth-child(3) { background: #28c840; }
.product-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; padding: 22px; }
.preview-card { background: rgba(255,255,255,.96); color: var(--ink); border-radius: 18px; padding: 22px; box-shadow: rgba(0,0,0,.22) 0 22px 60px -36px; }
.preview-card.dark { background: linear-gradient(135deg, rgba(28,30,84,.92), rgba(8,21,38,.94)); color: #fff; border: 1px solid rgba(255,255,255,.10); }
.preview-card h3 { margin: 4px 0 12px; font-size: 1.35rem; font-weight: 300; letter-spacing: -.03em; }
.preview-score { display: flex; align-items: end; gap: 10px; margin: 16px 0; }
.preview-score strong { font-size: 4.2rem; line-height: .85; letter-spacing: -.06em; color: var(--brand); }
.preview-score span { color: var(--muted); font-weight: 800; margin-bottom: 7px; }
.mini-bars { display: grid; gap: 10px; }
.mini-bars div { display: grid; grid-template-columns: 95px 1fr 34px; align-items: center; gap: 9px; font-size: .85rem; color: #334155; }
.mini-bars i { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-3)); display: block; }
.toolkit-list { display: grid; gap: 9px; margin-top: 14px; }
.toolkit-list span { display: flex; justify-content: space-between; gap: 10px; padding: 10px 11px; border: 1px solid rgba(255,255,255,.10); border-radius: 10px; background: rgba(255,255,255,.07); font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.86); }
.pillars { padding: 54px 0; }
.pillars h2, .pricing-head h1, .section-title-row h2, .dash-head h1 { font-weight: 300; letter-spacing: -.045em; color: var(--ink); }
.pillars h2 { text-align: center; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; margin: 8px auto 30px; max-width: 720px; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar-card { position: relative; overflow: hidden; background: rgba(255,255,255,.82); border: 1px solid rgba(229,237,245,.95); border-radius: 22px; padding: 24px; box-shadow: rgba(23,23,23,.06) 0 14px 32px; min-height: 198px; }
.pillar-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -52px; top: -56px; background: radial-gradient(circle, rgba(83,58,253,.16), transparent 68%); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: #eef2ff; color: var(--brand); font-size: 1.35rem; border: 1px solid #dbe3ff; }
.pillar-card h3 { font-size: 1.18rem; line-height: 1.05; margin: 18px 0 8px; font-weight: 600; letter-spacing: -.02em; }
.pillar-card p { font-size: .96rem; margin: 0; }
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 36px; }
.proof-strip div { position: relative; overflow: hidden; background: rgba(255,255,255,.84); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-soft); }
.proof-strip div::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-3), var(--magenta)); }
.proof-strip strong { display: block; font-size: 1.25rem; letter-spacing: -.025em; }
.proof-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: .96rem; }
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 28px; background: linear-gradient(135deg, var(--navy), #0b1630); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; padding: 34px; margin: 28px 0; color: #fff; box-shadow: var(--shadow-deep); overflow: hidden; position: relative; }
.cta-strip::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; top: -145px; background: radial-gradient(circle, rgba(249,107,238,.24), transparent 62%); }
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { margin: 0 0 8px; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1; font-weight: 300; letter-spacing: -.04em; color: #fff; }
.cta-strip p { margin: 0; color: rgba(255,255,255,.68); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-strip .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }

/* Auth / narrow forms */
.narrow { max-width: 500px; margin: 72px auto; background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.narrow h1 { font-size: 2rem; font-weight: 300; letter-spacing: -.04em; }
.stack-form { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.stack-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 800; color: #273951; }
.stack-form input { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 1rem; font-family: var(--font); background: #fff; }
.stack-form input:focus { outline: 3px solid rgba(83,58,253,.14); border-color: var(--brand); }
.stack-form .btn { width: 100%; }
.error { background: #fef2f2; border: 1px solid #fecaca; color: var(--err); padding: 10px 14px; border-radius: 10px; }
.dev-box { margin-top: 22px; background: #f8fbff; border: 1px dashed #94a3b8; border-radius: 14px; padding: 16px; word-break: break-all; }
.auth-shell { display: grid; grid-template-columns: minmax(0, 1fr) 450px; gap: 42px; align-items: center; padding: 76px 0 34px; }
.auth-shell-single { grid-template-columns: minmax(0, 580px); justify-content: center; }
.auth-copy h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .92; margin: 10px 0 16px; letter-spacing: -.065em; font-weight: 300; }
.auth-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.auth-proof-grid div { border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: rgba(255,255,255,.78); box-shadow: rgba(23,23,23,.05) 0 10px 28px; }
.auth-proof-grid strong { display: block; }
.auth-proof-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: .84rem; line-height: 1.35; }
.auth-card { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.auth-card-centered { text-align: center; }
.auth-card h1, .auth-card h2 { margin: 12px 0 6px; font-weight: 300; letter-spacing: -.035em; }
.small-copy { font-size: .94rem; margin-top: 0; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: #eef3fb; border-radius: 14px; padding: 5px; }
.auth-tabs a { color: #475569; font-weight: 800; text-align: center; padding: 10px; border-radius: 10px; }
.auth-tabs a.active { background: #fff; color: var(--ink); box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; color: var(--ink); background: #fff; border-color: #cbd5e1; }
.g-mark { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 1px solid #cbd5e1; color: #4285f4; font-weight: 900; font-family: Arial, sans-serif; }
.oauth-disabled { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 11px 13px; border: 1px dashed #cbd5e1; border-radius: 12px; color: #64748b; background: #f8fafc; font-size: .9rem; }
.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 4px; color: #94a3b8; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.auth-footnote { font-size: .8rem; margin-bottom: 0; }

/* Pricing */
.pricing-head { text-align: center; padding: 72px 0 18px; }
.pricing-head h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: .9; margin: 0 auto 14px; max-width: 840px; }
.pricing-head p { font-size: 1.18rem; max-width: 650px; margin: 0 auto; }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 30px 0 44px; align-items: stretch; }
.plan-card { position: relative; overflow: hidden; background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 24px; padding: 28px 22px 22px; display: flex; flex-direction: column; box-shadow: rgba(23,23,23,.06) 0 16px 36px; transform: translateY(0) scale(1); transition: transform .34s cubic-bezier(.16,1,.3,1), border-color .34s ease, box-shadow .34s ease, background .34s ease; will-change: transform; }
.plan-card::before { content: ""; position: absolute; inset: -1px; opacity: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.82) 26%, rgba(249,107,238,.22) 42%, transparent 58%); transform: translateX(-120%) skewX(-16deg); transition: opacity .24s ease; pointer-events: none; z-index: 0; }
.plan-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -118px; top: -116px; background: radial-gradient(circle, rgba(83,58,253,.16), transparent 64%); opacity: .86; transform: scale(.92); transition: transform .34s cubic-bezier(.16,1,.3,1), opacity .34s ease, background .34s ease; pointer-events: none; }
.plan-card:hover { transform: translateY(-14px) scale(1.025); border-color: rgba(83,58,253,.44); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.94)); box-shadow: rgba(50,50,93,.28) 0 38px 72px -34px, rgba(83,58,253,.18) 0 0 0 1px, rgba(249,107,238,.16) 0 0 54px -22px; }
.plan-card:hover::before { opacity: 1; animation: planShine .92s cubic-bezier(.16,1,.3,1) both; }
.plan-card:hover::after { opacity: 1; transform: scale(1.18); background: radial-gradient(circle, rgba(83,58,253,.22), rgba(249,107,238,.12) 42%, transparent 68%); }
.plan-card.featured { transform: translateY(-10px); border-color: rgba(83,58,253,.5); box-shadow: rgba(50,50,93,.22) 0 34px 58px -36px, rgba(83,58,253,.16) 0 0 0 1px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,255,.96)); }
.plan-card.featured:hover { transform: translateY(-22px) scale(1.025); }
.plan-card > * { position: relative; z-index: 1; }
.badge { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--ruby), var(--magenta)); color: #fff; font-size: .72rem; font-weight: 900; padding: 5px 10px; border-radius: 999px; box-shadow: 0 12px 24px -18px rgba(234,34,97,.9); transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease; }
.plan-card:hover .badge { transform: translateY(-2px) scale(1.06); box-shadow: 0 16px 32px -18px rgba(234,34,97,1), 0 0 28px rgba(249,107,238,.28); }
.plan-card h3 { margin: 8px 0 10px; font-size: 1.35rem; font-weight: 600; letter-spacing: -.03em; }
.price { font-size: 2.75rem; line-height: .9; font-weight: 300; letter-spacing: -.055em; color: var(--ink); }
.cadence { font-size: .98rem; font-weight: 700; margin-left: 4px; letter-spacing: 0; }
.included { color: var(--brand); font-weight: 900; margin: 14px 0 16px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-card li { padding: 7px 0 7px 24px; position: relative; font-size: .95rem; color: #41516a; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--ok); font-weight: 900; transition: transform .24s cubic-bezier(.16,1,.3,1), color .24s ease; }
.plan-card:hover li::before { transform: scale(1.18) rotate(-8deg); color: #12b76a; }
.plan-card .btn { transition: transform .24s cubic-bezier(.16,1,.3,1), box-shadow .24s ease, background .24s ease, border-color .24s ease; }
.plan-card:hover .btn { transform: translateY(-2px); box-shadow: 0 18px 34px -24px rgba(83,58,253,.75); }
@keyframes planShine { 0% { transform: translateX(-125%) skewX(-16deg); } 100% { transform: translateX(125%) skewX(-16deg); } }
@media (prefers-reduced-motion: reduce) { .plan-card, .plan-card::before, .plan-card::after, .plan-card .btn, .plan-card li::before, .badge { transition: none !important; animation: none !important; } }
.checkout-form { margin: 0; }
.checkout-form .btn, .plan-card > .btn { width: 100%; }
.addon-note { margin: 0 auto; max-width: 820px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); text-align: center; box-shadow: var(--shadow-soft); }

/* Dashboard */
.dash-head { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; margin: 42px 0 22px; }
.dash-head h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin: 0 0 4px; line-height: .92; }
.pill { display: inline-flex; align-items: center; background: #eef2ff; color: var(--brand); padding: 3px 10px; border-radius: 999px; font-size: .84rem; font-weight: 900; border: 1px solid #dbe3ff; }
.billing-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; margin: 18px 0 24px; padding: 14px; background: rgba(255,255,255,.74); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.billing-summary > div { padding: 14px; border-radius: 16px; background: rgba(246,249,255,.78); border: 1px solid rgba(229,237,245,.9); }
.billing-summary strong { font-size: 1.28rem; letter-spacing: -.025em; }
.billing-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; align-items: center; }
.run-inline { margin: 24px 0; padding: 16px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); }
.dashboard-note { margin: 18px 0; padding: 13px 15px; background: linear-gradient(90deg, rgba(238,242,255,.92), rgba(240,253,255,.86)); border: 1px solid #c7d2fe; border-radius: 14px; color: #3730a3; font-weight: 900; font-size: .94rem; }
.latest-score-card { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; margin: 22px 0; padding: 20px; background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,249,255,.88)); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.latest-score-card h2 { margin: 2px 0 4px; font-size: 1.35rem; font-weight: 600; letter-spacing: -.025em; }
.eyebrow { margin: 0; color: var(--brand); text-transform: uppercase; letter-spacing: .105em; font-size: .74rem; font-weight: 900; }
.latest-score-value { min-width: 106px; text-align: center; padding: 13px 16px; border-radius: 18px; background: linear-gradient(135deg, var(--dark), var(--navy)); color: white; box-shadow: var(--shadow-deep); }
.latest-score-value span { display: block; font-size: 2.45rem; font-weight: 300; letter-spacing: -.05em; line-height: .9; }
.latest-score-value small { display: block; margin-top: 4px; opacity: .74; font-weight: 900; }
.audit-section { margin-top: 26px; }
.audit-section-primary { margin-top: 20px; }
.section-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 12px; }
.section-title-row h2 { margin: 0 0 2px; font-size: 2rem; }
.section-title-row p { margin: 0; }
.audit-history { margin-top: 24px; background: rgba(255,255,255,.62); border: 1px dashed #b9c8dc; border-radius: 20px; padding: 14px 16px 18px; }
.audit-history summary { cursor: pointer; font-weight: 900; color: #334155; }
.history-note { margin: 10px 0 0; font-size: .92rem; }
.audits-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 12px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: rgba(23,23,23,.045) 0 12px 28px; }
.audits-table th, .audits-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); font-size: .94rem; vertical-align: middle; }
.audits-table th { background: #f6f9ff; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 900; }
.audits-table tr:last-child td { border-bottom: none; }
.audit-row:hover td { background: rgba(83,58,253,.035); }
.audit-link { font-weight: 900; color: var(--ink); }
.audit-view { font-weight: 900; white-space: nowrap; }
.score-cell { font-variant-numeric: tabular-nums; font-weight: 900; }
.status, .type-pill, .engine-pill, .research-pill { display: inline-flex; align-items: center; font-size: .78rem; font-weight: 900; padding: 3px 9px; border-radius: 999px; white-space: nowrap; border: 1px solid transparent; }
.status-queued { background: #fef9c3; color: #854d0e; border-color: #fde68a; }
.status-running { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.status-complete { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.status-error { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.type-full { background: #ede9fe; color: #5b21b6; border-color: #ddd6fe; }
.type-quick { background: #e0f2fe; color: #075985; border-color: #bae6fd; }
.engine-pill { background: #f1f5f9; color: #334155; border-color: #e2e8f0; font-family: var(--mono); font-size: .72rem; }
.research-pill { background:#f8fafc; color:#334155; border-color:#e2e8f0; }
.research-running, .research-pending { background:#fffbeb; color:#92400e; border-color:#fde68a; }
.research-complete { background:#ecfdf5; color:#047857; border-color:#a7f3d0; }
.research-error { background:#fff1f2; color:#be123c; border-color:#fecdd3; }
.engine-legacy { background: #fff7ed; color: #9a3412; border-color: #fed7aa; }
.empty { padding: 34px 0; text-align: center; }

/* Dashboard — visually aligned with the dark GeoMaxed landing page */
body:has(.dash-head) {
  --dash-cream:#f4efe3;
  --dash-coral:#e37965;
  --dash-peach:#e7b39e;
  --dash-olive:#505a45;
  --dash-ink:#111112;
  --dash-panel:#161616;
  --dash-line:rgba(244,239,227,.12);
  color: var(--dash-cream);
  background:
    radial-gradient(circle at 84% 5%, rgba(241,203,172,.34), transparent 22rem),
    radial-gradient(circle at 18% 20%, rgba(98,119,95,.20), transparent 28rem),
    radial-gradient(circle at 52% 58%, rgba(222,111,86,.24), transparent 31rem),
    #11110f;
}
body:has(.dash-head)::before { background-image: radial-gradient(circle at center, rgba(245,240,232,.08) 1px, transparent 1px); background-size:22px 22px; mask-image:linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%); }
body:has(.dash-head) main { width:min(1180px, calc(100vw - 48px)); max-width:none; margin:0 auto; padding:34px 0 0; }
body:has(.dash-head) .site-footer { color:rgba(244,239,227,.55); border-color:rgba(244,239,227,.10); }
body:has(.dash-head) .dash-head { margin:28px 0 22px; padding:30px 28px; border:1px solid var(--dash-line); border-radius:16px; background:#121214; background-image:radial-gradient(circle at center, rgba(244,239,227,.055) 1px, transparent 1px); background-size:18px 18px; box-shadow:0 36px 120px rgba(0,0,0,.48), 0 0 120px rgba(232,139,109,.10); position:relative; overflow:hidden; }
body:has(.dash-head) .dash-head::after { content:""; position:absolute; width:320px; height:320px; right:-110px; top:-150px; border-radius:50%; background:rgba(232,170,143,.33); filter:blur(38px); pointer-events:none; }
body:has(.dash-head) .dash-head > * { position:relative; z-index:1; }
body:has(.dash-head) .dash-head h1 { color:var(--dash-cream); font-size:clamp(3rem, 7vw, 6.4rem); line-height:.86; letter-spacing:-.085em; }
body:has(.dash-head) .dash-head .muted, body:has(.dash-head) .muted { color:rgba(244,239,227,.58); }
body:has(.dash-head) strong { color:var(--dash-cream); }
body:has(.dash-head) .pill { background:rgba(227,121,101,.14); color:var(--dash-peach); border-color:rgba(227,121,101,.34); }
body:has(.dash-head) .btn-primary { background:var(--dash-cream); color:#111; border-color:transparent; box-shadow:0 20px 42px rgba(0,0,0,.22); }
body:has(.dash-head) .btn-primary:hover { background:#fff6e7; color:#111; }
body:has(.dash-head) .btn-ghost { background:rgba(244,239,227,.06); color:var(--dash-cream); border-color:rgba(244,239,227,.16); box-shadow:none; }
body:has(.dash-head) .btn-ghost:hover { background:rgba(244,239,227,.12); color:#fff6e7; border-color:rgba(244,239,227,.30); }
body:has(.dash-head) .billing-summary,
body:has(.dash-head) .run-inline,
body:has(.dash-head) .latest-score-card,
body:has(.dash-head) .audit-history { background:rgba(18,18,20,.78); border-color:var(--dash-line); box-shadow:0 26px 80px rgba(0,0,0,.34), 0 0 80px rgba(227,121,101,.07); backdrop-filter:blur(14px); }
body:has(.dash-head) .billing-summary > div { background:rgba(244,239,227,.055); border-color:rgba(244,239,227,.10); }
body:has(.dash-head) .eyebrow { color:var(--dash-coral); }
body:has(.dash-head) .audit-form input { background:rgba(244,239,227,.94); color:#171615; border-color:rgba(244,239,227,.20); }
body:has(.dash-head) .form-hint a, body:has(.dash-head) .audit-link, body:has(.dash-head) .audit-view { color:var(--dash-peach); }
body:has(.dash-head) .dashboard-note { background:linear-gradient(90deg, rgba(227,121,101,.14), rgba(80,90,69,.14)); border-color:rgba(227,121,101,.30); color:#f8dccf; }
body:has(.dash-head) .latest-score-value { background:linear-gradient(145deg, var(--dash-coral), #7b493c); color:#fff6e7; }
body:has(.dash-head) .section-title-row h2 { color:var(--dash-cream); }
body:has(.dash-head) .audits-table { background:rgba(18,18,20,.84); border-color:var(--dash-line); box-shadow:0 26px 80px rgba(0,0,0,.30); }
body:has(.dash-head) .audits-table th { background:rgba(244,239,227,.06); color:rgba(244,239,227,.58); border-color:var(--dash-line); }
body:has(.dash-head) .audits-table td { border-color:var(--dash-line); color:rgba(244,239,227,.78); }
body:has(.dash-head) .audit-row:hover td { background:rgba(227,121,101,.075); }
body:has(.dash-head) .status-complete, body:has(.dash-head) .research-complete { background:rgba(80,90,69,.32); color:#dbe7c7; border-color:rgba(146,163,118,.35); }
body:has(.dash-head) .status-running, body:has(.dash-head) .research-running, body:has(.dash-head) .research-pending { background:rgba(227,121,101,.16); color:#f2c4b8; border-color:rgba(227,121,101,.34); }
body:has(.dash-head) .type-full { background:rgba(227,121,101,.18); color:#f3c3b6; border-color:rgba(227,121,101,.34); }
body:has(.dash-head) .type-quick { background:rgba(80,90,69,.24); color:#d7dfc4; border-color:rgba(120,137,98,.30); }
body:has(.dash-head) .engine-pill, body:has(.dash-head) .research-pill { background:rgba(244,239,227,.075); color:rgba(244,239,227,.72); border-color:rgba(244,239,227,.14); }

/* Scoped result page */
.result-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin: 2rem 0; }
.result-head h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: .98; font-weight: 300; letter-spacing: -.05em; }
.score-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 118px; height: 118px; border-radius: 22px; background: linear-gradient(135deg, var(--dark), var(--navy)); color: #fff; flex: none; box-shadow: var(--shadow-deep); }
.score-num { font-size: 2.75rem; font-weight: 300; line-height: .9; letter-spacing: -.05em; }
.score-grade { font-size: 1rem; opacity: .8; margin-top: .25rem; font-weight: 900; }
.score-badge.grade-a { background: #15803d; } .score-badge.grade-b { background: #4d7c0f; }
.score-badge.grade-c { background: #b45309; } .score-badge.grade-d { background: #c2410c; }
.score-badge.grade-f { background: #b91c1c; }
.result-summary { background: rgba(255,255,255,.82); border-left: 4px solid var(--brand); padding: 1rem 1.15rem; border-radius: 12px; color: #334155; box-shadow: var(--shadow-soft); }
.pillar-row { display: flex; align-items: center; gap: .9rem; margin: .68rem 0; }
.pillar-label { width: 190px; flex: none; font-size: .94rem; color: #334155; font-weight: 800; }
.bar { flex: 1; height: 12px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-3)); transition: width .4s ease; }
.bar-fill.grade-a { background: #15803d; } .bar-fill.grade-b { background: #65a30d; }
.bar-fill.grade-c { background: #d97706; } .bar-fill.grade-d { background: #ea580c; }
.bar-fill.grade-f { background: #dc2626; }
.pillar-val { width: 38px; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 900; }
.finding-list { list-style: none; counter-reset: f; padding: 0; }
.finding { border: 1px solid var(--line); border-radius: 18px; padding: 1.05rem 1.25rem; margin: .9rem 0; background: rgba(255,255,255,.82); box-shadow: rgba(23,23,23,.045) 0 12px 28px; }
.finding-head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.finding h3 { margin: 0; letter-spacing: -.02em; }
.sev { font-size: .7rem; text-transform: uppercase; font-weight: 900; padding: .16rem .5rem; border-radius: 7px; letter-spacing: .04em; }
.sev-critical { background: #fee2e2; color: #b91c1c; } .sev-high { background: #ffedd5; color: #c2410c; }
.sev-opt { background: #e0e7ff; color: #4338ca; }
.pillar-tag { font-size: .78rem; color: #64748b; margin-left: auto; font-weight: 800; }
.finding-evidence { color: #475569; margin: .6rem 0 .35rem; font-size: .94rem; }
.finding-fix { color: var(--ink); margin: .35rem 0 0; font-size: .94rem; }
.locked { margin: 2.3rem 0; }
.locked-card { border: 1px dashed #b9c8dc; border-radius: 18px; padding: 1.5rem; text-align: center; background: rgba(255,255,255,.74); box-shadow: var(--shadow-soft); }
.locked-card .btn[disabled] { opacity: .55; cursor: not-allowed; }
.result-pending { text-align: center; padding: 60px 0; }
.spinner { width: 42px; height: 42px; margin: 1.5rem auto; border: 4px solid #e2e8f0; border-top-color: var(--brand); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1060px) {
  .pillar-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .billing-summary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  main { padding: 0 18px; }
  .site-header { align-items: flex-start; flex-direction: column; width: min(100% - 24px, 1180px); }
  .site-header nav { flex-wrap: wrap; }
  .hero { padding-top: 64px; }
  .audit-form { grid-template-columns: 1fr; }
  .proof-strip, .auth-proof-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .auth-shell { grid-template-columns: 1fr; padding-top: 42px; }
  .dash-head, .latest-score-card { grid-template-columns: 1fr; }
  .billing-actions { justify-content: flex-start; }
  .audits-table { display: block; overflow-x: auto; white-space: nowrap; }
  .result-head { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .pillar-grid, .plan-grid, .billing-summary { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .product-grid { padding: 14px; }
  .preview-card { padding: 18px; }
  .mini-bars div { grid-template-columns: 72px 1fr 28px; }
  .pillar-row { align-items: flex-start; flex-direction: column; }
  .pillar-label, .pillar-val { width: auto; }
  .bar { width: 100%; }
}

/* Dribbble-inspired GeoMaxed landing page */
.site-header {
  background: rgba(13, 13, 13, .66);
  border-color: rgba(255,255,255,.11);
  color: #f5f0e8;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.site-header .brand, .site-header nav a:not(.btn) { color: rgba(245,240,232,.82); }
.site-header nav a:not(.btn):hover { background: rgba(245,240,232,.08); color: #fff6e7; }
.site-header .brand-mark { background: #f2eee4; color: #111; box-shadow: 0 0 36px rgba(242,238,228,.16); }
.site-header .btn-primary { background: #f2eee4; color: #111; box-shadow: 0 20px 42px rgba(0,0,0,.22); }
body:has(.gm-home) {
  color: #f3efe5;
  background:
    radial-gradient(circle at 84% 5%, rgba(241, 203, 172, .34), transparent 22rem),
    radial-gradient(circle at 18% 20%, rgba(98, 119, 95, .20), transparent 28rem),
    radial-gradient(circle at 52% 58%, rgba(222, 111, 86, .24), transparent 31rem),
    #11110f;
}
body:has(.gm-home)::before {
  background-image:
    radial-gradient(circle at center, rgba(245,240,232,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%);
}
body:has(.gm-home) main { max-width: none; padding: 0; }
body:has(.gm-home) .site-footer { color: rgba(245,240,232,.55); border-color: rgba(245,240,232,.10); }
.gm-home { --cream:#f4efe3; --muted-warm:rgba(244,239,227,.62); --ink-dark:#111112; --line-warm:rgba(244,239,227,.12); --coral:#e37965; --peach:#e7b39e; --olive:#505a45; font-family: var(--font); padding: 38px 24px 0; }
.gm-stage { width: min(1120px, calc(100vw - 48px)); margin: 0 auto; border-radius: 14px; overflow: hidden; position: relative; border: 1px solid rgba(244,239,227,.10); box-shadow: 0 36px 120px rgba(0,0,0,.48), 0 0 120px rgba(232,139,109,.10); }
.gm-hero-stage { min-height: 760px; background: #121214; background-image: radial-gradient(circle at center, rgba(244,239,227,.06) 1px, transparent 1px); background-size: 18px 18px; padding: 30px 28px 146px; display: grid; grid-template-rows: auto 1fr; }
.gm-ambient { position: absolute; border-radius: 50%; filter: blur(38px); pointer-events: none; opacity: .46; }
.gm-ambient-one { width: 360px; height: 360px; right: -110px; top: -80px; background: rgba(232, 170, 143, .44); }
.gm-ambient-two { width: 380px; height: 380px; left: -120px; bottom: -130px; background: rgba(70, 88, 70, .36); }
.gm-stage-nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,239,227,.50); }
.gm-wordmark { color: var(--cream); display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.gm-wordmark:hover { color: var(--cream); }
.gm-star { font-size: 18px; color: var(--cream); text-shadow: 0 0 18px rgba(244,239,227,.35); }
.gm-stage-links { display: flex; align-items: center; gap: clamp(24px, 6vw, 94px); }
.gm-stage-links a { color: rgba(244,239,227,.46); }
.gm-stage-links a:hover { color: var(--cream); }
.gm-hero-copy { position: relative; z-index: 2; align-self: center; max-width: none; padding-top: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 390px); column-gap: clamp(36px, 7vw, 84px); align-items: end; transform: translateY(-70px); }
.gm-kicker, .gm-section-label { display: inline-flex; align-items: center; gap: 9px; color: rgba(244,239,227,.62); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.gm-hero-copy .gm-kicker { grid-column: 1 / -1; align-self: start; }
.gm-kicker span, .gm-section-label span { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 18px rgba(227,121,101,.8); }
.gm-hero-copy h1 { width: max-content; max-width: min(620px, 100%); margin: 78px 0 0; color: var(--cream); font-size: clamp(4.2rem, 8.4vw, 8rem); line-height: .84; letter-spacing: -.092em; font-weight: 300; }
.gm-hero-copy h1 span, .gm-hero-copy h1 em { display: block; font-style: normal; }
.gm-hero-copy h1 em { color: rgba(244,239,227,.82); }
.gm-hero-copy p { position: relative; right: auto; bottom: auto; max-width: 390px; margin: 0 0 18px; color: rgba(244,239,227,.62); font-size: 1.1rem; line-height: 1.34; font-weight: 600; }
.gm-hero-copy p strong { color: var(--cream); }
.gm-hero-action-row { position: absolute; z-index: 4; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.gm-audit-form { width: min(620px, 100%); display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; padding: 8px; border: 1px solid rgba(244,239,227,.10); border-radius: 999px; background: rgba(244,239,227,.06); backdrop-filter: blur(14px); }
.gm-audit-form input { min-width: 0; border: 0; outline: 0; border-radius: 999px; padding: 13px 16px; background: rgba(0,0,0,.32); color: var(--cream); font: inherit; }
.gm-audit-form input::placeholder { color: rgba(244,239,227,.34); }
.gm-btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 18px; border: 1px solid rgba(244,239,227,.16); font-weight: 900; line-height: 1; cursor: pointer; font-family: var(--font); white-space: nowrap; }
.gm-btn-light { background: var(--cream); color: #111; box-shadow: 0 18px 44px rgba(244,239,227,.14); }
.gm-btn-light:hover { color: #111; transform: translateY(-1px); }
.gm-btn-outline { color: var(--cream); background: rgba(244,239,227,.06); }
.gm-btn-outline:hover { color: var(--cream); border-color: rgba(244,239,227,.34); background: rgba(244,239,227,.10); }
.gm-hero-action-row p { margin: 0 0 10px; color: rgba(244,239,227,.56); max-width: 360px; font-size: .92rem; }
.gm-hero-steps { position:absolute; z-index:4; left:28px; right:28px; bottom:128px; display:flex; flex-wrap:wrap; gap:10px; }
.gm-hero-steps span { display:inline-flex; align-items:center; gap:7px; padding:8px 11px; border:1px solid rgba(244,239,227,.12); border-radius:999px; background:rgba(244,239,227,.07); color:rgba(244,239,227,.74); font-size:.82rem; font-weight:700; backdrop-filter:blur(12px); }
.gm-hero-steps b { display:inline-grid; place-items:center; width:20px; height:20px; border-radius:50%; background:var(--cream); color:#171615; font-size:.72rem; }
.gm-mark-wrap { position: absolute; z-index: 1; left: 50%; top: 40%; width: 250px; height: 230px; transform: translate(-50%, -50%); animation: gmFloat 7s ease-in-out infinite; }
.gm-shape { position: absolute; width: 84px; height: 84px; background: var(--coral); border-radius: 50% 50% 10% 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.gm-shape-a { left: 67px; top: 72px; transform: rotate(45deg); }
.gm-shape-b { left: 117px; top: 78px; transform: rotate(-42deg); }
.gm-shape-c { left: 108px; top: 31px; transform: rotate(135deg); }
.gm-shape-d { left: 65px; top: 119px; transform: rotate(-137deg); }
.gm-spark { position: absolute; color: var(--cream); font-size: 84px; line-height: 1; text-shadow: 0 0 35px rgba(244,239,227,.22); }
.gm-spark.s1 { left: 14px; top: 55px; }.gm-spark.s2 { right: 16px; top: 74px; }.gm-spark.s3 { left: 55px; bottom: 4px; }
@keyframes gmFloat { 0%,100% { transform: translate(-50%,-50%) rotate(-2deg); } 50% { transform: translate(-50%,calc(-50% - 14px)) rotate(2deg); } }
@keyframes gmCardSlideIn {
  from { opacity: 0; transform: translate3d(0, 72px, 0) scale(.96); filter: blur(12px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}
@supports (animation-timeline: view()) {
  .gm-capability-card,
  .gm-process-item,
  .gm-final-cta .gm-final-mark,
  .gm-final-cta h2,
  .gm-final-cta p,
  .gm-final-actions {
    opacity: 0;
    transform: translate3d(0, 72px, 0) scale(.96);
    filter: blur(12px);
    animation-name: gmCardSlideIn;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.16, 1, .3, 1);
    animation-timeline: view();
    animation-range: entry 4% cover 34%;
  }
  .gm-capability-card:nth-child(2), .gm-process-item:nth-child(2), .gm-final-cta h2 { animation-range: entry 10% cover 40%; }
  .gm-capability-card:nth-child(3), .gm-process-item:nth-child(3), .gm-final-cta p { animation-range: entry 16% cover 46%; }
  .gm-process-item:nth-child(4), .gm-final-actions { animation-range: entry 22% cover 52%; }
  .gm-process-item:nth-child(5) { animation-range: entry 28% cover 58%; }
}
.gm-hero-bottom { display:none; }
.gm-held { width: min(1120px, calc(100vw - 48px)); margin: 18px auto 0; color: #f8ddb2; background: rgba(217,119,6,.12); border: 1px solid rgba(217,119,6,.34); padding: 12px 16px; border-radius: 12px; }
.gm-strip { width: min(1120px, calc(100vw - 48px)); margin: 26px auto; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.gm-strip span { color: rgba(244,239,227,.58); border: 1px solid rgba(244,239,227,.10); border-radius: 999px; padding: 8px 12px; background: rgba(244,239,227,.045); font-size: .84rem; font-weight: 800; }
.gm-entity-stage { margin-top: 26px; padding: 46px 28px; background: linear-gradient(135deg, rgba(244,239,227,.08), rgba(227,121,101,.06)), #121214; color: var(--cream); }
.gm-entity-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:46px; align-items:start; margin-top:20px; }
.gm-entity-layout h2 { margin:0; color:var(--cream); font-size:clamp(2.5rem,5vw,4.8rem); line-height:.92; letter-spacing:-.075em; font-weight:300; }
.gm-entity-layout p { margin:0 0 16px; color:rgba(244,239,227,.64); font-size:1.05rem; line-height:1.5; font-weight:600; }
.gm-solution-stage { background: linear-gradient(180deg,#131313,#121212); min-height: 600px; padding: 52px 28px 28px; }
.gm-solution-stage h2 { max-width: 560px; margin: 22px 0 64px; color: var(--cream); font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .92; letter-spacing: -.075em; font-weight: 300; }
.gm-card-grid { display: grid; grid-template-columns: 1.15fr .95fr .95fr; gap: 14px; }
.gm-capability-card { min-height: 390px; padding: 18px; border: 1px solid rgba(244,239,227,.11); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); color: var(--cream); position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 28px 70px rgba(0,0,0,.18); transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s ease, background .28s ease, box-shadow .28s ease; }
.gm-capability-card:first-child { grid-row: span 2; min-height: 450px; }
.gm-capability-card::before { content:""; position:absolute; inset:-1px; opacity:0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(244,239,227,.20), transparent 32%), linear-gradient(120deg, transparent, rgba(244,239,227,.10), transparent); transition: opacity .28s ease; pointer-events:none; }
.gm-capability-card::after { content:""; position:absolute; left:-40%; top:0; width:40%; height:100%; background:linear-gradient(90deg, transparent, rgba(244,239,227,.10), transparent); transform:skewX(-18deg); animation: gmScan 7.5s ease-in-out infinite; pointer-events:none; }
.gm-capability-card:hover { transform: translateY(-7px); border-color: rgba(244,239,227,.26); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 38px 90px rgba(0,0,0,.28), 0 0 70px rgba(227,121,101,.08); }
.gm-capability-card:hover::before { opacity:1; }
.gm-capability-cream { background: linear-gradient(180deg, rgba(244,239,227,.10), rgba(244,239,227,.025)); }
.gm-capability-coral { background: radial-gradient(circle at 24% 18%, rgba(227,121,101,.18), transparent 42%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)); }
.gm-capability-olive { background: radial-gradient(circle at 76% 14%, rgba(80,90,69,.34), transparent 44%), linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.gm-card-topline { display:flex; align-items:center; justify-content:space-between; gap:10px; font-family:var(--mono); font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:rgba(244,239,227,.42); position:relative; z-index:2; }
.gm-card-topline i { font-style:normal; color:#dce9c9; background:rgba(80,90,69,.34); border:1px solid rgba(146,163,118,.34); border-radius:999px; padding:4px 7px; letter-spacing:.08em; }
.gm-card-art { height: 142px; display: grid; place-items: center; position: relative; overflow: hidden; margin: 18px 0 14px; border-radius: 15px; border:1px solid rgba(244,239,227,.09); background:rgba(0,0,0,.16); }
.gm-card-art::before { content:""; position:absolute; inset: 18px; border-radius: 50%; background: radial-gradient(circle, rgba(244,239,227,.10), transparent 62%); filter: blur(2px); }
.gm-card-art span { position: relative; z-index: 2; font-size: 78px; color: rgba(244,239,227,.76); -webkit-text-stroke: 1px rgba(244,239,227,.22); text-shadow:0 0 42px rgba(227,121,101,.20); }
.gm-card-art code { position: absolute; inset: auto 10px 14px; display:block; background: transparent; color: rgba(244,239,227,.22); font-size: 9px; line-height: 1.2; letter-spacing: .12em; white-space: normal; text-align: center; }
.gm-card-orbit { position:absolute; width:88px; height:88px; border:1px dashed rgba(244,239,227,.18); border-radius:50%; animation:gmOrbit 10s linear infinite; }
.gm-card-orbit::after { content:""; position:absolute; width:7px; height:7px; right:6px; top:12px; border-radius:50%; background:var(--coral); box-shadow:0 0 18px rgba(227,121,101,.8); }
.gm-card-metric { display:flex; align-items:end; justify-content:space-between; gap:14px; margin: 0 0 12px; }
.gm-card-metric strong { color:var(--cream); font-size:3.1rem; line-height:.8; letter-spacing:-.085em; font-weight:300; }
.gm-card-metric small { color:rgba(244,239,227,.45); font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:.1em; text-align:right; }
.gm-card-bars { display:grid; gap:7px; margin:0 0 22px; }
.gm-card-bars i { height:7px; width:100%; border-radius:999px; overflow:hidden; background:rgba(244,239,227,.08); position:relative; }
.gm-card-bars i::before { content:""; position:absolute; inset:0 auto 0 0; width:var(--w); border-radius:inherit; background:linear-gradient(90deg, var(--coral), var(--peach), rgba(244,239,227,.78)); box-shadow:0 0 18px rgba(227,121,101,.20); animation:gmBarPulse 3.6s ease-in-out infinite; }
.gm-capability-card h3 { margin: 0 0 10px; color: var(--cream); font-size: 1.8rem; line-height: 1; letter-spacing: -.055em; font-weight: 300; }
.gm-capability-card p { color: rgba(244,239,227,.52); margin: 0; }
.gm-card-foot { position:absolute; left:18px; right:18px; bottom:16px; display:flex; align-items:center; gap:8px; color:rgba(244,239,227,.42); font-family:var(--mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
.gm-card-foot span { width:7px; height:7px; border-radius:50%; background:var(--coral); box-shadow:0 0 18px rgba(227,121,101,.75); }
@keyframes gmScan { 0%, 58% { transform:translateX(0) skewX(-18deg); opacity:0; } 70% { opacity:1; } 100% { transform:translateX(360%) skewX(-18deg); opacity:0; } }
@keyframes gmOrbit { to { transform: rotate(360deg); } }
@keyframes gmBarPulse { 0%,100% { opacity:.82; } 50% { opacity:1; } }
.gm-cases-stage { margin-top: 34px; padding: 52px 28px 64px; min-height: auto; color: var(--cream); background: linear-gradient(135deg, rgba(244,239,227,.72), rgba(230,128,102,.92) 62%, rgba(63,40,33,.92)); }
.gm-cases-stage .gm-section-label { color: rgba(17,17,17,.62); }.gm-cases-stage .gm-section-label span { background: #111; }
.gm-cases-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.gm-cases-head h2 { margin: 18px 0 28px; color: var(--cream); font-size: clamp(4rem, 9vw, 8.2rem); line-height: .8; letter-spacing: -.09em; font-weight: 300; text-shadow: 0 1px 0 rgba(0,0,0,.12); }
.gm-cases-head p { margin: 0 0 54px; max-width: 430px; color: rgba(244,239,227,.82); font-weight: 700; line-height: 1.25; }
.gm-team-chip { width: 260px; height: 34px; display: flex; align-items: center; gap: 5px; background: #111; color: var(--cream); padding: 5px 9px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.gm-team-chip span { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#f1c1a7,#111); border: 1px solid rgba(255,255,255,.2); margin-right: -6px; }.gm-team-chip b { margin-left: 10px; }.gm-team-chip i { margin-left: auto; font-style: normal; font-size: 16px; }
.gm-cases-grid { display: grid; grid-template-columns: 220px 260px 240px; align-items: end; gap: 22px; margin-top: 26px; perspective: 900px; overflow: visible; }
.gm-case-card { min-height: 250px; padding: 16px; background: var(--cream); color: #171615; position: relative; box-shadow: 0 28px 70px rgba(0,0,0,.18); will-change: transform, opacity, filter; }
.gm-scroll-slide { opacity:0; filter:blur(10px); transition: opacity .82s cubic-bezier(.16,1,.3,1), transform .82s cubic-bezier(.16,1,.3,1), filter .82s cubic-bezier(.16,1,.3,1); }
.gm-slide-1 { transform: translate3d(-170px, 64px, 0) rotate(-6deg) scale(.92); transition-delay: .02s; }
.gm-slide-2 { transform: translate3d(0, -96px, 0) rotate(3deg) scale(.94); transition-delay: .16s; }
.gm-slide-3 { transform: translate3d(170px, 72px, 0) rotate(6deg) scale(.92); transition-delay: .30s; }
.gm-scroll-slide.is-visible { opacity:1; filter:blur(0); transform: translate3d(0,0,0) rotate(0deg) scale(1); }
.gm-case-card.is-visible:hover { transform: translate3d(0,-8px,0) rotate(0deg) scale(1.015); transition-duration:.28s; }
@media (prefers-reduced-motion: reduce) {
  .gm-scroll-slide { opacity:1; filter:none; transform:none !important; transition:none !important; }
}
.gm-case-2 { background: #171615; color: var(--cream); min-height: 284px; }.gm-case-3 { background: rgba(244,239,227,.68); min-height: 210px; }
.gm-case-tag { display:inline-flex; background:#151515; color:var(--cream); font-family:var(--mono); font-size:9px; letter-spacing:.1em; padding:4px 6px; margin-bottom:50px; }.gm-case-2 .gm-case-tag { background:var(--cream); color:#111; }
.gm-case-card p { margin: 0; font-weight: 800; line-height: 1.15; }.gm-case-card small { position:absolute; left:16px; bottom:14px; color: rgba(17,17,17,.55); font-family:var(--mono); font-size:10px; }.gm-case-2 small { color: rgba(244,239,227,.42); }
.gm-process-stage { margin-top: 34px; min-height: 640px; padding: 64px 28px; background: #111; color: var(--cream); }
.gm-process-pattern { position:absolute; inset:0 auto 0 0; width: 48%; opacity:.16; background-image: radial-gradient(circle at center, rgba(244,239,227,.5) 2px, transparent 3px); background-size: 58px 58px; mask-image: linear-gradient(to right,#000,transparent); }
.gm-process-layout { position:relative; z-index:1; display:grid; grid-template-columns: .95fr 1.1fr; gap: 72px; align-items:center; }
.gm-process-layout h2 { margin: 22px 0 0; max-width: 430px; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: .94; letter-spacing: -.078em; font-weight: 300; color: var(--cream); }
.gm-process-list { display:grid; gap:0; }.gm-process-item { padding: 25px 0; border-bottom: 1px solid rgba(244,239,227,.10); }.gm-process-item h3 { margin:0 0 8px; color:var(--cream); font-size:1.45rem; font-weight:500; letter-spacing:-.04em; }.gm-process-item p { margin:0; color: rgba(244,239,227,.44); font-size:.95rem; }
.gm-faq-stage { margin-top:34px; padding:56px 28px; background:linear-gradient(180deg,#141414,#101010); color:var(--cream); }
.gm-faq-stage h2 { max-width:760px; margin:22px 0 28px; color:var(--cream); font-size:clamp(2.5rem,5vw,5.2rem); line-height:.9; letter-spacing:-.075em; font-weight:300; }
.gm-faq-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.gm-faq-item { border:1px solid rgba(244,239,227,.10); border-radius:16px; padding:18px; background:rgba(244,239,227,.045); }
.gm-faq-item h3 { margin:0 0 8px; color:var(--cream); font-size:1.2rem; line-height:1.05; letter-spacing:-.035em; }
.gm-faq-item p { margin:0; color:rgba(244,239,227,.58); line-height:1.45; }
.info-page { max-width: 980px; margin: 70px auto 0; padding: 34px; border:1px solid var(--line); border-radius:24px; background:rgba(255,255,255,.84); box-shadow:var(--shadow); }
.info-page h1 { margin:8px 0 16px; font-size:clamp(2.4rem,5vw,4.6rem); line-height:.92; letter-spacing:-.06em; font-weight:300; }
.info-page .lead { font-size:1.22rem; color:#475569; max-width:780px; }
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:24px; }
.info-grid article, .contact-card { border:1px solid var(--line); border-radius:18px; background:#fff; padding:18px; }
.info-page h2 { margin:18px 0 8px; letter-spacing:-.03em; }
.info-page p { color:#475569; }
.contact-card { display:grid; gap:8px; max-width:520px; margin:24px 0; }
.contact-card a { font-size:1.25rem; font-weight:900; }
.contact-card span { color:var(--muted); }
.legal-page { max-width:860px; }
.gm-final-cta { margin-top: 34px; padding: 80px 28px; text-align:center; background: linear-gradient(180deg,#151515,#0f0f0f); color:var(--cream); }
.gm-final-mark { margin: 0 auto 18px; width: 76px; height:76px; border-radius:50%; display:grid; place-items:center; color:var(--cream); border:1px solid rgba(244,239,227,.16); background:radial-gradient(circle,rgba(227,121,101,.28),transparent 62%); font-size:42px; }
.gm-final-cta h2 { margin:0 auto 12px; max-width:800px; font-size:clamp(3rem,7vw,7rem); line-height:.82; letter-spacing:-.09em; font-weight:300; color:var(--cream); }.gm-final-cta p{color:rgba(244,239,227,.55);font-size:1.15rem}.gm-final-actions{display:flex;justify-content:center;gap:10px;margin-top:24px;}
@media (max-width: 1100px) {
  .gm-hero-copy { grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); column-gap: 34px; }
  .gm-hero-copy h1 { max-width: 560px; font-size: clamp(4rem, 8vw, 7rem); }
  .gm-hero-copy p { max-width: 360px; }
}
@media (max-width: 860px) {
  .gm-home { padding: 18px 12px 0; }
  .gm-stage { width: calc(100vw - 24px); }
  .gm-hero-stage { min-height: auto; padding: 24px 18px 28px; }
  .gm-stage-links { display:none; }
  .gm-hero-copy { display:block; padding-top: 0; }
  .gm-hero-copy h1 { width:auto; max-width: 100%; margin-top: 300px; font-size: clamp(3.8rem, 16vw, 5.2rem); line-height: .86; }
  .gm-hero-copy p { position:static; margin-top:24px; max-width: 100%; }
  .gm-mark-wrap { top: 38%; transform: translate(-50%, -50%) scale(.86); }
  .gm-hero-action-row { position:relative; left:auto; right:auto; bottom:auto; display:block; margin-top: 28px; }
  .gm-hero-steps { position:relative; left:auto; right:auto; bottom:auto; margin-top:18px; }
  .gm-audit-form { border-radius: 22px; grid-template-columns: 1fr; }
  .gm-cases-head,.gm-process-layout,.gm-card-grid,.gm-cases-grid,.gm-entity-layout,.gm-faq-grid,.info-grid { grid-template-columns:1fr; }
  .gm-card-grid { gap: 0; }
  .gm-capability-card { border-right:0; border-bottom:1px solid rgba(244,239,227,.1); }
  .gm-cases-grid { align-items:stretch; }
  .gm-final-actions { flex-direction: column; }
}
