/* Gimmy — getgimmy.app · shared design system (dark-first coral, both themes) */
:root{
  --bg:#FBF7F4; --surface:#FFFFFF; --surface-2:#F4EDE9; --raise:0 1px 2px rgba(20,10,12,.06),0 10px 30px rgba(20,10,12,.06);
  --text:#191315; --muted:#6C6167; --line:rgba(20,10,12,.10); --line-2:rgba(20,10,12,.06);
  --accent:#E23246; --accent-2:#FF5A6B; --accent-ink:#FFFFFF; --accent-soft:rgba(226,50,70,.10);
  --success:#1E8E3E; --success-soft:rgba(30,142,62,.12);
  --glow:rgba(226,50,70,.14); --ring-track:rgba(20,10,12,.10);
  --maxw:1120px;
}
@media (prefers-color-scheme:dark){:root:not([data-theme="light"]){
  --bg:#0C0B0D; --surface:#161419; --surface-2:#1F1B23; --raise:0 1px 0 rgba(255,255,255,.03),0 24px 60px rgba(0,0,0,.5);
  --text:#F5F1EF; --muted:#A79FA6; --line:rgba(255,255,255,.11); --line-2:rgba(255,255,255,.06);
  --accent:#FF5A6B; --accent-2:#FF7C89; --accent-ink:#1B0E11; --accent-soft:rgba(255,90,107,.14);
  --success:#34C759; --success-soft:rgba(52,199,89,.16);
  --glow:rgba(255,90,107,.20); --ring-track:rgba(255,255,255,.12);
}}
:root[data-theme="dark"]{
  --bg:#0C0B0D; --surface:#161419; --surface-2:#1F1B23; --raise:0 1px 0 rgba(255,255,255,.03),0 24px 60px rgba(0,0,0,.5);
  --text:#F5F1EF; --muted:#A79FA6; --line:rgba(255,255,255,.11); --line-2:rgba(255,255,255,.06);
  --accent:#FF5A6B; --accent-2:#FF7C89; --accent-ink:#1B0E11; --accent-soft:rgba(255,90,107,.14);
  --success:#34C759; --success-soft:rgba(52,199,89,.16);
  --glow:rgba(255,90,107,.20); --ring-track:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{background:var(--bg); color:var(--text); margin:0;
  font-family:"Hanken Grotesk",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:17px; line-height:1.6; letter-spacing:-0.005em; -webkit-font-smoothing:antialiased; overflow-x:hidden}
img{max-width:100%}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px}
h1,h2,h3,h4{font-family:"Archivo",system-ui,sans-serif; font-weight:900; line-height:1.05; letter-spacing:-0.03em; text-wrap:balance; margin:0}
p{margin:0}
a{color:inherit}
.eyebrow{font-family:"IBM Plex Mono",ui-monospace,monospace; font-weight:600; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--accent)}
.mono{font-family:"IBM Plex Mono",ui-monospace,monospace}
.tnum{font-variant-numeric:tabular-nums}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px; border-radius:6px}

.btn{display:inline-flex; align-items:center; gap:8px; font-family:"Archivo",sans-serif; font-weight:800; font-size:15px; letter-spacing:-0.01em;
  padding:13px 22px; border-radius:999px; border:1px solid transparent; cursor:pointer; text-decoration:none; transition:transform .12s ease, box-shadow .12s ease, background .12s ease}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--accent); color:var(--accent-ink); box-shadow:0 6px 20px var(--glow)}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 10px 28px var(--glow)}
.btn-ghost{background:transparent; color:var(--text); border-color:var(--line)}
.btn-ghost:hover{background:var(--surface-2)}

/* Nav */
nav.site{position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(12px); background:color-mix(in srgb, var(--bg) 78%, transparent); border-bottom:1px solid var(--line-2)}
.nav-in{display:flex; align-items:center; justify-content:space-between; height:64px}
.brand{display:flex; align-items:center; gap:10px; font-family:"Archivo",sans-serif; font-weight:900; font-size:20px; letter-spacing:-0.02em; text-decoration:none; color:var(--text)}
.spark{width:12px; height:12px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 4px var(--accent-soft)}
.nav-links{display:flex; align-items:center; gap:28px}
.nav-links a{font-size:14px; font-weight:600; color:var(--muted); text-decoration:none; transition:color .12s}
.nav-links a:hover{color:var(--text)}
.theme-btn{background:transparent; border:1px solid var(--line); color:var(--muted); width:34px; height:34px; border-radius:999px; cursor:pointer; font-size:14px; display:grid; place-items:center}
.theme-btn:hover{color:var(--text); border-color:var(--muted)}
@media(max-width:760px){.nav-links .nav-only{display:none}}

