/* NovelWriterAI marketing prototype - self-contained dark/gold theme.
   Prototype only. Not the production implementation. */

:root {
  --bg: #0b0b0f;
  --bg-2: #101017;
  --panel: #15151e;
  --panel-2: #1b1b26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(232, 196, 106, 0.35);
  --gold: #e8c46a;
  --gold-2: #d4af5f;
  --text: #ecebf1;
  --muted: #a3a3b2;
  --muted-2: #74748a;
  --green: #6fcf97;
  --amber: #e3b34c;
  --red: #e07a7a;
  --dead: #6a6a78;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(1200px 700px at 50% -200px, #1a1622 0%, var(--bg) 55%) no-repeat, var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.muted { color: var(--muted); }
.small { font-size: 13px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; letter-spacing: 0.3px; }
.brand b { color: var(--gold); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .08s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1a1406;
  box-shadow: 0 8px 30px rgba(232, 196, 106, 0.18);
}
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 9px; }

/* Hero */
.hero { padding: 84px 0 64px; text-align: center; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin: 18px auto 0; max-width: 14ch; }
.hero .sub { color: var(--muted); font-size: clamp(16px, 2.1vw, 20px); max-width: 60ch; margin: 22px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--gold-2); letter-spacing: 0.4px; }

.stats { display: flex; gap: 18px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.stat { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 20px 26px; min-width: 200px; }
.stat .n { font-family: "Playfair Display", serif; font-size: 30px; color: var(--gold); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Sections */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 64ch; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 12px 0 0; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

.divider { height: 1px; background: var(--border); max-width: var(--maxw); margin: 0 auto; }

/* Feature cards */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } .nav-links a:not(.btn) { display: none; } }

.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: 16px; padding: 26px;
}
.card .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(232, 196, 106, 0.12); border: 1px solid var(--border-strong); font-size: 20px; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 26px; position: relative; }
.step .num { font-family: "Playfair Display", serif; font-size: 15px; color: #1a1406; background: var(--gold);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.step h3 { margin: 16px 0 8px; font-size: 20px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* Money / proof */
.proof { background: linear-gradient(180deg, var(--panel-2), var(--bg-2)); border: 1px solid var(--border-strong);
  border-radius: 18px; padding: 34px; max-width: 760px; margin: 0 auto; text-align: center; }
.proof .big { font-family: "Playfair Display", serif; font-size: clamp(26px, 3.4vw, 34px); }
.proof .big span { color: var(--gold); }
.proof .honest { color: var(--muted-2); font-size: 13px; margin-top: 14px; font-style: italic; }

/* Pricing */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr; } }
.price { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; }
.price.featured { border-color: var(--border-strong); box-shadow: 0 10px 40px rgba(232,196,106,0.10); }
.price .tier { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; }
.price .amt { font-family: "Playfair Display", serif; font-size: 40px; margin: 10px 0 2px; }
.price .per { color: var(--muted); font-size: 14px; }
.price ul { list-style: none; padding: 0; margin: 18px 0 22px; color: var(--muted); font-size: 14px; }
.price li { padding: 6px 0; border-top: 1px solid var(--border); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin-bottom: 14px; background: var(--panel); }
.qa h3 { margin: 0 0 8px; font-size: 18px; }
.qa p { margin: 0; color: var(--muted); font-size: 15px; }

/* Tier table (platforms hub) */
.tier { margin-bottom: 40px; }
.tier-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tier-head h3 { font-size: 22px; margin: 0; }
.pill { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.4px; }
.pill-green { background: rgba(111,207,151,0.14); color: var(--green); border: 1px solid rgba(111,207,151,0.3); }
.pill-amber { background: rgba(227,179,76,0.14); color: var(--amber); border: 1px solid rgba(227,179,76,0.3); }
.pill-red { background: rgba(224,122,122,0.14); color: var(--red); border: 1px solid rgba(224,122,122,0.3); }
.pill-dead { background: rgba(106,106,120,0.14); color: var(--dead); border: 1px solid rgba(106,106,120,0.3); }

