/* Jobbli Board — production-ready CSS */

:root {
  color-scheme: light;
  --bg: #fbfaff;
  --bg-soft: #f4f2ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #08072b;
  --muted: #67708a;
  --line: rgba(105, 92, 255, 0.15);
  --brand: #6655ff;
  --brand-2: #24d3c5;
  --brand-dark: #4634e8;
  --danger: #ff4668;
  --success: #0ca678;
  --pink: #ff3d7e;
  --green: #00c8a4;
  --shadow: 0 24px 80px rgba(43, 34, 127, 0.13);
  --shadow-soft: 0 18px 55px rgba(43, 34, 127, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #09091a;
  --bg-soft: #11122a;
  --surface: rgba(20, 20, 48, 0.82);
  --surface-strong: #161733;
  --text: #f8f7ff;
  --muted: #b9bfd4;
  --line: rgba(145, 135, 255, 0.24);
  --brand: #8b7bff;
  --brand-2: #4de5d7;
  --brand-dark: #7365ff;
  --danger: #ff6d86;
  --success: #45d39a;
  --pink: #ff7aa6;
  --green: #3df0cf;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 65px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(103, 85, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(36, 211, 197, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  background: rgba(102, 85, 255, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 12px;
}

html[data-theme="dark"] .pill,
html[data-theme="dark"] .eyebrow {
  color: #cfc9ff;
  background: rgba(139, 123, 255, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 4.55rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  max-width: 900px;
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: -0.035em;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  --btn-bg: var(--surface-strong);
  --btn-color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 850;
  box-shadow: 0 8px 28px rgba(54, 44, 146, 0.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(54, 44, 146, 0.18);
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--brand), var(--brand-dark));
  --btn-color: #ffffff;
  border-color: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, .06);
}

.btn-lg {
  min-height: 58px;
  padding-inline: 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(43, 34, 127, .07);
}

.header-inner {
  width: min(1300px, calc(100% - 36px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-dark {
  display: none;
}

html[data-theme="dark"] .logo-light {
  display: none;
}

html[data-theme="dark"] .logo-dark {
  display: inline-block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: .94rem;
  font-weight: 760;
}

.desktop-nav > a,
.nav-item > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  transition: color .2s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--brand-dark);
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 48px;
  width: min(820px, calc(100vw - 36px));
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-intro {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(102,85,255,.12), rgba(36,211,197,.12));
  padding: 20px;
}

.mega-intro strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mega-grid a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(102,85,255,.04);
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.mega-grid a:hover {
  transform: translateY(-2px);
  background: rgba(102,85,255,.1);
}

.mega-grid span {
  font-weight: 850;
}

.mega-grid small {
  color: var(--muted);
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  font-weight: 800;
  color: var(--muted);
  font-size: .93rem;
}

.theme-toggle {
  width: 76px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 76px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 92%, var(--brand) 8%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(54, 44, 146, .14);
  overflow: hidden;
}

.theme-icon {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 19px;
  justify-self: center;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.theme-icon-sun {
  color: #f59f00;
  fill: #ffd166;
  stroke: #f59f00;
}

.theme-icon-moon {
  color: #7867ff;
  fill: #7867ff;
  stroke: #7867ff;
}

.theme-knob {
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(18, 12, 58, .18);
  transition: transform .25s var(--ease), background .25s var(--ease);
}

html[data-theme="dark"] .theme-knob {
  transform: translateX(34px);
  background: #121331;
}

html[data-theme="dark"] .theme-icon-sun {
  color: #907fbd;
  fill: none;
  stroke: #907fbd;
}

html[data-theme="dark"] .theme-icon-moon {
  color: #fff;
  fill: #fff;
  stroke: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  padding: 82px 0 68px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 610px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), transparent 65%),
    radial-gradient(circle at 25% 28%, rgba(102,85,255,.2), transparent 25%),
    radial-gradient(circle at 78% 22%, rgba(36,211,197,.16), transparent 25%);
  mask-image: linear-gradient(#000, transparent 92%);
  pointer-events: none;
}

html[data-theme="dark"] .hero-bg {
  background:
    linear-gradient(180deg, rgba(9,9,26,.86), transparent 70%),
    radial-gradient(circle at 25% 28%, rgba(102,85,255,.28), transparent 25%),
    radial-gradient(circle at 78% 22%, rgba(36,211,197,.18), transparent 25%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-lead {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.trust-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual-dashboard {
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid var(--line);
  pointer-events: none;
  animation: spin 24s linear infinite;
}

.orbit-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 50% 0%, rgba(102, 85, 255, 0.16), transparent 45%);
}

.orbit-two {
  width: 380px;
  height: 380px;
  transform: rotate(24deg);
  animation-duration: 18s;
  animation-direction: reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-dashboard-card {
  position: relative;
  width: min(100%, 510px);
  padding: 24px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 88%, transparent), color-mix(in srgb, var(--surface-strong) 64%, transparent));
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow);
  transform: rotateX(8deg) rotateY(-9deg) rotateZ(1deg);
  animation: floatPanel 7s ease-in-out infinite;
}