/* Hero */
header.hero{position:relative; padding:76px 0 40px; overflow:hidden}
.hero::before{content:""; position:absolute; inset:-20% -20% auto -20%; height:520px; z-index:0; background:radial-gradient(60% 60% at 72% 20%, var(--glow), transparent 70%); pointer-events:none}
.hero-grid{position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center}
.hero h1{font-size:clamp(40px,6.4vw,72px)}
.hero h1 .hl{color:var(--accent)}
.hero .sub{margin-top:20px; font-size:clamp(17px,2vw,20px); color:var(--muted); max-width:34ch}
.cta-row{margin-top:30px; display:flex; flex-direction:column; gap:12px; max-width:440px}
.signup{display:flex; gap:8px}
.signup input{flex:1; min-width:0; padding:13px 16px; border-radius:999px; border:1px solid var(--line); background:var(--surface); color:var(--text); font-family:inherit; font-size:15px}
.signup input::placeholder{color:var(--muted)}
.signup input:focus{outline:none; border-color:var(--accent)}
.cta-note{display:flex; align-items:center; gap:10px; color:var(--muted); font-size:13px; flex-wrap:wrap}
.badge{display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:600; color:var(--muted); background:var(--surface-2); border:1px solid var(--line-2); padding:5px 11px; border-radius:999px}
.badge .dot{width:6px; height:6px; border-radius:50%; background:var(--success)}
.form-done{color:var(--success); font-weight:600; font-size:14px; display:flex; align-items:center; gap:8px}

/* Phone mockup */
.phone-stage{display:flex; justify-content:center}
.phone{position:relative; width:300px; aspect-ratio:300/620; background:linear-gradient(180deg,var(--surface),var(--surface-2)); border:1px solid var(--line); border-radius:44px; padding:14px; box-shadow:var(--raise)}
.phone::after{content:""; position:absolute; top:16px; left:50%; transform:translateX(-50%); width:96px; height:22px; background:var(--bg); border-radius:999px; opacity:.9}
.screen{height:100%; border-radius:32px; background:var(--bg); border:1px solid var(--line-2); padding:22px 18px; display:flex; flex-direction:column; gap:16px; overflow:hidden}
.screen-top{display:flex; align-items:center; justify-content:space-between; margin-top:14px}
.screen-top .h{font-family:"Archivo"; font-weight:800; font-size:15px}
.screen-top .d{font-size:11px; color:var(--muted)}
.ring-wrap{display:flex; flex-direction:column; align-items:center; gap:2px; padding:4px 0}
.ring{position:relative; width:168px; height:168px}
.ring svg{transform:rotate(-90deg)}
.ring .val{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center}
.ring .num{font-family:"Archivo"; font-weight:900; font-size:52px; line-height:1; letter-spacing:-.03em}
.ring .cap{font-family:"IBM Plex Mono"; font-size:10px; letter-spacing:.14em; color:var(--muted); text-transform:uppercase; margin-top:6px}
.chip{display:inline-flex; align-items:center; gap:6px; font-size:11.5px; font-weight:600; color:var(--success); background:var(--success-soft); padding:4px 10px; border-radius:999px}
.chip .dot{width:6px;height:6px;border-radius:50%;background:var(--success)}
.pill-row{display:flex; flex-direction:column; gap:9px}
.pill{display:flex; align-items:center; gap:11px; background:var(--surface); border:1px solid var(--line-2); border-radius:14px; padding:11px 13px}
.pill .ic{width:30px; height:30px; border-radius:9px; background:var(--accent-soft); color:var(--accent); display:grid; place-items:center; font-size:15px; flex:none}
.pill .t{font-size:12.5px; font-weight:600; line-height:1.25}
.pill .s{font-size:11px; color:var(--muted)}
.pill .r{margin-left:auto; font-family:"IBM Plex Mono"; font-size:12px; color:var(--muted)}
.body-dots{display:flex; gap:5px; margin-left:auto}
.body-dots i{width:8px;height:8px;border-radius:50%}

