@charset "UTF-8";

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

:root {
  color-scheme: light;
  font-family: "Manrope", system-ui, sans-serif;
  --page: #f5f8f7;
  --surface: #ffffff;
  --surface-soft: #edf4f2;
  --ink: #09243d;
  --muted: #5e7180;
  --line: rgba(9, 36, 61, 0.12);
  --brand: #0d8b7d;
  --brand-dark: #08695f;
  --brand-soft: #d9f3ed;
  --navy: #061c3b;
  --shadow: 0 24px 70px rgba(7, 42, 61, 0.13);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #07131c;
  --surface: #0d1e29;
  --surface-soft: #112a34;
  --ink: #f1f7f8;
  --muted: #a9bbc3;
  --line: rgba(225, 241, 244, 0.13);
  --brand: #51d8c3;
  --brand-dark: #88eadb;
  --brand-soft: rgba(44, 176, 157, 0.16);
  --navy: #020a10;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
}

button, input, textarea { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-150%);
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand strong { color: var(--brand); }

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px 5px 12px 5px;
  background: linear-gradient(145deg, var(--brand), #52cbb5);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(13, 139, 125, 0.25);
}

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

.nav-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle span {
  grid-area: 1 / 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.moon-icon, html[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: scale(0.6) rotate(-30deg);
}

html[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.login-button, .primary-button, .submit-button {
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.login-button {
  padding: 12px 18px;
  font-size: 0.88rem;
}

.login-button:hover, .primary-button:hover, .submit-button:hover:not(:disabled) {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero h1 em {
  display: block;
  color: var(--brand);
  font-style: normal;
}

.hero-description {
  max-width: 600px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  box-shadow: 0 14px 28px rgba(13, 139, 125, 0.2);
}

.play-symbol { font-size: 0.72rem; }

.text-button {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-button span {
  margin-left: 5px;
  color: var(--brand);
}

.benefit-list {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 600;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.benefit-list span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 465px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 90%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 213, 193, 0.3), transparent 68%);
  filter: blur(15px);
}

.dashboard-card {
  position: relative;
  width: min(540px, 100%);
  min-height: 360px;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  background: #f7fafb;
  box-shadow: 0 36px 80px rgba(0, 34, 48, 0.25);
  transform: rotate(2.5deg);
}

.dashboard-topbar {
  height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-bottom: 1px solid #e7edef;
}

.mini-brand {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px 4px 9px 4px;
  background: #128f82;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.topbar-line {
  width: 76px;
  height: 8px;
  border-radius: 8px;
  background: #dce6e8;
}

.avatar {
  width: 29px;
  height: 29px;
  margin-left: auto;
  border-radius: 50%;
  background: #dce6e8;
}

.dashboard-body { padding: 30px; color: #153448; }
.dashboard-body p { margin: 0 0 4px; color: #80929d; font-size: 0.72rem; }
.dashboard-body > strong { font-size: 1.25rem; }

.metric-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.metric-row span {
  padding: 16px;
  display: grid;
  gap: 5px;
  border: 1px solid #e5edef;
  border-radius: 13px;
  background: #fff;
}

.metric-row small { color: #72858f; font-size: 0.67rem; }
.metric-row b { font-size: 0.95rem; }

.chart-bars {
  height: 105px;
  margin-top: 27px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid #dbe6e8;
}

.chart-bars i {
  flex: 1;
  height: 40%;
  border-radius: 5px 5px 0 0;
  background: #1a9b8e;
}

.chart-bars i:nth-child(2) { height: 58%; }
.chart-bars i:nth-child(3) { height: 43%; }
.chart-bars i:nth-child(4) { height: 76%; }
.chart-bars i:nth-child(5) { height: 62%; }
.chart-bars i:nth-child(6) { height: 88%; }
.chart-bars i:nth-child(7) { height: 73%; }

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  color: #153448;
  box-shadow: 0 18px 42px rgba(0, 39, 54, 0.19);
  backdrop-filter: blur(12px);
}

.floating-card-top { top: 30px; right: -14px; }
.floating-card-bottom { bottom: 24px; left: -18px; }

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #dbf4ed;
  color: #168b7c;
  font-weight: 800;
}

.floating-icon.blue { background: #dfeafb; color: #376eb8; }
.floating-card span:last-child { display: grid; gap: 3px; }
.floating-card small { color: #718590; font-size: 0.65rem; }
.floating-card strong { font-size: 0.79rem; }

.video-section {
  padding: 105px max(20px, calc((100% - 1060px) / 2));
  background: var(--navy);
  color: #fff;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .eyebrow { justify-content: center; color: #76dac9; }

.section-heading h2, .questions-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: #aebfcc;
  line-height: 1.7;
}

.video-shell {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.video-shell video {
  width: 100%;
  display: block;
  aspect-ratio: 254 / 135;
  border-radius: 16px;
  background: #020a12;
}

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

.steps-grid article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.steps-grid span { color: #62d8c4; font-size: 0.72rem; font-weight: 800; }
.steps-grid h3 { margin: 9px 0 8px; font-size: 1.05rem; }
.steps-grid p { margin: 0; color: #9eb1be; font-size: 0.85rem; line-height: 1.65; }

.questions-section {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 90px;
  align-items: start;
}

.questions-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.answer-card {
  margin-top: 38px;
  padding: 20px;
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.answer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.answer-card strong { font-size: 0.9rem; }
.answer-card p { margin: 5px 0 0; color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.question-form {
  padding: 34px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.form-heading span { font-size: 1.15rem; font-weight: 800; }
.form-heading small { color: var(--muted); font-size: 0.68rem; }

.field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
}

.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: var(--page);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
  line-height: 1.55;
}

.field input:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.72; }
.character-count { justify-self: end; color: var(--muted); font-weight: 500; }

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.submit-button {
  min-height: 50px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.submit-button:disabled { opacity: 0.65; cursor: wait; }

.form-feedback {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-feedback[data-state="success"] { color: #168365; }
.form-feedback[data-state="error"] { color: #c84d37; }

.site-footer {
  min-height: 130px;
  padding: 30px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p { margin: 0; color: var(--muted); font-size: 0.8rem; }

.site-footer > a:last-child {
  margin-left: auto;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav-link { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { width: min(620px, 100%); margin: 0 auto; }
  .questions-section { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 680px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .brand > span:last-child { display: none; }
  .header-actions { gap: 10px; }
  .login-button { padding: 11px 13px; }
  .hero { width: min(100% - 28px, 1180px); padding: 40px 0 70px; gap: 44px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.3rem); }
  .hero-actions { flex-direction: column; }
  .benefit-list { display: grid; justify-items: start; }
  .hero-visual { min-height: 330px; }
  .dashboard-card { min-height: 290px; border-width: 6px; }
  .dashboard-body { padding: 20px; }
  .chart-bars { height: 70px; }
  .floating-card { min-width: 150px; padding: 10px; }
  .floating-card-top { right: -5px; }
  .floating-card-bottom { left: -5px; }
  .video-section { padding-top: 78px; padding-bottom: 78px; }
  .video-shell { margin-inline: -8px; padding: 5px; border-radius: 17px; }
  .video-shell video { border-radius: 12px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; }
  .questions-section { width: min(100% - 28px, 1060px); padding: 78px 0; }
  .question-form { padding: 24px 19px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-block: 38px; flex-direction: column; align-items: flex-start; }
  .footer-brand > span:last-child { display: inline; }
  .site-footer > a:last-child { margin-left: 0; }
}

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