@keyframes floatPanel {
  0%, 100% { transform: rotateX(8deg) rotateY(-9deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateX(5deg) rotateY(-5deg) rotateZ(0deg) translateY(-16px); }
}

.dash-top,
.candidate-strip {
  display: flex;
}

.dash-top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.dash-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-top h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
  max-width: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.good {
  background: rgba(12, 166, 120, 0.12);
  color: var(--success);
  border: 1px solid rgba(12, 166, 120, 0.24);
}

.candidate-strip {
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.candidate-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--success), var(--brand-2));
  color: #fff;
  font-weight: 900;
}

.candidate-strip strong,
.candidate-strip span {
  display: block;
}

.candidate-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.timeline-mini {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 18px 0;
}

.timeline-mini span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.timeline-mini span.done {
  background: rgba(12, 166, 120, 0.12);
  color: var(--success);
  border-color: rgba(12, 166, 120, 0.22);
}

.timeline-mini span.active {
  background: rgba(102, 85, 255, 0.12);
  color: var(--brand-dark);
  border-color: rgba(102, 85, 255, 0.25);
}

.dashboard-split {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.metric-card {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.metric-card small,
.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 5px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.accent-card {
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.12), rgba(102, 85, 255, 0.1));
}

.task-stack {
  display: grid;
  gap: 10px;
}

.task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  font-size: 13px;
  font-weight: 800;
}

.task-row span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(120, 130, 150, 0.3);
}

.task-row.complete span {
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(12, 166, 120, 0.11);
}

.task-row.active span {
  background: #f3b13f;
  box-shadow: 0 0 0 5px rgba(243, 177, 63, 0.12);
}

.floating-card {
  position: absolute;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  animation: floatSmall 5s ease-in-out infinite;
}

.floating-card strong {
  font-size: 14px;
  color: var(--text);
}

.floating-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-left {
  left: 0;
  bottom: 112px;
}

.floating-right {
  right: 0;
  top: 112px;
  animation-delay: -1.5s;
}

@keyframes floatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Logo strip */
.logo-strip {
  padding: 24px 0 44px;
}

.logo-strip p {
  text-align: center;
  margin-bottom: 18px;
  font-weight: 850;
  color: var(--muted);
}

.logo-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-marquee span {
  min-width: 130px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 12px 18px;
  color: color-mix(in srgb, var(--muted) 84%, var(--text));
  font-weight: 900;
}

/* Common section blocks */
.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head.split {
  grid-template-columns: .92fr 1fr;
  align-items: end;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head p {
  font-size: 1.08rem;
  max-width: 760px;
}

.problem-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.problem-card,
.feature-card,
.stat-card,
.audience-card,
.credibility-card,
.lead-form,
.tabbed-module,
.video-shell,
.final-cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  min-height: 238px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,70,104,.14), rgba(102,85,255,.12));
  color: var(--danger);
  font-weight: 950;
}

.problem-card p,
.feature-card p {
  font-size: .97rem;
}

/* Problem section — photo card variant */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--brand);
  font-weight: 850;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: 2rem;
  align-items: end;
}

.split-heading p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.problem-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.problem-board .problem-card {
  min-height: auto;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  display: block;
}

.problem-board .problem-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -64px;
  top: -64px;
  border-radius: 50%;
  background: var(--accent, var(--brand));
  opacity: .16;
  transition: transform .35s ease, opacity .35s ease;
}

.problem-board .problem-card:hover {
  border-color: color-mix(in srgb, var(--accent, var(--brand)) 38%, var(--line));
}

.problem-board .problem-card:hover::before {
  transform: scale(1.14);
  opacity: .24;
}

.card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--accent, var(--brand));
  font-weight: 900;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}

.problem-board .problem-card h3,
.problem-board .problem-card p {
  position: relative;
  z-index: 2;
}

