/* ==========================================================
   AULIZE — Landing page SaaS
   Estrutura focada em conversão, clareza e responsividade
   ========================================================== */

:root {
  --brand: #5b3fd6;
  --brand-2: #7c5cff;
  --brand-3: #25135f;
  --gold: #f8c66d;
  --gold-2: #ffe0a3;
  --green: #20d19b;
  --red: #f87171;
  --blue: #60a5fa;

  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f8f7ff;
  --surface-3: #eef1fb;
  --dark: #0d0b1a;
  --dark-2: #14102a;
  --dark-3: #1e1838;

  --text: #151226;
  --muted: #626b80;
  --muted-2: #8c95a7;
  --light: #f7f3ff;
  --light-muted: #b9b2d8;

  --line: #e3e8f2;
  --line-dark: rgba(255, 255, 255, 0.1);

  --shadow-sm: 0 10px 28px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 64px rgba(17, 24, 39, 0.12);
  --shadow-brand: 0 24px 72px rgba(91, 63, 214, 0.28);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;

  font-family: 'Roboto', Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
p, h1, h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
img, svg { display: block; max-width: 100%; }

::selection {
  background: rgba(248, 198, 109, 0.45);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #20163b;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

h1,
h2,
.price strong,
.brand-name {
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 0.96;
}

h2 {
  color: var(--text);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

p { line-height: 1.7; }

/* Layout */
.section,
.section-dark,
.final-cta {
  padding: clamp(74px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

.section > *,
.section-dark > *,
.final-content,
.hero-inner,
.proof-band {
  max-width: var(--container);
  margin-inline: auto;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.section-head {
  max-width: 780px;
}

.section-head p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-gold { color: var(--gold); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay { transition-delay: 130ms; }

/* Header */
.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: var(--light);
  background-color: var(--dark);
  background: rgba(13, 11, 26, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 26, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #f5f1ff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--gold);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(91, 63, 214, 0.35);
}

.brand-name {
  color: #f5f1ff;
  font-size: 22px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: #fff; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

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

.login-link {
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.login-link:hover { color: #fff; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(248, 198, 109, 0.14);
  border: 1px solid rgba(248, 198, 109, 0.42);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(248, 198, 109, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd98a);
  color: #22133f;
  box-shadow: 0 20px 50px rgba(248, 198, 109, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(248, 198, 109, 0.38);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(248, 198, 109, 0.38);
  background: rgba(248, 198, 109, 0.1);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(72px, 8vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(91, 63, 214, 0.36), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(248, 198, 109, 0.16), transparent 28%),
    linear-gradient(145deg, #090714 0%, #0f0b22 48%, #1b1348 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 28%, #000 0%, transparent 74%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-orb-one {
  top: 16%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(91, 63, 214, 0.22);
}

.hero-orb-two {
  right: 8%;
  bottom: 14%;
  width: 170px;
  height: 170px;
  background: rgba(248, 198, 109, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-copy { max-width: 760px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 209, 155, 0.12);
}

.hero-subtitle {
  max-width: 650px;
  margin-top: 24px;
  color: #c7c1df;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-checks li {
  position: relative;
  padding-left: 20px;
}

.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

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

.dashboard-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(30, 24, 56, 0.96), rgba(18, 14, 36, 0.98));
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(91, 63, 214, 0.22);
}

.dashboard-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(124, 92, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.dashboard-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--light-muted);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px 20px;
}

.dashboard-header p {
  color: var(--light-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-header h2 {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.status-badge {
  height: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(32, 209, 155, 0.24);
  border-radius: 999px;
  background: rgba(32, 209, 155, 0.12);
  color: #72f1c8;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.metric-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px 20px;
}

.metric-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid .metric-alert {
  border-color: rgba(248, 198, 109, 0.28);
  background: rgba(248, 198, 109, 0.09);
}

.metric-grid span {
  display: block;
  color: var(--light-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.schedule-list {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0 24px 24px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.schedule-row time {
  color: var(--gold);
  font-weight: 900;
}

.schedule-row strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.schedule-row span {
  color: var(--light-muted);
  font-size: 13px;
}

.schedule-row em {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.schedule-row.is-done em {
  background: rgba(32, 209, 155, 0.12);
  color: #72f1c8;
}

.schedule-row.is-next {
  border-color: rgba(248, 198, 109, 0.3);
}

.schedule-row.is-next em {
  background: rgba(248, 198, 109, 0.14);
  color: var(--gold-2);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(260px, 48%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.floating-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 14px;
  line-height: 1.45;
}

.floating-card-one {
  left: -34px;
  bottom: 70px;
}

.floating-card-two {
  right: -18px;
  top: 76px;
}

/* Proof band */
.proof-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  transform: translateY(-50%);
  margin-bottom: -42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.proof-band p {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-band span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--brand-3);
  font-size: 13px;
  font-weight: 800;
}

/* Pain */
.pain-section { padding-top: clamp(72px, 8vw, 110px); }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 46px;
}

.compare-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--muted-2);
}

.after-card {
  border-color: rgba(91, 63, 214, 0.25);
  background: linear-gradient(180deg, #ffffff, #f8f7ff);
}

.after-card::before { background: var(--brand); }
.before-card::before { background: var(--red); }

.compare-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.after-card .compare-label {
  background: rgba(91, 63, 214, 0.1);
  color: var(--brand);
}

.compare-card h3 { font-size: 24px; }

.compare-card ul {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.compare-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.6;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 900;
}

.before-card li::before { content: '×'; color: var(--red); }
.after-card li::before { content: '✓'; color: var(--brand); }

/* Features */
.feature-section {
  background:
    linear-gradient(180deg, rgba(248, 247, 255, 0.45), rgba(255, 255, 255, 0)),
    var(--bg);
}

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

.feature-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 63, 214, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-2);
  font-size: 22px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* Product */
.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark .section-head p:not(.eyebrow) { color: var(--light-muted); }

.product-section {
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(91, 63, 214, 0.25), transparent 34%),
    radial-gradient(circle at 90% 72%, rgba(248, 198, 109, 0.11), transparent 28%);
  pointer-events: none;
}

.product-grid {
  position: relative;
  z-index: 1;
}

.product-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--light-muted);
  font-size: 18px;
}

.product-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.product-points div {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.product-points strong { color: #fff; }
.product-points span { color: var(--light-muted); font-size: 14px; }

.message-stack {
  display: grid;
  gap: 14px;
}

.message-card,
.student-card,
.money-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.message-card {
  padding: 26px;
}

.message-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-card p {
  margin-top: 13px;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.message-card small {
  display: block;
  margin-top: 14px;
  color: var(--light-muted);
}

.student-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.student-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 16px;
  background: var(--gold);
  color: #20163b;
  font-weight: 900;
}

.student-card div:nth-child(2) { min-width: 0; flex: 1; }
.student-card strong { display: block; color: #fff; }
.student-card span { display: block; margin-top: 4px; color: var(--light-muted); font-size: 14px; }
.student-card em {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 209, 155, 0.12);
  color: #72f1c8;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.money-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  gap: 12px;
}

.money-card div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.money-card span {
  display: block;
  color: var(--light-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.money-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--brand);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.step-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* Comparison */
.comparison-section { background: #fff; }

.comparison-table {
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
}

.comparison-row > div {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.comparison-row > div + div { border-left: 1px solid var(--line); }
.comparison-row:last-child > div { border-bottom: 0; }

.comparison-head > div {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 900;
}

.comparison-row > div:first-child {
  color: var(--text);
  font-weight: 900;
}

.comparison-row > div:last-child {
  color: var(--brand-3);
  font-weight: 800;
}

/* Pricing */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 10%, rgba(91, 63, 214, 0.28), transparent 32%);
  pointer-events: none;
}

.pricing-section > * {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.19);
}

.price-card.is-featured {
  border-color: rgba(248, 198, 109, 0.45);
  background:
    radial-gradient(circle at 80% 0%, rgba(248, 198, 109, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(91, 63, 214, 0.92), rgba(35, 23, 91, 0.96));
  box-shadow: var(--shadow-brand);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 15px;
  border-radius: 0 0 14px 14px;
  background: var(--gold);
  color: #20163b;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-top h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.price-top p {
  min-height: 48px;
  margin-top: 10px;
  color: var(--light-muted);
  font-size: 14px;
  line-height: 1.45;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 22px;
  color: #fff;
}

.price small {
  align-self: flex-start;
  margin-top: 8px;
  color: var(--light-muted);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.price strong {
  color: #fff;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 0.9;
  letter-spacing: 0;
}

.price > span {
  margin-bottom: 6px;
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #d5cef1;
  font-size: 14px;
  line-height: 1.55;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.price-card.is-featured li {
  color: #fff;
  font-weight: 700;
}

.price-card .btn { margin-top: auto; }

.pricing-cta {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: none;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  border-color: rgba(248, 198, 109, 0.38);
  background: rgba(248, 198, 109, 0.1);
  transform: translateY(-1px);
}

.pricing-cta-featured {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #ffd98a);
  color: #22133f;
  box-shadow: 0 20px 50px rgba(248, 198, 109, 0.28);
}

.pricing-cta-featured:hover,
.pricing-cta-featured:focus-visible {
  background: linear-gradient(135deg, var(--gold), #ffd98a);
  box-shadow: 0 24px 62px rgba(248, 198, 109, 0.38);
}

.pricing-note {
  margin-top: 24px;
  color: var(--light-muted);
  font-size: 14px;
  text-align: center;
}

/* Testimonial / manifesto */
.testimonial-section { background: var(--bg); }

.testimonial-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(91, 63, 214, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 12%, rgba(91, 63, 214, 0.12), transparent 32%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.testimonial-card > p {
  color: var(--muted);
  font-size: 18px;
}

/* FAQ */
.faq-section { background: #fff; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-top: 42px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.faq-list details[open] {
  border-color: rgba(91, 63, 214, 0.28);
  background: linear-gradient(180deg, #fff, #faf9ff);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  display: grid;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--brand);
  font-size: 21px;
  line-height: 1;
}

.faq-list details[open] summary::after { content: '−'; }

.faq-list p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
}

.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(91, 63, 214, 0.42), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 0%, transparent 72%);
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.final-content h2 { color: #fff; }

.final-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px auto 32px;
  color: var(--light-muted);
  font-size: 18px;
}

/* Footer */
.footer {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px) 28px;
  background: #070510;
  color: var(--light-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, 0.5fr));
  gap: clamp(28px, 4vw, 56px);
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  max-width: 430px;
  margin-top: 18px;
  color: #c9c2e4;
  font-size: 14px;
  line-height: 1.7;
}

.footer-email {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #fff;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.footer-column a {
  color: var(--light-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
}

.footer-bottom p:last-child {
  text-align: right;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.cookie-banner-copy {
  max-width: 660px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16px;
}

.cookie-banner-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  min-width: 108px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button-primary {
  background: var(--brand);
  color: #fff;
}

.cookie-button-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }
}

/* Legal pages */
.legal-page {
  background: var(--bg);
}

.legal-main {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 110px);
}

.legal-shell {
  max-width: var(--container);
  margin-inline: auto;
}

.legal-hero {
  max-width: 820px;
}

.legal-hero .eyebrow {
  margin-bottom: 12px;
}

.legal-hero h1 {
  color: var(--text);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
}

.legal-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  margin-top: 46px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  background: var(--surface-2);
  color: var(--brand);
}

.legal-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin-top: 14px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: disc;
  padding-left: 22px;
}

.legal-card a {
  color: var(--brand);
  font-weight: 900;
}

.legal-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(91, 63, 214, 0.18);
  border-radius: 18px;
  background: var(--surface-2);
}

/* Responsive */
@media (max-width: 1080px) {
  .page-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 680px;
    min-height: 560px;
    margin-inline: auto;
    width: 100%;
  }

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

  .pricing-grid {
    gap: 18px;
  }

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

@media (max-width: 880px) {
  .site-header {
    height: 70px;
  }

  .nav-toggle { display: block; }

  .login-link,
  .header-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(13, 11, 26, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 15px 14px;
    border-radius: 12px;
  }

  .nav-links a:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-links a::after { display: none; }

  .proof-band {
    transform: none;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .before-after,
  .steps-grid,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 720px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 74px; }

  .section,
  .section-dark,
  .final-cta {
    padding-inline: 18px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name { font-size: 20px; }

  .hero {
    padding: 56px 16px 58px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: 1.02;
  }

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

  .hero-checks {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .floating-card { display: none; }

  .dashboard-topbar {
    padding-inline: 16px;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 16px 16px;
  }

  .dashboard-header h2 {
    font-size: clamp(22px, 6.2vw, 30px);
  }

  .status-badge {
    white-space: normal;
  }

  .dashboard-header,
  .metric-grid,
  .schedule-list {
    padding-inline: 16px;
  }

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

  .schedule-row {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }

  .schedule-row em {
    grid-column: 2;
    width: fit-content;
  }

  .feature-grid,
  .pricing-grid,
  .money-card {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .student-card {
    align-items: flex-start;
  }

  .student-card em { display: none; }

  .footer-grid,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-inline: 18px;
  }

  .legal-card {
    border-radius: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