table.plat { width: 100%; border-collapse: collapse; font-size: 14px; overflow: hidden; border-radius: 14px; }
table.plat th, table.plat td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.plat thead th { background: var(--panel-2); color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
table.plat tbody tr { background: var(--panel); }
table.plat tbody tr:hover { background: var(--panel-2); }
table.plat td .pname { font-weight: 700; color: var(--text); }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.dot-green { background: var(--green); } .dot-amber { background: var(--amber); } .dot-red { background: var(--red); } .dot-dead { background: var(--dead); }

/* Disclaimer */
.disclaimer { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; max-width: var(--maxw); margin: 0 auto; }
.disclaimer h4 { margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-family: "Inter", sans-serif; }
.disclaimer p { color: var(--muted-2); font-size: 13px; margin: 0 0 10px; }
.disclaimer p b { color: var(--muted); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 30px; }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.foot a { color: var(--muted); } .foot a:hover { color: var(--text); }

/* Platform detail page */
.ph { padding: 64px 0 30px; }
.ph .eyebrow { margin-bottom: 10px; display: inline-block; }
.ph h1 { font-size: clamp(34px, 5vw, 52px); margin: 0; }
.ph .lead { color: var(--muted); font-size: 18px; max-width: 60ch; margin-top: 14px; }
.kv { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 30px; }
@media (max-width: 700px) { .kv { grid-template-columns: 1fr; } }
.kv .item { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.kv .item .k { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-2); }
.kv .item .v { margin-top: 4px; font-size: 15px; }
.prose h2 { font-size: 26px; margin: 36px 0 12px; }
.prose p { color: var(--muted); }
.backlink { color: var(--gold-2); font-size: 14px; }

/* Announcement / urgency bar (honest, fixed-date countdown) */
.announce { background: linear-gradient(90deg, rgba(232,196,106,0.16), rgba(232,196,106,0.04)); border-bottom: 1px solid var(--border-strong); }
.announce .wrap { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 46px; flex-wrap: wrap; font-size: 14px; padding: 8px 24px; }
.announce b { color: var(--gold); }
.timer { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--muted); }
.timer span { background: rgba(0,0,0,0.4); border: 1px solid var(--border-strong); border-radius: 6px; padding: 2px 8px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }

/* Free strip (pricing) */
.freebar { display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2)); border: 1px solid var(--border-strong);
  border-radius: 16px; padding: 22px 26px; margin-bottom: 22px; flex-wrap: wrap; }
.freebar .t { font-family: "Playfair Display", serif; font-size: 22px; }
.freebar .s { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---- Polish round: logo, hero visual, video, animations, tags ---- */

/* Brand logo mark */
.brand { display: inline-flex; align-items: center; gap: 9px; }
.logo { display: inline-flex; }
.logo svg { display: block; filter: drop-shadow(0 2px 8px rgba(232,196,106,0.35)); }

/* Gradient headline accent */
.grad { background: linear-gradient(180deg, #fff 0%, var(--gold) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Hero ambient glow + texture */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -40% 0 auto 0; height: 600px; pointer-events: none;
  background: radial-gradient(600px 300px at 50% 0, rgba(232,196,106,0.14), transparent 70%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(600px 380px at 50% 120px, #000, transparent 80%); }
.hero .wrap { position: relative; z-index: 1; }

/* Autopilot status chip in hero */
.chip { display: inline-flex; align-items: center; gap: 9px; background: var(--panel); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--muted); margin-top: 26px; }
.chip .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(111,207,151,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,207,151,0.5);} 70% { box-shadow: 0 0 0 8px rgba(111,207,151,0);} 100% { box-shadow: 0 0 0 0 rgba(111,207,151,0);} }

/* App / video mockup frame */
.frame { max-width: 920px; margin: 0 auto; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--bg-2); box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.frame .bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--panel); }
.frame .bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a46; display: inline-block; }
.frame .bar .u { margin-left: 12px; font-size: 12px; color: var(--muted-2); }