.accent-blue  { --accent: var(--brand); }
.accent-pink  { --accent: var(--pink); }
.accent-green { --accent: var(--green); }
.accent-dark  { --accent: #11182c; }

html[data-theme="dark"] .accent-dark { --accent: #f7faff; }

.solution-ribbon {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 12%, transparent), color-mix(in srgb, var(--success) 13%, transparent));
  border: 1px solid var(--line);
}

.solution-ribbon p {
  margin: 0;
  padding: 1.2rem;
  background: var(--surface);
  border-radius: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.solution-ribbon strong { color: var(--text); }

.card-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(22, 36, 76, 0.10);
  object-fit: cover;
  background: var(--surface-strong);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.audience-card {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%);
}

.audience-card-featured {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 15%, var(--surface-strong)), color-mix(in srgb, var(--success) 13%, var(--surface-strong)));
}

.audience-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 950;
}

.audience-card p {
  color: var(--muted);
  line-height: 1.65;
}

.audience-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  margin-bottom: 1.15rem;
  box-shadow: 0 14px 34px rgba(22, 36, 76, 0.11);
  object-fit: cover;
  background: var(--surface-strong);
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.center-heading p {
  color: var(--muted);
  line-height: 1.72;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: .7rem;
}

.clean-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text);
  font-weight: 700;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3rem;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 16%, transparent);
}

/* Stats */
.stats {
  padding-top: 36px;
}

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

.stat-card {
  min-height: 196px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.stat-card strong {
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.08em;
  line-height: .85;
  color: var(--brand-dark);
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

/* Process */
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102,85,255,.35), transparent);
  z-index: -1;
}

.process-flow article {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.process-flow span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 950;
  font-size: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.process-flow h3 {
  max-width: 170px;
  font-size: 1.05rem;
}

.process-flow p {
  max-width: 190px;
  font-size: .9rem;
}

.tabbed-module {
  overflow: hidden;
  padding: 14px;
}

.tabs {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 70%, transparent);
  width: max-content;
  max-width: 100%;
  margin: 0 auto 14px;
  overflow: auto;
}

.tab {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.tab.is-active {
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(43,34,127,.09);
}

.tab-panel {
  display: none;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 26px;
  padding: 26px;
}

.tab-panel.is-active {
  display: grid;
  animation: panelIn .35s var(--ease) both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 26px;
}

.tab-copy {
  display: grid;
  gap: 18px;
}

.tab-copy h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.text-link {
  display: inline-flex;
  width: max-content;
  font-weight: 900;
  color: var(--brand-dark);
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.candidate-phone {
  min-height: 460px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 35%, rgba(102,85,255,.22), transparent 38%),
    linear-gradient(135deg, rgba(102,85,255,.1), rgba(36,211,197,.1));
}

.phone-frame {
  width: min(300px, 84%);
  min-height: 430px;
  border-radius: 34px;
  border: 7px solid var(--text);
  background: var(--surface-strong);
  padding: 32px 20px 20px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.phone-top {
  justify-self: center;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
}

.phone-frame h3 {
  font-size: 1.45rem;
}

.progress-ring {
  justify-self: center;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 75%, var(--line) 0);
  color: var(--text);
  font-weight: 950;
  box-shadow: inset 0 0 0 16px var(--surface-strong);
}

.phone-frame button {
  min-height: 46px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

.phone-frame ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 760;
}

/* Demo */
.demo-section {
  padding-top: 54px;
}

.demo-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 70%, transparent);
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  overflow-x: auto;
}

.demo-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.demo-tab.active {
  background: var(--surface-strong);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.screen-browser {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-strong);
}

.screen-browser.hidden {
  display: none;
}

.browser-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-soft) 68%, transparent);
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}

