/* Paramanand Tech — Apex Network Design */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

:root {
  --bg: #0E0F12;
  --bg-2: #16181D;
  --surface: #1C1F26;
  --surface-2: #242830;
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.14);
  --accent: #FACC15;
  --accent-2: #EAB308;
  --accent-dim: rgba(250,204,21,0.14);
  --heading: #F3F4F6;
  --text: #C5CAD3;
  --text-dim: #8B93A1;
  --text-mute: #5C6470;
  --success: #4ADE80;
  --danger: #F87171;
  --radius: 2px;
  --container: 1160px;
  --gutter: clamp(18px, 3vw, 32px);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --display: 'Syne', system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    linear-gradient(90deg, rgba(250,204,21,0.03) 1px, transparent 1px),
    linear-gradient(rgba(250,204,21,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #0E0F12; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 5vw + 1rem, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1vw + 1rem, 1.4rem); }
.lead { font-size: 1.08rem; color: var(--text-dim); max-width: 58ch; }
.accent { color: var(--accent); }
.serif { font-family: var(--display); font-style: italic; font-weight: 500; text-transform: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 7vw, 88px) 0; position: relative; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 200; background: var(--bg); display: grid; place-items: center; transition: .4s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__mark { width: 56px; height: 56px; margin: 0 auto 14px; animation: spin 2s linear infinite; }
.preloader__text { font-family: var(--display); font-size: .85rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mute); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 16px 0; }
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__brand img { height: 42px; width: auto; max-width: none; object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav__links { display: flex; gap: 2px; }
.nav__links a {
  padding: 10px 14px; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-dim);
  border-bottom: 2px solid transparent; transition: .2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--heading); border-bottom-color: var(--accent); }
.nav__cta { display: flex; gap: 10px; align-items: center; justify-self: end; flex-shrink: 0; white-space: nowrap; }
.nav__burger { display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span, .nav__burger::before, .nav__burger::after {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--heading);
}
.nav__burger span { top: 50%; transform: translateY(-50%); }
.nav__burger::before { content: ''; top: 12px; }
.nav__burger::after { content: ''; bottom: 12px; }
.nav__burger.is-open span { opacity: 0; }
.nav__burger.is-open::before { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open::after { bottom: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 90px var(--gutter) 32px; transform: translateX(100%); transition: .3s; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 16px 0; font-family: var(--display); font-size: 1.4rem; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--accent); color: #0E0F12;
  border: 1px solid var(--accent); transition: .2s;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent-dim); }
.btn--sm { padding: 8px 14px; font-size: .75rem; }
.btn--lg { padding: 15px 28px; font-size: .85rem; }

/* Section label */
.eyebrow, .section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  padding-left: 14px; border-left: 3px solid var(--accent); margin-bottom: 14px;
}
.eyebrow .dot { display: none; }

/* Hero — centered cinematic */
.hero { position: relative; padding: clamp(72px, 10vw, 120px) 0 0; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,0.3) 0%, var(--bg) 85%);
  z-index: 1; pointer-events: none;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.hero__title { color: var(--heading); margin-top: 8px; }
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--accent); }
.hero__sub { margin: 22px auto 0; font-size: 1.1rem; }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  padding: 8px 14px; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  border: 1px solid var(--line-strong); background: rgba(28,31,38,0.7);
  color: var(--text-dim);
}
.chip b { color: var(--heading); }

/* Stats band */
.stats-band {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--line);
}
.stat-block:last-child { border-right: 0; }
.stat-block .num { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--accent); font-weight: 800; }
.stat-block .num .plus { font-size: 1.2rem; }
.stat-block .lbl { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px; }

/* Legacy hero compat */
.hero__layout, .hero__content, .hero__panel, .hero__metrics, .hero__badges, .hero__ctas, .hero__float { display: none; }
.badge-pill, .metric { display: none; }

