/* ==========================================================================
   MinijobGuard — landing page styles
   Dark, calm, premium. Lime accent. Mono labels.
   ========================================================================== */

/* ─────────────────────────── Self-hosted fonts ───────────────────────────
   Geist + Geist Mono, served from /assets/fonts (see README there).
   No third-party request to Google — drop the WOFF2 files in and you're done.
   Until then, the body falls back to system-ui via the --font-sans stack. */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Geist-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/Geist-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/Geist-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/Geist-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/GeistMono-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/GeistMono-Medium.woff2") format("woff2");
}

:root {
  /* Surfaces */
  --bg: #07090d;
  --bg-soft: #0c111a;
  --surface: #131a24;
  --surface-2: #1a2230;
  --surface-3: #232c3c;

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(255, 255, 255, 0.18);

  /* Text */
  --text: #f2f4f7;
  --text-muted: #8b97ab;
  --text-dim: #5e6a7e;
  --text-faint: #475061;

  /* Accents */
  --accent: #bff13a;          /* CTA lime — also overridden by Tweaks */
  --accent-ink: #08110c;      /* high-contrast text on accent */
  --accent-soft: color-mix(in oklab, var(--accent) 14%, transparent);
  --accent-ring: color-mix(in oklab, var(--accent) 32%, transparent);

  --success: #34d399;
  --warn: #f0b548;
  --danger: #f26b5c;

  /* Type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 24px 60px -24px rgba(0,0,0,0.65), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-glow: 0 0 0 1px var(--accent-ring), 0 0 60px -10px color-mix(in oklab, var(--accent) 30%, transparent);
}

/* ─────────────────────────── Reset ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
input, button { font-family: inherit; }

/* Background field — subtle navy haze top + bottom */
.page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% -10%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(82, 110, 200, 0.10), transparent 60%),
    var(--bg);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────── Type ─────────────────────────── */
.h2 {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text);
  text-wrap: balance;
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
  text-wrap: pretty;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 56px;
}

/* ─────────────────────────── Atoms ─────────────────────────── */
.check {
  color: var(--accent);
  flex-shrink: 0;
}

.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}
.pill-ok { color: var(--success); border-color: color-mix(in oklab, var(--success) 35%, transparent); }
.pill-warn { color: var(--warn); border-color: color-mix(in oklab, var(--warn) 35%, transparent); }