.browser-bar span:nth-child(1) { background: #fb7185; }
.browser-bar span:nth-child(2) { background: #fbbf24; }
.browser-bar span:nth-child(3) { background: #34d399; }

.browser-bar strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
}

.app-screen {
  min-height: 510px;
  display: grid;
  grid-template-columns: 210px 1fr;
  background:
    radial-gradient(circle at 86% 12%, rgba(36, 211, 197, 0.13), transparent 24rem),
    linear-gradient(135deg, color-mix(in srgb, var(--bg-soft) 86%, transparent), var(--surface-strong));
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
}

.app-sidebar strong {
  margin: 0 0 12px;
  font-size: 20px;
}

.app-sidebar span {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.app-sidebar span.active {
  background: color-mix(in srgb, var(--brand) 11%, transparent);
  color: var(--brand);
}

.app-content {
  padding: 24px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.app-head h3,
.candidate-notes h3,
.manager-plan h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.045em;
}

.app-head span {
  color: var(--muted);
  font-weight: 900;
}

.app-kpis {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.app-kpis div {
  flex: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.app-kpis small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.app-kpis strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.app-table {
  display: grid;
  gap: 10px;
}

.app-table div,
.manager-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.app-table span,
.manager-row span {
  color: var(--muted);
  font-weight: 800;
}

.app-table em,
.manager-row strong {
  font-style: normal;
  color: var(--brand);
  font-weight: 950;
}

.candidate-screen {
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 34px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--bg-soft) 90%, transparent), var(--surface-strong));
}

.candidate-phone {
  width: min(100%, 320px);
  min-height: 560px;
  padding: 38px 20px 20px;
  border: 9px solid color-mix(in srgb, var(--text) 88%, transparent);
  border-radius: 42px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 86px;
  height: 8px;
  border-radius: 999px;
  margin: 0 auto 26px;
  background: var(--line);
}

.candidate-phone h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.candidate-phone p,
.candidate-notes p,
.manager-score p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.phone-step {
  margin: 10px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.phone-step.done {
  color: var(--success);
  background: color-mix(in srgb, var(--success) 10%, transparent);
  border-color: color-mix(in srgb, var(--success) 24%, transparent);
}

.phone-step.active {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-color: color-mix(in srgb, var(--brand) 24%, transparent);
}

.candidate-phone button {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.candidate-notes {
  max-width: 380px;
}

.manager-screen {
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 34px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--bg-soft) 90%, transparent), var(--surface-strong));
}

.manager-plan,
.manager-score {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.manager-plan {
  width: min(100%, 560px);
}

.manager-plan h3 {
  margin-bottom: 18px;
}

.manager-row {
  grid-template-columns: 1fr auto;
  margin-top: 10px;
}

.manager-score {
  width: min(100%, 320px);
  text-align: center;
}

.manager-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.manager-score strong {
  display: block;
  margin: 8px 0;
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.demo-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
}

.demo-actions span {
  color: var(--muted);
  font-weight: 800;
}

/* Features */
.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--brand) 12%);
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
}

.feature-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(71, 58, 210, .12);
}

.feature-card h3 {
  font-size: 1.1rem;
  line-height: 1.08;
}

/* Credibility */
.credibility-section {
  padding-block: 80px;
}

.credibility-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
  background:
    radial-gradient(circle at 8% 15%, rgba(36,211,197,.10), transparent 38%),
    color-mix(in srgb, var(--surface) 92%, var(--brand) 8%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.cred-media {
  position: relative;
}

.cred-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.cred-logo {
  width: min(178px, 55%);
  height: auto;
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(12,17,46,.08);
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: 0 12px 28px rgba(10,16,40,.22);
}

html[data-theme="dark"] .cred-logo {
  filter: none;
  opacity: 1;
  background: rgba(16,21,44,.88);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 28px rgba(0,0,0,.38);
}

.credibility-card .section-kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.credibility-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  margin-bottom: 16px;
}

.credibility-card > div:nth-child(2) {
  align-self: center;
}

.cred-points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cred-points span {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font-size: .88rem;
  font-weight: 500;
}

/* CTA / Lead */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.cta-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.cta-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-benefits span {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font-size: .88rem;
  font-weight: 500;
}

.lead-form {
  padding: 32px;
  display: grid;
  gap: 18px;
}

.form-head {
  margin-bottom: 4px;
}

.form-head h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.form-head p {
  color: var(--muted);
  font-size: .92rem;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: .92rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0 16px;
  outline: 0;
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 5px rgba(102,85,255,.12);
}

.form-submit {
  width: 100%;
}

.form-note {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
}

.form-note.is-success {
  color: var(--success);
  font-weight: 850;
}

.form-note.is-error {
  color: var(--danger);
  font-weight: 760;
}

/* FAQ */
.faq-grid {
  columns: 2;
  column-gap: 18px;
}

.faq-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(43,34,127,.05);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  padding: 18px 56px 18px 20px;
  text-align: left;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-dark);
}

.faq-item.is-open button::after {
  content: "–";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}

/* Final CTA and footer */
.final-cta {
  padding: 38px 0 86px;
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(36,211,197,.18), transparent 28%),
    linear-gradient(135deg, var(--surface), color-mix(in srgb, var(--surface) 78%, var(--brand) 22%));
}