/* Video placeholder */
.video { position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: radial-gradient(700px 400px at 50% 40%, #20202c, var(--bg-2)); display: grid; place-items: center; }
.video .play { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(180deg, var(--gold), var(--gold-2));
  display: grid; place-items: center; box-shadow: 0 14px 40px rgba(232,196,106,0.25); cursor: pointer; transition: transform .12s ease; }
.video .play:hover { transform: scale(1.06); }
.video .play::after { content: ""; border-left: 22px solid #1a1406; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.video .cap { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; color: var(--muted-2); font-size: 13px; letter-spacing: .3px; }
.video .badge-soon { position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--gold); background: rgba(232,196,106,0.12); border: 1px solid var(--border-strong); padding: 4px 10px; border-radius: 999px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Small tag chips */
.tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--gold); background: rgba(232,196,106,0.1);
  border: 1px solid var(--border-strong); border-radius: 999px; padding: 3px 11px; margin: 0 6px 8px 0; }

/* Numbered guide list (start-earning) */
.guide { max-width: 820px; margin: 0 auto; }
.gstep { display: flex; gap: 20px; padding: 24px 0; border-top: 1px solid var(--border); }
.gstep:first-child { border-top: 0; }
.gstep .gn { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #1a1406;
  font-family: "Playfair Display", serif; font-weight: 700; display: grid; place-items: center; }
.gstep h3 { margin: 6px 0 8px; font-size: 21px; }
.gstep p { color: var(--muted); margin: 0; }
.gstep .more { margin-top: 8px; font-size: 14px; }

/* Sub page hero spacing tweak */
.ph::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 320px; pointer-events: none;
  background: radial-gradient(500px 220px at 30% 0, rgba(232,196,106,0.10), transparent 70%); }
.ph { position: relative; }
.ph .wrap { position: relative; z-index: 1; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { color: var(--muted-2); font-size: 13px; margin: 0 0 22px; }
.legal h2 { font-family: "Playfair Display", serif; font-size: 22px; margin: 32px 0 10px; }
.legal h3 { font-size: 16px; margin: 20px 0 6px; color: var(--text); }
.legal p, .legal li { color: var(--muted); font-size: 15px; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li { margin: 5px 0; }
.legal a { color: var(--gold-2); }
.legal strong { color: var(--text); }
.legal address { font-style: normal; color: var(--text); }
.legal .note { background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 12px; padding: 16px 18px; color: var(--muted-2); font-size: 13px; margin: 18px 0; }

/* Proof section */
.sample { max-width: 760px; margin: 0 auto; background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: 16px; padding: 0; overflow: hidden; }
.sample .bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--border); background: var(--panel-2); }
.sample .bar .t { font-size: 13px; color: var(--muted); }
.sample .bar .b { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); }
.sample .body { padding: 24px 26px; font-family: "Cormorant Garamond", "Playfair Display", serif; }
.sample .body h4 { font-family: "Playfair Display", serif; font-size: 20px; margin: 0 0 12px; color: var(--text); }
.sample .body p { color: #cfcfda; font-size: 17px; line-height: 1.7; margin: 0 0 12px; }
.sample .body .cliff { color: var(--gold); font-style: italic; }
.trustband { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.trustband .t { font-size: 13px; color: var(--muted); background: var(--panel); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; }

/* Satisfaction guarantee */
.guarantee { display: flex; align-items: center; gap: 16px; justify-content: center; max-width: 640px; margin: 26px auto 0;
  padding: 18px 24px; background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--border-strong); border-radius: 14px; }
.guarantee .shield { flex: 0 0 auto; display: grid; place-items: center; }
.guarantee .t { font-family: "Playfair Display", serif; font-size: 18px; color: var(--text); }
.guarantee .s { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ============================================================
   MODERN OVERHAUL  (rolls the whole site onto the modern.css look)
   Redefines tokens + restyles core components. Markup unchanged.
   ============================================================ */
:root {
  --bg: #08070d;
  --bg-2: #10101d;
  --panel: rgba(255,255,255,.065);
  --panel-2: rgba(255,255,255,.095);
  --card: rgba(255,255,255,.065);
  --border: rgba(255,255,255,.13);
  --border-strong: rgba(244,201,93,.30);
  --line: rgba(255,255,255,.13);
  --text: #fbf7ec;
  --muted: rgba(251,247,236,.70);
  --muted-2: rgba(251,247,236,.50);
  --green: #6fcf97; --amber: #f0b450; --red: #fb7185; --dead: #8a8392;
  --gold: #f4c95d; --gold-2: #ffe7a1; --violet: #a78bfa; --cyan: #67e8f9;
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius: 24px;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(167,139,250,.26), transparent 34rem),
    radial-gradient(circle at 88% 6%, rgba(244,201,93,.20), transparent 32rem),
    radial-gradient(circle at 70% 60%, rgba(103,232,249,.09), transparent 34rem),
    linear-gradient(180deg, #090711 0%, #0b0a12 45%, #06050a 100%);
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -2; opacity: .42;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px; -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%); mask-image: linear-gradient(to bottom, black, transparent 80%);
}

/* Nav */
.nav { background: rgba(8,7,13,.70); backdrop-filter: blur(22px); border-bottom: 1px solid rgba(255,255,255,.09); }
.logo svg { filter: drop-shadow(0 4px 14px rgba(244,201,93,.4)); }

/* Buttons -> pill + gradient */
.btn { border-radius: 999px; font-weight: 800; letter-spacing: -.01em; padding: 12px 22px; border: 1px solid rgba(255,255,255,.14); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #1c1302; background: linear-gradient(135deg, var(--gold-2), var(--gold) 48%, #d89b1b); box-shadow: 0 16px 40px rgba(244,201,93,.24), inset 0 1px 0 rgba(255,255,255,.5); border-color: transparent; }
.btn-ghost { color: var(--text); background: rgba(255,255,255,.075); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.btn-sm { padding: 9px 16px; }

/* Cards -> glass, rounded, hover lift */
.card { background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.042)); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); box-shadow: inset 0 1px 0 rgba(255,255,255,.10); position: relative; overflow: hidden; transition: transform .24s ease, border-color .24s ease, background .24s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(244,201,93,.34); }
.card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -60px; top: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(244,201,93,.18), transparent 66%); pointer-events: none; }
.card .ic { width: 50px; height: 50px; border-radius: 16px; background: rgba(244,201,93,.12); border: 1px solid rgba(244,201,93,.22); color: var(--gold); }
.card .ic svg { width: 24px; height: 24px; }