/* Sections */
section{padding:76px 0; position:relative}
.sec-head{max-width:640px; margin-bottom:44px}
.sec-head h2{font-size:clamp(30px,4.4vw,46px); margin-top:14px}
.sec-head p{color:var(--muted); margin-top:16px; font-size:18px}
.band{background:var(--surface); border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2)}

.thesis-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center}
.formula{display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:26px}
.term{background:var(--bg); border:1px solid var(--line); border-radius:14px; padding:14px 16px; min-width:118px}
.term .k{font-family:"IBM Plex Mono"; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted)}
.term .v{font-family:"Archivo"; font-weight:800; font-size:17px; margin-top:4px}
.op{font-family:"Archivo"; font-weight:900; font-size:22px; color:var(--accent)}
.big-score{display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:var(--bg); border:1px solid var(--line); border-radius:24px; padding:34px}
.big-score .n{font-family:"Archivo"; font-weight:900; font-size:clamp(80px,13vw,132px); line-height:.9; letter-spacing:-.04em; color:var(--accent)}
.big-score .l{font-family:"IBM Plex Mono"; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted)}
.spark-svg{width:100%; height:44px; margin-top:6px}

.feat-grid{display:grid; grid-template-columns:repeat(12,1fr); gap:20px}
.card{background:var(--surface); border:1px solid var(--line); border-radius:22px; padding:26px; box-shadow:var(--raise); display:flex; flex-direction:column; gap:12px}
.card .fi{width:44px; height:44px; border-radius:12px; background:var(--accent-soft); color:var(--accent); display:grid; place-items:center; font-size:22px}
.card h3{font-size:21px; letter-spacing:-.02em}
.card p{color:var(--muted); font-size:15.5px}
.card ul{margin:2px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px}
.card li{position:relative; padding-left:22px; font-size:14.5px}
.card li::before{content:""; position:absolute; left:2px; top:9px; width:8px; height:8px; border-radius:50%; background:var(--accent); opacity:.85}
.col-7{grid-column:span 7} .col-5{grid-column:span 5} .col-6{grid-column:span 6} .col-4{grid-column:span 4}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px}
.step .no{font-family:"Archivo"; font-weight:900; font-size:15px; color:var(--accent-ink); background:var(--accent); width:34px; height:34px; border-radius:10px; display:grid; place-items:center}
.step h3{font-size:20px; margin-top:16px}
.step p{color:var(--muted); margin-top:8px; font-size:15px}
.step-line{height:2px; background:linear-gradient(90deg,var(--accent),transparent); margin:18px 0 0}