/* Brands strip */
.logos { padding: 36px 0; border-bottom: 1px solid var(--line); }
.logos__title { text-align: center; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 20px; }
.logos__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
.logos__item {
  padding: 6px 12px; font-size: .78rem; font-weight: 600; color: var(--text-mute);
  border: 1px solid var(--line); background: var(--surface);
}
.logos__marquee, .logos__track { display: none; }

/* Section head */
.section-head { margin-bottom: 40px; }
.section-head.is-center { text-align: center; }
.section-head.is-center .lead { margin: 14px auto 0; }
.section-head h2 { color: var(--heading); margin-top: 4px; }

/* Feature timeline */
.feature-timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--line); margin-left: 12px; }
.feature-timeline .card {
  margin-left: 24px; margin-bottom: 20px; padding: 24px 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); position: relative;
}
.feature-timeline .card::before {
  content: ''; position: absolute; left: -31px; top: 28px;
  width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg);
}
.bento { display: none; }

/* Cards */
.card {
  padding: 24px; background: var(--surface); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(250,204,21,0.35); transform: translateY(-2px); }
.card__icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--accent-dim); color: var(--accent); margin-bottom: 14px;
}
.card__icon svg { width: 20px; height: 20px; }
.card__title { color: var(--heading); margin-bottom: 8px; font-family: var(--display); text-transform: uppercase; font-size: .95rem; letter-spacing: .04em; }
.card__body { font-size: .92rem; color: var(--text-dim); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--line); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Verticals — 2 col grid */
.verticals-scroll { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vertical {
  display: grid; grid-template-columns: 140px 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); overflow: hidden;
  transition: .2s;
}
.vertical:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.vertical__thumb { aspect-ratio: auto; height: 100%; min-height: 140px; }
.vertical__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vertical__body { padding: 18px 20px; }
.vertical__tag { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.vertical__num { font-size: .7rem; color: var(--text-mute); margin: 4px 0; }
.vertical__title { display: block; font-family: var(--display); font-size: 1rem; color: var(--heading); margin-bottom: 6px; text-transform: uppercase; }
.vertical__meta { display: flex; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: .75rem; color: var(--text-mute); }
.vertical__meta b { color: var(--accent); }

/* Platform steps */
.feature-stack { display: flex; flex-direction: column; gap: 48px; }
.feature-card {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px; align-items: start;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.feature-card:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-card:nth-child(even) { direction: ltr; }
.feature-card__num {
  font-family: var(--display); font-size: 3rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px var(--accent); line-height: 1;
}
.feature-card__title { color: var(--heading); margin-top: 8px; font-family: var(--display); text-transform: uppercase; }
.feature-card__media { border: 1px solid var(--line); overflow: hidden; aspect-ratio: 4/3; }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row__num { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); }
.feature-row__title { color: var(--heading); margin-top: 10px; }
.feature-row__media { border: 1px solid var(--line); overflow: hidden; aspect-ratio: 4/3; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.checks { margin-top: 16px; }
.checks li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: .9rem; color: var(--text-dim); }
.checks li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Pricing — stacked */
.price-grid { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.price {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 24px 28px; background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--line);
}
.price.is-featured { border-left-color: var(--accent); background: linear-gradient(90deg, var(--accent-dim), var(--surface)); }
.price__tag { display: none; }
.price__kind { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.price__amount { font-family: var(--display); font-size: 1.8rem; color: var(--heading); margin: 4px 0; }
.price__amount .unit { font-size: .9rem; color: var(--text-mute); font-family: var(--font); font-weight: 500; }
.price__desc { font-size: .88rem; grid-column: 1; }
.price__list { display: none; }
.price .btn { justify-self: end; align-self: center; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-featured { display: none; }
.quote-stack { display: contents; }
.quote {
  padding: 24px; background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}
.quote__text { font-size: .9rem; color: var(--text-dim); line-height: 1.6; font-style: italic; }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line-strong); }
.quote__author .who { font-weight: 700; font-size: .85rem; color: var(--heading); }
.quote__author .role { font-size: .75rem; color: var(--text-mute); }

/* CTA */
.cta-band {
  padding: clamp(48px, 6vw, 72px);
  background: var(--accent); color: #0E0F12;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}
.cta-band h2 { color: #0E0F12; text-transform: uppercase; }
.cta-band .lead { color: rgba(14,15,18,0.75); }
.cta-band .eyebrow, .cta-band .section-label { color: #0E0F12; border-left-color: #0E0F12; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band .btn { background: #0E0F12; color: var(--heading); border-color: #0E0F12; }
.cta-band .btn--ghost { background: transparent; color: #0E0F12; border-color: rgba(14,15,18,0.35); }
.cta-band .btn--ghost:hover { background: rgba(14,15,18,0.1); color: #0E0F12; }

/* Footer */
.site-footer { background: #08090B; border-top: 3px solid var(--accent); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand p { font-size: .88rem; color: var(--text-mute); margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer h5 { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--heading); margin-bottom: 14px; }
.footer ul a { font-size: .88rem; color: var(--text-mute); }
.footer ul a:hover { color: var(--accent); }
.footer ul li { margin-bottom: 8px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text-dim); }
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 15px; height: 15px; }
.newsletter { display: flex; gap: 0; margin-top: 10px; }
.newsletter input { flex: 1; padding: 10px 12px; background: var(--surface); border: 1px solid var(--line); color: var(--heading); }
.newsletter button { padding: 10px 14px; background: var(--accent); color: #0E0F12; font-weight: 700; font-size: .75rem; text-transform: uppercase; border: 1px solid var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--text-mute);
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--accent); }

.top-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 42px; height: 42px; background: var(--accent); color: #0E0F12;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .2s;
}
.top-btn.is-visible { opacity: 1; visibility: visible; }
.top-btn svg { width: 18px; height: 18px; }

/* Page hero */
.page-hero {
  padding: clamp(40px, 5vw, 60px) 0 clamp(32px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { display: flex; flex-direction: column; gap: 0; }
.page-hero h1 { color: var(--heading); text-transform: uppercase; margin-top: 16px; max-width: 18ch; line-height: 1.05; }
.page-hero p { max-width: 58ch; margin-top: 16px; font-size: 1.05rem; line-height: 1.7; color: var(--text-dim); }
.page-hero .mt-32 { margin-top: 28px; }
.page-hero + .section { padding-top: clamp(48px, 6vw, 72px); }
.section + .section { padding-top: 0; border-top: 1px solid var(--line); }
.breadcrumbs { font-size: .78rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: .5s; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.filter-chip {
  padding: 8px 14px; font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; border: 1px solid var(--line); color: var(--text-dim);
  background: var(--surface);
}
.filter-chip.is-active, .filter-chip:hover { background: var(--accent); color: #0E0F12; border-color: var(--accent); }

/* Timeline */
.timeline { max-width: 600px; margin: 0 auto; border-left: 2px solid var(--accent); padding-left: 28px; }
.timeline-item { padding: 0 0 28px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -35px; top: 6px;
  width: 8px; height: 8px; background: var(--accent);
}
.timeline-item .yr { font-family: var(--display); font-size: 1.2rem; color: var(--accent); font-weight: 800; }
.timeline-item h4 { color: var(--heading); margin: 6px 0; text-transform: uppercase; font-size: .95rem; }

/* FAQ */
.faq { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-weight: 600; color: var(--heading); text-align: left;
  font-size: .95rem;
}
.faq-item__q .ic { color: var(--accent); font-size: 1.1rem; transition: .2s; }
.faq-item.is-open .faq-item__q .ic { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: .3s; }
.faq-item.is-open .faq-item__a { max-height: 200px; padding-bottom: 16px; }
.faq-item__a p { font-size: .9rem; }

/* Posts */
.posts { display: flex; flex-direction: column; gap: 16px; }
.post {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
  padding: 16px; background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid transparent; transition: .2s;
}
.post:hover { border-left-color: var(--accent); }
.post__media { aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--line); }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__meta { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px; }
.post__meta .cat { color: var(--accent); }
.post__title { font-family: var(--display); font-size: 1.1rem; color: var(--heading); text-transform: uppercase; margin-bottom: 6px; }
.post__excerpt { font-size: .88rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .ic {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--accent-dim); color: var(--accent); flex-shrink: 0;
}
.contact-info h5 { color: var(--heading); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-info a { color: var(--accent); }
.fallback-note { display: flex; gap: 14px; padding: 16px; background: var(--surface); border: 1px solid var(--line); margin-top: 24px; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text);
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); outline: none; }
.textarea { min-height: 120px; resize: vertical; }
.form-section { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding-top: 12px; border-top: 1px solid var(--line); }
.agree-line { display: flex; gap: 10px; font-size: .85rem; color: var(--text-dim); }
.agree-line a { color: var(--accent); }

/* Auth */
.auth { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
.auth__aside {
  padding: clamp(40px, 5vw, 64px); background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
}
.auth__aside h2 { color: var(--heading); text-transform: uppercase; }
.badge {
  display: inline-block; padding: 5px 10px; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--accent); color: var(--accent);
}
.quote-mini { font-size: .88rem; font-style: italic; color: var(--text-dim); border-left: 3px solid var(--accent); padding-left: 14px; margin-top: 24px; }
.auth__visual { margin-top: auto; border: 1px solid var(--line); }
.auth__visual img { width: 100%; }
.auth__main { display: grid; place-items: center; padding: 40px var(--gutter); }
.form-wrap { width: 100%; max-width: 440px; }
.form-wrap h1 { font-size: 1.6rem; color: var(--heading); }
.form-wrap .meta { color: var(--text-mute); margin: 8px 0 20px; font-size: .88rem; }
.form-wrap .alt { text-align: center; margin-top: 20px; font-size: .88rem; }
.form-wrap .alt a { color: var(--accent); font-weight: 600; }
.signup-success { text-align: center; }
.signup-success__icon { width: 56px; height: 56px; margin: 0 auto 16px; display: grid; place-items: center; background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.signup-success__list { text-align: left; max-width: 380px; margin: 20px auto; }
.signup-success__list li { display: flex; gap: 10px; margin-bottom: 8px; font-size: .88rem; }
.signup-success__list .check { width: 6px; height: 6px; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.signup-success__ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
[hidden] { display: none !important; }
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(0,0,0,0.2); border-top-color: #000; border-radius: 50%; animation: spin .8s linear infinite; }

/* Legal */
.legal h2 { font-size: 1.2rem; margin-top: 28px; color: var(--heading); text-transform: uppercase; }
.legal h3 { font-size: 1rem; margin-top: 16px; color: var(--heading); }
.legal p, .legal li { font-size: .9rem; color: var(--text-dim); margin-bottom: 8px; line-height: 1.7; }
.legal ul { padding-left: 1.2rem; margin-bottom: 12px; }
.legal ul li { list-style: disc; }
.legal a { color: var(--accent); }
.legal .toc { background: var(--surface); border: 1px solid var(--line); padding: 18px; margin-bottom: 20px; }
.legal .updated { font-size: .85rem; color: var(--text-mute); }

/* Hide old top bar */
.top-bar { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: 0; }
  .verticals-scroll { grid-template-columns: 1fr; }
  .vertical { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card__num { font-size: 2rem; }
  .testimonials, .footer-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feature-row, .contact-grid, .auth { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .auth__aside { display: none; }
}
@media (max-width: 640px) {
  .stats-band .container { grid-template-columns: 1fr; }
  .stat-block { border-right: 0; border-bottom: 1px solid var(--line); }
  .post { grid-template-columns: 1fr; }
  .price { grid-template-columns: 1fr; }
  .price .btn { justify-self: start; }
  .field--row { grid-template-columns: 1fr; }
  .cta-band { clip-path: none; }
}
