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

:root {
  --bg: #f5f1fb;
  --bg-2: #eef4ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-dark: #120f1d;
  --surface-dark-2: #191428;
  --ink: #1f1830;
  --muted: #6d6581;
  --line: rgba(120, 96, 176, 0.16);
  --line-strong: rgba(120, 96, 176, 0.3);
  --violet: #7b57ff;
  --violet-2: #9d7bff;
  --violet-3: #e9e1ff;
  --cyan: #6fd6ff;
  --pink: #ff76c8;
  --green: #34d399;
  --shadow: 0 28px 80px rgba(35, 21, 63, 0.14);
  --shadow-strong: 0 36px 120px rgba(26, 14, 49, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(157, 123, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 214, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, var(--bg-2) 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(120, 96, 176, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 16px 34px rgba(61, 39, 112, 0.22);
}

.brand-icon-mini {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  box-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(28, 17, 48, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(123, 87, 255, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(123, 87, 255, 0.32);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
}

.btn-ghost {
  border-color: rgba(123, 87, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--violet);
  box-shadow: none;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 52px clamp(18px, 5vw, 72px) 72px;
}

.hero-home {
  min-height: calc(100vh - 82px);
}

.hero-pricing {
  min-height: auto;
  padding-bottom: 30px;
}

.hero-product {
  position: relative;
}

.hero h1,
.section h1,
.section h2,
.final-cta h2,
.success-card h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6.4vw, 82px);
}

.hero-copy > p,
.section-heading > p,
.success-card > p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(123, 87, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #e8dcff;
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.metric-row article,
.journey-panel,
.feature-grid article,
.plan-card,
.faq-card,
.purchase-summary,
.success-card,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.metric-row article {
  padding: 18px;
}

.metric-row strong,
.journey-panel h3,
.feature-grid h3,
.plan-head h3,
.faq-card h3 {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.metric-row span,
.journey-panel p,
.feature-grid p,
.faq-card p {
  color: var(--muted);
  font-size: 14px;
}

.product-stage {
  position: relative;
  min-height: 620px;
}

.stage-glow {
  position: absolute;
  inset: 40px 20px 40px 60px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 25% 20%, rgba(157, 123, 255, 0.34), transparent 28%),
    radial-gradient(circle at 75% 15%, rgba(111, 214, 255, 0.22), transparent 24%),
    radial-gradient(circle at 55% 78%, rgba(255, 118, 200, 0.14), transparent 24%);
  filter: blur(10px);
}

.mock-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(201, 185, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14, 11, 24, 0.98), rgba(17, 12, 29, 0.94));
  box-shadow: var(--shadow-strong);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(39, 27, 73, 0.98), rgba(23, 18, 42, 0.98));
}

.mock-brand,
.mock-live {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-brand span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.mock-live {
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 118, 200, 0.12);
}

.mock-body {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 520px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-nav {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #8f85ae;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.mock-nav.active {
  border-color: rgba(157, 123, 255, 0.16);
  background: rgba(157, 123, 255, 0.12);
  color: #f2ecff;
}

.mock-score {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(111, 214, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(105, 67, 212, 0.14), rgba(18, 17, 32, 0.3));
}

.mock-score span,
.mock-question small,
.mock-speaker span,
.mock-summary span,
.summary-label {
  color: #a89fca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-score strong,
.mock-question strong,
.mock-summary strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.mock-score p,
.mock-question p,
.mock-speaker p,
.mock-summary p {
  margin: 8px 0 0;
  color: #cbc5dd;
  font-size: 13px;
}

.mock-main {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.mock-question,
.mock-transcript-card,
.mock-summary {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.mock-question,
.mock-summary {
  padding: 18px;
}

.mock-question {
  background: linear-gradient(180deg, rgba(255, 208, 116, 0.08), rgba(255, 255, 255, 0.03));
}

.mock-transcript-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mock-speaker {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-speaker.recruiter {
  background: rgba(255, 255, 255, 0.03);
}

.mock-speaker.candidate {
  background: rgba(123, 87, 255, 0.12);
  border-color: rgba(123, 87, 255, 0.2);
}

.mock-summary {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 18px;
  border: 1px solid rgba(120, 96, 176, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.platform-strip span {
  color: var(--muted);
  font-size: 14px;
}

.platform-strip strong {
  font-size: 14px;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px) 0;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.section-heading h1,
.success-card h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.section-heading p {
  margin-top: 18px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-dark {
  margin-top: 90px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(157, 123, 255, 0.26), transparent 24%),
    linear-gradient(180deg, #191429 0%, #100d19 100%);
  color: #fff;
}

.section-heading-light p,
.section-heading-light .eyebrow,
.section-dark .feature-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.journey-grid,
.feature-grid,
.plan-grid,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-panel {
  padding: 26px;
}

.journey-panel span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
}

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

.feature-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.feature-grid article p {
  color: rgba(255, 255, 255, 0.72);
}

.plans-home,
.plans-page {
  padding-top: 104px;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card-modern {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 255, 0.9));
}

.plan-card.highlighted {
  border-color: rgba(123, 87, 255, 0.28);
  box-shadow: 0 34px 90px rgba(88, 58, 161, 0.18);
}

.plan-card.highlighted::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--pink));
}

.plan-head {
  margin-bottom: 18px;
}

.plan-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 87, 255, 0.1);
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card strong {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: .95;
}

.plan-card strong span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.plan-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.plan-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--ink);
}

.plan-card li + li {
  margin-top: 10px;
}

.purchase-summary {
  padding: 26px;
}

.purchase-summary-modern {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 236, 255, 0.86));
}

.purchase-summary ol {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.purchase-summary li + li {
  margin-top: 12px;
}

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

.faq-card {
  padding: 24px;
}

.final-cta {
  margin: 104px clamp(18px, 5vw, 72px) 52px;
  padding: 34px;
  border-radius: 32px;
  background: #1a1328;
  color: #fff;
}

.final-cta-upgraded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(111, 214, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(157, 123, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #160f22, #24163d);
}

.final-cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.success-card {
  width: min(760px, 100%);
  padding: 36px;
}

.success-checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.success-checklist div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.success-note {
  margin-top: 0;
}

.reset-card {
  max-width: 640px;
}

.reset-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.reset-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reset-field input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.reset-message {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
}

.reset-message[data-state="error"] {
  color: #b3264d;
}

.reset-message[data-state="success"] {
  color: #167c62;
}

.reset-actions {
  margin-top: 22px;
}

.legal-page {
  padding: 44px clamp(18px, 5vw, 72px) 52px;
}

.legal-content {
  margin-top: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 20px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 24px 18px 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero,
  .hero-pricing {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .journey-grid,
  .feature-grid,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .final-cta-upgraded {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .metric-row,
  .journey-grid,
  .feature-grid,
  .faq-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .platform-strip {
    border-radius: 28px;
    justify-content: flex-start;
  }

  .mock-summary {
    grid-template-columns: 1fr;
  }

  .section,
  .plans-home,
  .plans-page {
    padding-top: 82px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .legal-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .section-heading h1,
  .success-card h1 {
    font-size: 34px;
  }

  .plan-card,
  .journey-panel,
  .feature-grid article,
  .faq-card,
  .success-card,
  .legal-content {
    padding: 22px;
  }

  .final-cta {
    margin-inline: 16px;
    padding: 24px;
  }
}