.price-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:840px}
.plan{background:var(--surface); border:1px solid var(--line); border-radius:24px; padding:30px; display:flex; flex-direction:column; gap:16px}
.plan.pro{border-color:var(--accent); box-shadow:0 0 0 1px var(--accent), 0 20px 50px var(--glow)}
.plan .tag{font-family:"IBM Plex Mono"; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted)}
.plan.pro .tag{color:var(--accent)}
.plan .amt{font-family:"Archivo"; font-weight:900; font-size:40px; letter-spacing:-.03em}
.plan .amt small{font-family:"Hanken Grotesk"; font-weight:600; font-size:15px; color:var(--muted); letter-spacing:0}
.plan .yr{font-size:13px; color:var(--muted); margin-top:-8px}
.plan ul{margin:6px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
.plan li{position:relative; padding-left:26px; font-size:15px}
.plan li::before{content:"✓"; position:absolute; left:0; top:0; color:var(--accent); font-weight:800}
.plan .foot{margin-top:auto}

.final{background:var(--surface); border:1px solid var(--line); border-radius:28px; padding:clamp(30px,5vw,56px); text-align:center; position:relative; overflow:hidden}
.final::before{content:""; position:absolute; inset:auto -10% -60% -10%; height:280px; background:radial-gradient(50% 60% at 50% 100%, var(--glow), transparent 70%)}
.final>*{position:relative}
.final h2{font-size:clamp(30px,5vw,52px)}
.final .signup{max-width:440px; margin:26px auto 0}

/* Footer */
footer.site{border-top:1px solid var(--line-2); padding:44px 0 60px; color:var(--muted)}
.foot-grid{display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; align-items:flex-start}
.foot-links{display:flex; gap:26px; flex-wrap:wrap}
.foot-links a{color:var(--muted); text-decoration:none; font-size:14px; font-weight:600}
.foot-links a:hover{color:var(--text)}
.disclosure{max-width:680px; font-size:12px; line-height:1.6; color:var(--muted); margin-top:24px; opacity:.85}

/* Article + legal prose */
.doc{max-width:760px; margin:0 auto; padding:56px 24px 40px}
.breadcrumb{font-size:13px; color:var(--muted); margin-bottom:22px; display:flex; gap:8px; flex-wrap:wrap}
.breadcrumb a{color:var(--muted); text-decoration:none}
.breadcrumb a:hover{color:var(--accent)}
.post-meta{display:flex; gap:12px; align-items:center; color:var(--muted); font-size:13.5px; margin:14px 0 4px; flex-wrap:wrap}
.post-cat{font-family:"IBM Plex Mono"; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent)}
.doc h1{font-size:clamp(32px,5vw,50px); margin:6px 0 8px}
.prose{font-size:18px; line-height:1.75; color:var(--text)}
.prose>*+*{margin-top:20px}
.prose h2{font-size:27px; margin-top:44px; letter-spacing:-.02em}
.prose h3{font-size:21px; margin-top:32px}
.prose p{color:var(--text)}
.prose a{color:var(--accent); text-decoration:underline; text-underline-offset:2px; text-decoration-thickness:1px}
.prose ul,.prose ol{padding-left:22px; display:flex; flex-direction:column; gap:8px}
.prose li{margin:0}
.prose strong{font-weight:700}
.prose code{font-family:"IBM Plex Mono"; font-size:.9em; background:var(--surface-2); padding:2px 6px; border-radius:6px}
.prose blockquote{border-left:3px solid var(--accent); padding-left:16px; color:var(--muted); font-style:italic}
.tablewrap{overflow-x:auto; border:1px solid var(--line); border-radius:14px}
.prose table{border-collapse:collapse; width:100%; font-size:15.5px}
.prose th,.prose td{text-align:left; padding:11px 14px; border-bottom:1px solid var(--line-2)}
.prose thead th{font-family:"Archivo"; font-weight:800; background:var(--surface-2)}
.prose tbody tr:last-child td{border-bottom:none}
.faq{margin-top:20px; border:1px solid var(--line); border-radius:14px; background:var(--surface); padding:6px 18px}
.faq details{border-bottom:1px solid var(--line-2); padding:14px 0}
.faq details:last-child{border-bottom:none}
.faq summary{font-family:"Archivo"; font-weight:800; font-size:17px; cursor:pointer; list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; float:right; color:var(--accent); font-weight:800}
.faq details[open] summary::after{content:"–"}
.faq details p{margin-top:10px; color:var(--muted); font-size:16px}
.cta-inline{margin-top:44px; background:var(--surface); border:1px solid var(--accent); box-shadow:0 0 0 1px var(--accent),0 16px 40px var(--glow); border-radius:22px; padding:28px; display:flex; flex-direction:column; gap:12px}
.cta-inline h3{font-size:22px}
.cta-inline p{color:var(--muted); font-size:16px}

/* Blog index */
.blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.post-card{display:flex; flex-direction:column; gap:10px; background:var(--surface); border:1px solid var(--line); border-radius:20px; padding:24px; text-decoration:none; color:var(--text); box-shadow:var(--raise); transition:transform .12s ease, border-color .12s}
.post-card:hover{transform:translateY(-2px); border-color:var(--accent)}
.post-card .pc-cat{font-family:"IBM Plex Mono"; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent)}
.post-card h3{font-size:20px; letter-spacing:-.02em}
.post-card p{color:var(--muted); font-size:14.5px; margin-top:2px}
.post-card .pc-meta{margin-top:auto; color:var(--muted); font-size:12.5px; padding-top:8px}

@media(max-width:860px){
  .hero-grid,.thesis-grid,.price-grid{grid-template-columns:1fr; gap:40px}
  .phone-stage{order:-1}
  .steps{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .col-7,.col-5,.col-6,.col-4{grid-column:span 12}
  section{padding:60px 0}
}