.final-cta-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  margin-top: 14px;
}

.bottom-hero-image {
  padding-top: 0;
}

.bottom-hero-image img {
  width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 26px 80px rgba(38, 28, 125, .18);
}

html[data-theme="dark"] .bottom-hero-image img {
  border-color: rgba(145,135,255,.25);
  box-shadow: 0 30px 90px rgba(0,0,0,.44);
}

.site-footer {
  background: #08072b;
  color: white;
  padding: 58px 0 28px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255,255,255,.68);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .7fr);
  gap: 34px;
  padding-bottom: 34px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 420px;
}

.footer-brand .logo-light {
  display: none;
}

.footer-brand .logo-dark {
  display: inline-block;
}

.footer-brand img {
  filter: none;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h2 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.footer-col a {
  transition: color .2s var(--ease);
}

.footer-col a:hover {
  color: white;
}

.footer-contact-primary {
  color: #fff;
  font-weight: 780;
}

.footer-contact-primary:hover,
.footer-contact-primary:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.grant-box {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 28px 0;
  display: grid;
  gap: 18px;
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.grant-signs-wrap {
  background: #fff;
  border-radius: 0;
  padding: 14px 0;
  overflow: hidden;
}

.grant-signs {
  width: 100%;
  height: auto;
  display: block;
}

.grant-box p {
  font-size: .88rem;
  line-height: 1.55;
  width: 100%;
  margin: 0;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
}

/* Modal */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 5, 20, .66);
  backdrop-filter: blur(12px);
}

.demo-modal.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100% - 40px);
  overflow: auto;
  border-radius: 30px;
  padding: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 14px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-screen {
  margin-top: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-soft);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .login-link,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    z-index: 101;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease);
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-weight: 900;
    border-radius: 16px;
    padding: 0 14px;
  }

  .hero-grid,
  .audience-grid,
  .demo-grid,
  .credibility-card,
  .cta-grid,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual-dashboard {
    min-height: auto;
  }

  .hero-dashboard-card {
    transform: none;
    animation: none;
  }

  .floating-left {
    left: 24px;
    bottom: 32px;
  }

  .floating-right {
    right: 16px;
    top: 42px;
  }

  .section-head.split,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .problem-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow::before {
    left: 36px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(102,85,255,.35), transparent);
  }

  .process-flow article {
    grid-template-columns: 72px 1fr;
    justify-items: start;
    text-align: left;
    align-items: center;
  }

  .process-flow article p {
    grid-column: 2;
    max-width: none;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 52px 0 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.78rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .orbit {
    display: none;
  }

  .hero-dashboard-card {
    width: 100%;
    border-radius: 24px;
    padding: 18px;
  }

  .dash-top h2 {
    font-size: 1.3rem;
  }

  .timeline-mini {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-split {
    flex-direction: column;
  }

  .bottom-hero-image img {
    border-radius: 24px;
  }

  .problem-grid,
  .problem-board,
  .feature-grid,
  .solution-ribbon {
    grid-template-columns: 1fr;
  }

  .audience-photo {
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  .cred-logo {
    width: min(164px, 62%);
    left: 12px;
    bottom: 12px;
    padding: 7px 9px;
    border-radius: 12px;
  }

  .tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .tab-panel {
    padding: 14px;
  }

  .video-shell {
    min-height: 360px;
    padding: 24px;
  }

  .play-button {
    right: 24px;
    top: auto;
    bottom: 72px;
    width: 78px;
    height: 78px;
  }

  .play-button span {
    border-left-width: 20px;
    border-top-width: 13px;
    border-bottom-width: 13px;
  }

  .faq-grid {
    columns: 1;
  }

  .final-cta-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .grant-signs-wrap {
    padding: 10px;
    border-radius: 14px;
  }

  .grant-signs {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 24px);
    height: 74px;
  }

  .brand img {
    width: 168px;
  }

  .cred-logo {
    width: min(150px, 68%);
    left: 10px;
    bottom: 10px;
  }

  .theme-toggle,
  .theme-toggle-track {
    width: 68px;
  }

  html[data-theme="dark"] .theme-knob {
    transform: translateX(26px);
  }

  .mobile-menu {
    top: 74px;
  }

  .trust-points span {
    width: 100%;
  }

  .problem-card,
  .audience-card,
  .lead-form,
  .final-cta-card {
    padding: 22px;
  }

  .phone-frame {
    width: 94%;
  }
}
