/* ===========================================================
   MODULER HRM - Landing design system
   Geist + Geist Mono - refined navy/teal - light + dark
   =========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;450;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap');

:root {
  --r-sm: 8px;
  --r: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-full: 999px;
  --container: 1200px;
  --nav-h: 72px;

  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', 'SF Mono', ui-monospace, Menlo, monospace;

  --teal: oklch(0.72 0.13 168);
  --teal-strong: oklch(0.66 0.14 168);
}

[data-theme="dark"] {
  --bg: oklch(0.165 0.022 255);
  --bg-deep: oklch(0.135 0.02 255);
  --surface: oklch(0.205 0.024 255);
  --surface-2: oklch(0.235 0.026 255);
  --surface-hi: oklch(0.265 0.028 255);
  --border: oklch(0.30 0.025 255);
  --border-soft: oklch(0.255 0.022 255);
  --text: oklch(0.97 0.006 255);
  --text-muted: oklch(0.74 0.018 255);
  --text-subtle: oklch(0.60 0.022 255);

  --accent: oklch(0.78 0.13 168);
  --accent-ink: oklch(0.20 0.04 168);
  --accent-line: oklch(0.45 0.09 168);
  --accent-glow: oklch(0.78 0.13 168 / 0.14);
  --accent-soft: oklch(0.30 0.05 168 / 0.55);

  --primary: oklch(0.70 0.10 245);
  --gold: oklch(0.80 0.13 78);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow: 0 8px 24px oklch(0 0 0 / 0.36);
  --shadow-lg: 0 28px 70px oklch(0 0 0 / 0.5);
  --hero-tint: oklch(0.205 0.03 168 / 0.18);
  --grid-line: oklch(1 0 0 / 0.035);
}

[data-theme="light"] {
  --bg: oklch(0.985 0.004 255);
  --bg-deep: oklch(0.965 0.006 255);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.975 0.005 255);
  --surface-hi: oklch(0.96 0.008 255);
  --border: oklch(0.90 0.01 255);
  --border-soft: oklch(0.93 0.008 255);
  --text: oklch(0.21 0.03 255);
  --text-muted: oklch(0.44 0.026 255);
  --text-subtle: oklch(0.58 0.022 255);

  --accent: oklch(0.52 0.12 168);
  --accent-ink: oklch(0.99 0.01 168);
  --accent-line: oklch(0.80 0.07 168);
  --accent-glow: oklch(0.55 0.12 168 / 0.10);
  --accent-soft: oklch(0.93 0.04 168);

  --primary: oklch(0.48 0.13 245);
  --gold: oklch(0.62 0.13 70);

  --shadow-sm: 0 1px 2px oklch(0.4 0.03 255 / 0.06);
  --shadow: 0 10px 30px oklch(0.4 0.05 255 / 0.10);
  --shadow-lg: 0 30px 70px oklch(0.4 0.06 255 / 0.16);
  --hero-tint: oklch(0.85 0.05 168 / 0.22);
  --grid-line: oklch(0.4 0.03 255 / 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html[data-theme] { background: var(--bg); color: var(--text); }
header, main, footer { color: var(--text); }
body {
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01';
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
svg { display: block; }
img { max-width: 100%; }
section { position: relative; scroll-margin-top: 90px; }
::selection { background: var(--accent-soft); color: var(--text); }

.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.section { padding: 116px 0; }
@media (max-width: 760px) { .section { padding: 76px 0; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-line);
}
.h-sec {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-wrap: balance;
}
.sub-sec {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 56ch;
  text-wrap: pretty;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .sub-sec { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--r-sm);
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-primary:hover { background: var(--accent-strong, var(--teal-strong)); transform: translateY(-1px); box-shadow: 0 10px 26px var(--accent-glow); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-subtle); transform: translateY(-1px); }
.btn-lg { padding: 15px 24px; font-size: 15.5px; border-radius: 10px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom-color: var(--border-soft);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; font-size: 16.5px; letter-spacing: -0.02em; }
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--surface-hi), var(--surface));
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 19px; height: 19px; color: var(--accent); }
.logo-mark::after { content: ""; position: absolute; top: 6px; right: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.logo b { font-weight: 600; }
.logo .lo-sub { color: var(--text-subtle); font-weight: 450; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; color: var(--text-muted); font-weight: 450; }
.nav-links a { transition: color .2s ease; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, transform .2s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--text-subtle); }
.theme-toggle svg { width: 18px; height: 18px; }
.menu-btn { display: none; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--border); color: var(--text); place-items: center; }
.menu-btn svg { width: 20px; height: 20px; }
.mobile-menu { display: none; padding: 10px 0 18px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; color: var(--text-muted); border-top: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 12px; }

.hero { padding: 78px 0 40px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 20%, #000 10%, transparent 75%);
}
.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 620px;
  height: 620px;
  z-index: 0;
  background: radial-gradient(circle, var(--hero-tint), transparent 62%);
  pointer-events: none;
  filter: blur(8px);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 1.1fr; gap: 64px; align-items: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px 7px 9px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 450;
}
.pill .pill-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  text-transform: uppercase;
}
.hero-title {
  margin-top: 26px;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub { margin-top: 24px; max-width: 30em; color: var(--text-muted); font-size: clamp(16px, 1.6vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 18px; display: flex; align-items: center; gap: 8px; color: var(--text-subtle); font-size: 13px; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent); }

.mock {
  position: relative;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-bottom: 1px solid var(--border-soft); background: var(--surface-2); }
.mock-dots { display: flex; gap: 7px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border); display: block; }
.mock-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-subtle);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
  padding: 5px 12px;
}
.mock-url svg { width: 12px; height: 12px; color: var(--accent); }
.mock-app { display: grid; grid-template-columns: 168px 1fr; min-height: 430px; }
.mock-side { border-right: 1px solid var(--border-soft); padding: 14px 10px; background: var(--surface-2); display: flex; flex-direction: column; gap: 3px; }
.mock-side .ms-label { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-subtle); padding: 12px 8px 5px; }
.mock-nav { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: var(--r-sm); color: var(--text-muted); font-size: 12.5px; font-weight: 450; }
.mock-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.mock-nav.active { background: var(--accent-soft); color: var(--accent); font-weight: 500; }
.mock-nav .mn-badge { margin-left: auto; font-family: var(--mono); font-size: 9px; padding: 1px 5px; border-radius: 5px; background: var(--gold); color: oklch(0.2 0.04 78); font-weight: 600; }
.mock-main { padding: 16px 18px; overflow: hidden; }
.mock-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.mock-h h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.mock-h .mh-eye { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-subtle); }
.mock-h .mh-btn { font-size: 11px; padding: 5px 10px; border-radius: 7px; background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.mstat { border: 1px solid var(--border-soft); border-radius: var(--r-sm); padding: 10px 11px; background: var(--bg); }
.mstat .ms-k { font-size: 10px; color: var(--text-subtle); display: flex; align-items: center; gap: 5px; }
.mstat .ms-k svg { width: 12px; height: 12px; color: var(--accent); }
.mstat .ms-v { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-top: 5px; font-feature-settings: 'tnum'; }
.mstat .ms-d { font-family: var(--mono); font-size: 9.5px; margin-top: 2px; color: var(--accent); }
.mstat .ms-d.down { color: oklch(0.66 0.16 25); }
.mock-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 9px; }
.mcard { border: 1px solid var(--border-soft); border-radius: var(--r-sm); background: var(--bg); padding: 12px; }
.mcard .mc-t { font-size: 11.5px; font-weight: 500; color: var(--text-muted); margin-bottom: 11px; display: flex; align-items: center; justify-content: space-between; }
.mcard .mc-t .mono { font-family: var(--mono); font-size: 9.5px; color: var(--text-subtle); }
.mbars { display: flex; align-items: flex-end; gap: 6px; height: 84px; }
.mbars i { flex: 1; border-radius: 3px 3px 0 0; background: var(--accent-soft); display: block; }
.mbars i.hi { background: var(--accent); }
.mlist { display: flex; flex-direction: column; gap: 9px; }
.mrow { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.mrow .mav { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 8.5px; font-weight: 600; color: #fff; flex-shrink: 0; font-family: var(--mono); }
.mrow .mnm { color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow .mtag { margin-left: auto; font-family: var(--mono); font-size: 8.5px; padding: 2px 6px; border-radius: var(--r-full); }
.mtag.on { background: var(--accent-soft); color: var(--accent); }
.mtag.lv { background: var(--surface-hi); color: var(--text-subtle); }

.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--border-soft); }
.statband .sb { background: var(--surface); padding: 26px 22px; }
.statband .sb-v { font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -0.04em; font-feature-settings: 'tnum'; }
.statband .sb-v em { color: var(--accent); font-style: normal; }
.statband .sb-l { margin-top: 6px; color: var(--text-muted); font-size: 13.5px; }

.logos { padding: 40px 0 8px; }
.logos-label { text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 26px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 36px; }
.logo-row .cust { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 16px; font-weight: 500; letter-spacing: -0.01em; opacity: .85; transition: opacity .2s, color .2s; }
.logo-row .cust svg { width: 20px; height: 20px; color: var(--text-subtle); }
.logo-row .cust:hover { opacity: 1; color: var(--text); }

.card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 26px;
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}
.card:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
}
.ic svg { width: 22px; height: 22px; }
.card h3 { margin-top: 18px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.card p { margin-top: 9px; color: var(--text-muted); font-size: 14.5px; }
.card .num { font-family: var(--mono); font-size: 11px; color: var(--text-subtle); letter-spacing: .1em; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.problem-card .ic { background: var(--surface-2); color: var(--text-muted); border-color: var(--border); }
.problem-card { display: flex; flex-direction: column; }
.problem-card .pc-head { display: flex; align-items: center; justify-content: space-between; }

.features { background: var(--bg-deep); border-block: 1px solid var(--border-soft); }
.feature-card { padding: 22px; }
.feature-card .ic { width: 42px; height: 42px; border-radius: 11px; }
.feature-card .ic svg { width: 20px; height: 20px; }
.feature-card h3 { margin-top: 16px; font-size: 16px; }
.feature-card p { font-size: 13.5px; margin-top: 7px; }
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--accent-ink);
}
.features-more { margin-top: 30px; text-align: center; color: var(--text-muted); font-size: 14.5px; }
.features-more b { color: var(--text); font-weight: 600; }

.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checks { list-style: none; display: grid; gap: 13px; margin-top: 28px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-size: 15px; }
.checks li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.checks li b { color: var(--text); font-weight: 500; }

.pipeline { display: grid; gap: 12px; }
.pipe {
  position: relative;
  padding: 15px 18px;
  border-radius: var(--r);
  font-weight: 450;
  font-size: 14.5px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pipe .pn { font-family: var(--mono); font-size: 11px; color: var(--text-subtle); }
.pipe.terminal { background: var(--accent-soft); border-color: var(--accent-line); color: var(--text); font-weight: 500; }
.pipe.terminal .pn { color: var(--accent); }
.pipe:not(:last-child)::after { content: ""; position: absolute; left: 50%; bottom: -12px; width: 1px; height: 12px; background: var(--border); }
.kvkk { margin-top: 22px; padding: 22px; border-radius: var(--r-md); background: var(--accent-soft); border: 1px solid var(--accent-line); }
.kvkk-head { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.kvkk-head svg { width: 18px; height: 18px; color: var(--accent); }
.kvkk p { margin-top: 8px; color: var(--text-muted); font-size: 13.5px; }
.kvkk p em { font-style: normal; color: var(--accent); font-weight: 500; }

.level-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.level-card { display: flex; flex-direction: column; min-height: 240px; }
.level-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 5px 11px;
  border-radius: var(--r-full);
  border: 1px solid;
}
.lt-junior { color: oklch(0.74 0.13 155); border-color: oklch(0.55 0.1 155 / .5); background: oklch(0.6 0.12 155 / .12); }
.lt-mid { color: oklch(0.74 0.12 230); border-color: oklch(0.55 0.1 230 / .5); background: oklch(0.6 0.12 230 / .12); }
.lt-senior { color: oklch(0.76 0.14 65); border-color: oklch(0.6 0.12 65 / .5); background: oklch(0.7 0.13 65 / .12); }
.lt-expert { color: oklch(0.72 0.16 20); border-color: oklch(0.58 0.14 20 / .5); background: oklch(0.62 0.16 20 / .12); }
.level-card .q { margin-top: 20px; font-weight: 550; font-size: 15px; letter-spacing: -0.01em; }
.level-card .a { margin-top: 12px; color: var(--text-muted); font-size: 13.5px; padding-top: 12px; border-top: 1px solid var(--border-soft); }
.level-card .a b { color: var(--accent); font-weight: 500; }
.patent { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.patent svg { width: 17px; height: 17px; color: var(--gold); }

.pricing { background: var(--bg-deep); border-block: 1px solid var(--border-soft); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow); }
.price-card .pop {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 4px 9px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--accent-ink);
  text-transform: uppercase;
}
.price-card .plan { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.price-card .plan .size { display: block; font-family: var(--mono); font-size: 11px; color: var(--text-subtle); margin-top: 3px; letter-spacing: .04em; }
.price-card .amt { margin-top: 20px; font-size: 34px; font-weight: 600; letter-spacing: -0.04em; font-feature-settings: 'tnum'; }
.price-card .amt span { font-size: 15px; color: var(--text-subtle); font-weight: 450; letter-spacing: 0; }
.price-card .yr { margin-top: 8px; color: var(--text-subtle); font-size: 13px; font-family: var(--mono); }
.price-card .btn { margin-top: 22px; width: 100%; }
.price-note { margin-top: 28px; text-align: center; color: var(--text-muted); font-size: 14px; }
.price-note b { color: var(--text); font-weight: 600; }

.signup-card {
  width: min(100%, 760px);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-grid-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px;
  width: 100%;
}
.form-grid-2 > .field { min-width: 0; }
.field,
.signup-card .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.field.full { grid-column: 1 / -1; }
.field label,
.signup-card label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.signup-card input,
.signup-card select,
.signup-card .suffix-wrap input {
  height: 46px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.signup-card input:focus,
.signup-card select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.signup-card input::placeholder { color: var(--text-subtle); }
.signup-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.signup-card select option { color: #111; }
.suffix-wrap { display: flex; align-items: stretch; gap: 0; width: 100%; }
.suffix-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.suffix-wrap input {
  border-radius: var(--r) 0 0 var(--r) !important;
  border-right: none !important;
  flex: 1;
  min-width: 0;
}
.suffix-wrap input:focus { box-shadow: none; }
.suffix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--text-subtle);
  font-size: 12px;
  white-space: nowrap;
  height: 46px;
}
.hint { font-size: 12px; color: var(--text-subtle); font-family: var(--mono); }
.phone-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.phone-wrap input {
  border-radius: 0 var(--r) var(--r) 0 !important;
  border-left: none !important;
  flex: 1;
  min-width: 0;
}
.signup-card input#phone { min-width: 0; }
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 46px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r) 0 0 var(--r);
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pw-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pw-field-wrap input { padding-right: 64px !important; }
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-subtle);
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
  font-family: var(--font);
}
.pw-toggle:hover { color: var(--text); }
.signup-card .submit { width: 100%; height: 52px; margin-top: 4px; font-size: 15.5px; }
.terms { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--text-subtle); }
.terms a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: var(--r-full); background: var(--bg); border: 1px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }
.trust span svg { width: 15px; height: 15px; color: var(--accent); }

footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer-desc { margin-top: 16px; color: var(--text-muted); max-width: 34ch; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); transition: color .2s, border-color .2s; }
.socials a:hover { color: var(--text); border-color: var(--text-subtle); }
.socials a svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a,
.footer-col li { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--text-subtle); font-size: 13px; }
.footer-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 20px; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

@media (max-width: 1000px) {
  .hero-grid, .ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .level-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2, .level-grid, .price-grid, .form-grid-2, .footer-grid, .mock-row, .mock-stats { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: auto; }
  .signup-card { padding: 24px; }
  .nav-cta .desktop-only { display: none; }
  .mock-app { grid-template-columns: 1fr; }
  .mock-side { display: none; }
}
