:root {
  --bg: #f7fbfd;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #eef8fb;
  --ink: #11243f;
  --ink-soft: #4f617b;
  --ink-faint: #7f8ca3;
  --line: rgba(31, 86, 143, 0.1);
  --line-strong: rgba(22, 120, 153, 0.18);
  --blue: #1578bf;
  --teal: #1e9ca7;
  --teal-soft: #dff7f5;
  --shadow: 0 20px 60px rgba(17, 36, 63, 0.08);
  --shadow-soft: 0 12px 30px rgba(17, 36, 63, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(94, 199, 221, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(72, 129, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f6fbfd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(17, 36, 63, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 36, 63, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
  pointer-events: none;
}

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

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

.page-shell {
  position: relative;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 40px), var(--page-width));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17, 36, 63, 0.06);
}

.brand,
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 42px;
  height: 42px;
}

.brand-text {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.topbar-actions {
  display: flex;
  align-items: center;
}

.section {
  padding: 108px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow,
.card-label,
.metric-kicker,
.step-tag,
.report-kicker,
.trust-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  line-height: 1.06;
}

.hero-description,
.section-description,
.problem-card p,
.feature-card p,
.step-card p,
.report-panel p,
.copyright {
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-description {
  max-width: 56ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(21, 120, 191, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  color: var(--ink);
}

.badge-icon,
.feature-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  box-shadow: 0 0 0 6px rgba(30, 156, 167, 0.1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  box-shadow: 0 16px 30px rgba(21, 120, 191, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
}

.trust-line {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.trust-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-faint);
}

.trust-roles {
  font-size: 0.96rem;
  color: var(--ink);
}

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

.platform-window,
.problem-card,
.feature-card,
.step-card,
.report-preview,
.floating-metric,
.interviewer-card,
.insight-card,
.problem-statement {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-window {
  position: absolute;
  inset: 18px 0 18px;
  border-radius: 30px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(250, 252, 255, 0.92);
  border-bottom: 1px solid rgba(17, 36, 63, 0.06);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 36, 63, 0.14);
}

.platform-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  height: calc(100% - 39px);
  padding: 18px;
}

.interviewer-card,
.insight-card {
  border-radius: 24px;
  padding: 18px;
}

.card-label,
.metric-kicker,
.step-tag,
.report-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.avatar-tile {
  min-height: 170px;
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 36, 63, 0.06);
}

.avatar-tile strong,
.problem-card h3,
.feature-card h3,
.step-card h3,
.report-header h3 {
  display: block;
  margin: 0 0 10px;
}

.avatar-tile strong {
  font-size: 1rem;
  line-height: 1.35;
}

.avatar-tile p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.avatar-orb {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(135deg, rgba(21, 120, 191, 0.86), rgba(30, 156, 167, 0.92));
}

.avatar-wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 64px;
  margin-bottom: 14px;
}

.avatar-wave span {
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 120, 191, 0.2), rgba(30, 156, 167, 0.88));
}

.avatar-wave span:nth-child(1) {
  height: 34px;
}

.avatar-wave span:nth-child(2) {
  height: 62px;
}

.avatar-wave span:nth-child(3) {
  height: 48px;
}

.avatar-wave span:nth-child(4) {
  height: 70px;
}

.scenario-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.scenario-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  font-size: 0.78rem;
  color: var(--ink);
}

.insight-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mini-list li,
.score-row span,
.score-row strong {
  font-size: 0.84rem;
}

.mini-list li {
  padding-left: 16px;
  position: relative;
  color: var(--ink-soft);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 36, 63, 0.06);
  gap: 12px;
}

.score-row:first-of-type {
  margin-top: 12px;
}

.score-row strong {
  color: var(--ink);
}

.floating-metric {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.floating-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}

.metric-top {
  top: 0;
  right: 14px;
}

.metric-bottom {
  left: 0;
  bottom: 0;
}

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

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.section-description {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

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

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

.problem-card,
.feature-card,
.step-card {
  padding: 26px;
  border-radius: 24px;
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(21, 120, 191, 0.14), rgba(30, 156, 167, 0.18));
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.problem-statement {
  display: inline-flex;
  margin-top: 28px;
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

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

.feature-icon {
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: start;
  margin-top: 32px;
}

.experience-steps {
  display: grid;
  gap: 18px;
}

.step-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.report-preview {
  padding: 26px;
  border-radius: 28px;
}

.report-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.report-score {
  min-width: 140px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21, 120, 191, 0.09), rgba(30, 156, 167, 0.14));
}

.report-score span,
.panel-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-faint);
}

.report-score strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.report-panel {
  padding: 20px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 36, 63, 0.06);
}

.report-panel-wide {
  grid-column: 1 / -1;
}

.bar-group {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bar-row {
  display: grid;
  gap: 8px;
}

.bar-row span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 36, 63, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.w-88 {
  width: 88%;
}

.w-84 {
  width: 84%;
}

.w-78 {
  width: 78%;
}

.voice-metrics {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.voice-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.voice-metrics strong {
  font-size: 0.92rem;
}

.voice-metrics span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer {
  display: block;
  padding: 0 0 40px;
}

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

.footer-brand-lockup .brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.footer-brand-lockup .brand-mark img {
  width: 64px;
  height: 64px;
}

.footer-company {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.footer-company p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.copyright {
  margin: 0;
  font-size: 0.86rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

[data-reveal="left"] {
  transform: translateX(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .brand-mark,
  .brand-mark img {
    width: 56px;
    height: 56px;
  }

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

@media (max-width: 760px) {
  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 24px), var(--page-width));
  }

  .topbar {
    min-height: 78px;
    margin-top: 10px;
    padding: 0 14px;
  }

  .brand-text {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .section {
    padding: 76px 0;
  }

  .hero-actions,
  .hero-badges,
  .footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .topbar-actions {
    display: none;
  }

  .brand-mark,
  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .footer-brand-lockup .brand-mark,
  .footer-brand-lockup .brand-mark img {
    width: 52px;
    height: 52px;
  }

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

  .platform-window {
    position: relative;
    inset: auto;
  }

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

  .insight-column {
    grid-template-columns: 1fr;
  }

  .avatar-grid,
  .problem-grid,
  .feature-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .feature-card,
  .step-card,
  .report-preview,
  .interviewer-card,
  .insight-card {
    padding: 22px;
  }

  .report-header,
  .footer {
    flex-direction: column;
    align-items: start;
  }
}

@page {
  size: A4 landscape;
  margin: 12mm;
}

@media print {
  body {
    background: #ffffff !important;
  }

  body::before {
    display: none !important;
  }

  .topbar,
  .section,
  .footer {
    width: 100% !important;
    margin: 0 !important;
  }

  .topbar {
    position: static;
    margin-bottom: 10mm !important;
  }

  .hero,
  .experience-layout {
    grid-template-columns: 1fr 1fr !important;
  }

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

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

  .section {
    padding: 0 0 10mm !important;
    break-inside: avoid;
  }

  .platform-window,
  .problem-card,
  .feature-card,
  .step-card,
  .report-preview,
  .floating-metric,
  .interviewer-card,
  .insight-card,
  .problem-statement {
    box-shadow: none !important;
  }
}