/* Sub-page hero */
.ph::before { background: radial-gradient(560px 280px at 28% 0, rgba(244,201,93,.14), transparent 70%); height: 360px; }
.ph h1 { letter-spacing: -.04em; }

/* Section heads bigger */
.section-head h2 { letter-spacing: -.03em; }

/* Platform table -> modern */
table.plat { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.10); }
table.plat thead th { background: rgba(255,255,255,.04); }
table.plat tbody tr { background: rgba(255,255,255,.03); }
table.plat tbody tr:hover { background: rgba(255,255,255,.06); }

/* Pricing */
.price { border-radius: var(--radius); box-shadow: inset 0 1px 0 rgba(255,255,255,.09); }
.price.featured { box-shadow: 0 24px 70px rgba(244,201,93,.12), inset 0 1px 0 rgba(255,255,255,.16); }

/* Glass-ify the supporting blocks */
.proof, .kv .item, .qa, .step, .gstep, .freebar, .guarantee, .frame, .disclaimer, .legal .note, .specimen { border-radius: var(--radius); }
.disclaimer, .kv .item, .qa { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border-color: rgba(255,255,255,.10); }

/* Reveal already defined; keep */

/* ============================================================
   MOBILE OPTIMISATION (sub-pages on style.css)
   The landing uses modern.css which is already responsive.
   ============================================================ */
@media (max-width: 860px) {
  .grid-3, .grid-2, .kv, .prices { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 18px; }

  /* Nav: wrap the links into a usable menu instead of hiding them */
  .nav .wrap { height: auto; min-height: 60px; flex-wrap: wrap; gap: 8px 16px; padding: 12px 0; }
  .nav-links { width: 100%; gap: 14px 18px; flex-wrap: wrap; font-size: 14px; align-items: center; }
  .nav-links a:not(.btn) { display: inline-flex; }
  .nav-links .btn { margin-left: auto; }

  .announce .wrap { font-size: 12px; gap: 8px; padding: 8px 0; }

  .ph { padding: 34px 0 14px; }
  .ph h1 { font-size: clamp(30px, 9vw, 42px); }
  .ph .lead { font-size: 16px; }

  section { padding: 46px 0; }
  .section-head h2 { font-size: clamp(26px, 8vw, 34px); }

  /* Wide comparison tables scroll inside their own block, not the page */
  .tier { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
  table.plat { min-width: 640px; }

  /* Stacked layouts */
  .steps .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step .big { font-size: 40px; }
  .guide .gstep { grid-template-columns: 34px 1fr; gap: 14px; }
  .legal { max-width: 100%; }
  .disclaimer { padding: 18px; }
  .sample .body { padding: 20px; }
  .grid { gap: 14px; }
}
@media (max-width: 480px) {
  .ph h1 { font-size: 30px; }
  table.plat { min-width: 560px; }
  .btn { width: 100%; justify-content: center; }
  .nav-links .btn { width: auto; }
}