/* ─────────────────────────── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--border-bright); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding: 4px 2px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.text-link:hover { border-color: var(--accent); color: var(--accent); }

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  min-width: 178px;
}
.store-btn:hover { transform: translateY(-1px); border-color: var(--border-bright); }
.store-btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}
.store-btn-primary:hover {
  background: color-mix(in oklab, var(--accent) 92%, white);
}
/* Coming-soon state: dimmer, slightly muted, no pointer */
.store-btn.is-soon {
  cursor: default;
  opacity: 0.85;
}
.store-btn.is-soon:hover {
  transform: none;
  border-color: var(--border-strong);
}
.store-btn-primary.is-soon {
  background: color-mix(in oklab, var(--accent) 78%, var(--bg));
  color: color-mix(in oklab, var(--accent-ink) 85%, transparent);
}
.store-btn-primary.is-soon:hover {
  background: color-mix(in oklab, var(--accent) 78%, var(--bg));
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.store-btn-top {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
  font-family: var(--font-mono);
}
.store-btn-bot {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─────────────────────────── Nav ─────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: 0 0 0 1px var(--border-strong);
}
.brand-name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255,255,255,0.02);
}
.lang-switch button {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.18s ease, background 0.18s ease;
}
.lang-switch button.is-active {
  background: var(--text);
  color: var(--bg);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  transition: transform 0.18s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ─────────────────────────── Hero ─────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--success) 18%, transparent);
}
.hero-h1 {
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-wrap: balance;
}
.hero-h1-accent {
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-top: 28px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Hero stage (phone + callouts) */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 640px;
}
.hero-glow {
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(closest-side, color-mix(in oklab, var(--accent) 28%, transparent), transparent 70%),
    radial-gradient(closest-side at 70% 60%, rgba(60, 110, 220, 0.20), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.phone-hero {
  position: relative;
  z-index: 1;
  transform: rotate(-4deg);
}

/* Phone mockup */
.phone {
  --phone-w: 290px;
  width: var(--phone-w);
  aspect-ratio: 290 / 600;
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
}
.phone-bezel {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1d242f, #0b0f15);
  border-radius: 42px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.5);
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: #0a0d12;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-callout {
  position: absolute;
  z-index: 2;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
}
.hero-callout-top {
  top: 8%;
  right: -8%;
}
.hero-callout-bottom {
  bottom: 10%;
  left: -10%;
}
.callout-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--success) 18%, transparent);
}
.callout-dot-ok { background: var(--success); }
.callout-label {
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.1;
}
.callout-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}
.callout-num {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* Hero marquee (keyword band) */
.hero-marquee {
  margin-top: 96px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.marquee-item::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--border-bright);
  margin-left: 56px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.no-marquee .hero-marquee { display: none; }
.is-dense .hero { padding-top: 48px; }
.is-dense .hero-stage { height: 540px; }
.is-dense .phone { --phone-w: 250px; }

/* ─────────────────────────── Section base ─────────────────────────── */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

/* ─────────────────────────── Problem ─────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.problem-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
}
.problem-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.problem-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────────────────────── Features ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-soft);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.2s ease;
  min-height: 280px;
}
.feature-card:hover { background: var(--surface); }
.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}
.feature-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--accent) 24%, transparent);
  background: var(--accent-soft);
}
.feature-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.feature-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────────────────────── Screens rail ─────────────────────────── */
.section-screens { padding-bottom: clamp(80px, 10vw, 140px); }
.screens-rail-wrap {
  margin-top: 8px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.screens-rail {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 60px 56px;
  scrollbar-width: none;
}
.screens-rail::-webkit-scrollbar { display: none; }
.screen-card {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0;
}
.phone-rail {
  --phone-w: 270px;
}
.screen-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.screen-cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* ─────────────────────────── Modes ─────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.mode-card.is-highlight {
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%),
    var(--surface);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 20%, transparent);
}
.mode-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mode-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.mode-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
}
.mode-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.mode-line {
  font-size: 13px;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.mode-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.mode-bullets {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mode-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

/* ─────────────────────────── Privacy ─────────────────────────── */
.section-privacy { padding-top: clamp(60px, 8vw, 100px); }
.privacy-card {
  background:
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.privacy-left { display: flex; flex-direction: column; gap: 18px; }
.privacy-h2 { font-size: clamp(32px, 4vw, 52px); }
.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.privacy-point-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  align-self: start;
  padding-top: 2px;
}
.privacy-point-label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.privacy-point-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Privacy decorative graphic */
.privacy-graphic {
  position: relative;
  margin-top: 32px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed var(--border-strong);
  animation: pgspin 30s linear infinite;
}
.pg-ring-1 { width: 200px; height: 200px; }
.pg-ring-2 { width: 280px; height: 280px; opacity: 0.7; animation-duration: 50s; }
.pg-ring-3 { width: 360px; height: 360px; opacity: 0.4; animation-duration: 80s; }
@keyframes pgspin { to { transform: rotate(360deg); } }
.pg-device {
  position: relative;
  width: 110px;
  height: 160px;
  background: linear-gradient(180deg, #1d242f, #0b0f15);
  border-radius: 22px;
  padding: 6px;
  box-shadow: inset 0 0 0 1px var(--border-strong), var(--shadow-2);
}
.pg-device-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-lock { color: var(--accent); }
.pg-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pg-tag-tl { top: 10%; left: 4%; }
.pg-tag-tr { top: 16%; right: 4%; }
.pg-tag-bl { bottom: 14%; left: 8%; }
.pg-tag-br { bottom: 8%; right: 6%; }

/* ─────────────────────────── PDF section ─────────────────────────── */
.pdf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.pdf-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.pdf-paper {
  position: absolute;
  inset: 0;
  background: #fafafa;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-2.2deg);
  z-index: 2;
}
.pdf-paper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pdf-paper-back {
  transform: rotate(3.5deg) translate(28px, 18px);
  z-index: 1;
  opacity: 0.55;
  filter: blur(0.4px);
}
.pdf-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--text);
  white-space: nowrap;
}
.pdf-tag-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.pdf-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
}
.check-list li .check {
  margin-top: 4px;
}

/* ─────────────────────────── Pro ─────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card-pro {
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 60%),
    var(--surface);
  border-color: color-mix(in oklab, var(--accent) 28%, transparent);
}
.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.price-tier {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-muted);
  text-align: right;
}
.price-amount-strike { display: none; }
.price-amount-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card .btn { margin-top: 8px; align-self: stretch; }
.price-note {
  font-size: 12.5px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 4px;
  text-align: center;
}

/* ─────────────────────────── FAQ ─────────────────────────── */
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-head {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  color: var(--text);
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}
.faq-q-text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.faq-q-icon {
  color: var(--text-muted);
  transition: transform 0.22s ease;
}
.faq-item.is-open .faq-q-icon { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  padding: 0 4px 22px 68px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ─────────────────────────── Disclaimer ─────────────────────────── */
.section-disclaimer { padding: 40px 0 80px; }
.disclaimer-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.disclaimer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.disclaimer-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90ch;
}

/* ─────────────────────────── Final CTA ─────────────────────────── */
.section-cta {
  padding: clamp(60px, 8vw, 120px) 0;
}
.cta-inner {
  background:
    radial-gradient(80% 100% at 100% 0%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 60%),
    radial-gradient(80% 100% at 0% 100%, rgba(60,120,220,0.18), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-h2 { font-size: clamp(32px, 3.8vw, 52px); }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 320px;
  justify-self: end;
  width: 100%;
}
.cta-buttons .store-btn { justify-content: flex-start; }

/* ─────────────────────────── Footer ─────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 340px; }
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer-lang {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-lang-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-mini-disclaimer {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ─────────────────────────── Responsive ─────────────────────────── */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .modes-grid { grid-template-columns: 1fr; }
  .privacy-card { grid-template-columns: 1fr; }
  .pdf-inner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-buttons { justify-self: stretch; max-width: none; flex-direction: row; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { padding: 0 22px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-stage { height: 560px; margin-top: 16px; }
  .hero-callout-top { right: 0; }
  .hero-callout-bottom { left: 0; }
  .hero-h1 { font-size: clamp(40px, 11vw, 60px); }
  .hero-ctas .text-link { width: 100%; justify-content: flex-start; padding-top: 12px; }
  .hero-ctas .store-btn { flex: 1 1 0; min-width: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  .screens-rail { padding: 40px 22px; }
  .phone-rail { --phone-w: 240px; }
  .disclaimer-card { grid-template-columns: 1fr; }
  .pg-tag-tl, .pg-tag-tr, .pg-tag-bl, .pg-tag-br { display: none; }
}

@media (max-width: 560px) {
  .nav-cta { display: none; }
  .nav-right { gap: 8px; }
  .hero-stage { height: 520px; }
  .phone { --phone-w: 240px; }
  .hero-callout-top { top: 2%; right: -2%; }
  .hero-callout-bottom { bottom: 4%; left: -2%; }
  .h2 { font-size: clamp(28px, 8vw, 38px); }
  .section { padding: 64px 0; }
}

/* Print: hide store buttons, accent solid black */
@media print {
  .page { background: #fff; color: #000; }
}
