@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-2: #090604;
  --panel: #0b0b0d;
  --panel-2: #15100d;
  --text: #f7f5f2;
  --muted: #a9a19c;
  --dim: #7c7470;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff5a1f;
  --orange-2: #ff7a3d;
  --orange-dark: #df4415;
  --green: #17e693;
  --amber: #ffb032;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% 24%, rgba(255, 90, 31, 0.09), transparent 28rem),
    radial-gradient(circle at 86% 48%, rgba(255, 90, 31, 0.15), transparent 31rem),
    radial-gradient(circle at 12% 82%, rgba(255, 90, 31, 0.07), transparent 24rem),
    linear-gradient(180deg, #020202, var(--bg) 52%, #020202);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 62%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.82), rgba(3, 3, 3, 0));
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.52rem;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-bolt {
  fill: var(--orange);
  color: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255, 90, 31, 0.52));
}

.nav {
  justify-content: center;
  gap: 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-actions {
  justify-content: flex-end;
  gap: 1rem;
}

.login-link {
  color: #d8d3cf;
  font-weight: 800;
}

.nav a,
.login-link,
.footer a {
  transition: color 0.2s ease;
}

.nav a:hover,
.login-link:hover,
.footer a:hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.65rem;
  padding: 1rem 1.55rem;
  border: 1px solid rgba(255, 122, 61, 0.64);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%),
    var(--orange);
  color: white;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  box-shadow: 0 18px 48px rgba(255, 90, 31, 0.32);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  filter: brightness(1.09);
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(255, 90, 31, 0.42);
}

.button-small {
  min-height: 2.85rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.86rem;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.hero,
.section,
.proof-strip,
.footer {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: clamp(3.2rem, 7vw, 7rem);
  align-items: center;
  min-height: 100vh;
  padding: 8.8rem 0 4.5rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 0 1.7rem;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(255, 90, 31, 0.36);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.065);
  color: #ffb08c;
  font-size: 0.78rem;
  font-weight: 900;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.3rem, 6vw, 5.75rem);
  line-height: 1.03;
  letter-spacing: -0.075em;
  font-weight: 900;
}

h1 span {
  color: var(--orange);
  text-shadow: 0 0 38px rgba(255, 90, 31, 0.28);
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.55vw, 1.32rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.secure-line {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--dim);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-row strong {
  color: white;
}

.hero-demo {
  position: relative;
  display: grid;
  justify-items: center;
  isolation: isolate;
}

.hero-demo::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(42rem, 95vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), transparent 61%);
  filter: blur(5px);
  transform: translate(2rem, 1.5rem);
}

.phone-frame {
  position: relative;
  width: min(388px, 100%);
  min-height: 645px;
  padding: 2.45rem 1.4rem 1.35rem;
  border: 8px solid #29292b;
  border-radius: 3.1rem;
  background:
    radial-gradient(circle at 50% 83%, rgba(255, 90, 31, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 28%),
    #070708;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 46px 120px rgba(0, 0, 0, 0.66);
}

.phone-speaker {
  position: absolute;
  top: 0.78rem;
  left: 50%;
  width: 4rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.phone-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sarah-avatar {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 74% 82%, var(--green) 0 0.24rem, transparent 0.26rem),
    radial-gradient(circle at 40% 35%, #f5d2b5, transparent 0.82rem),
    linear-gradient(135deg, #875036, #1c1110 68%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone-head strong,
.phone-head span {
  display: block;
}

.phone-head strong {
  font-size: 0.92rem;
}

.phone-head span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.phone-head button {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 90, 31, 0.44);
  border-radius: 0.65rem;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.assistant-message,
.user-message,
.correction-card,
.talk-bar {
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.assistant-message {
  max-width: 82%;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.assistant-message p,
.user-message p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.assistant-message small {
  display: block;
  margin-top: 0.62rem;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.user-message {
  max-width: 79%;
  margin: 1rem 0 0 auto;
  padding: 1rem;
  border-color: rgba(255, 90, 31, 0.62);
  background: linear-gradient(135deg, #ff7637, var(--orange));
  color: white;
  font-weight: 800;
}

.correction-card {
  margin-top: 1rem;
  padding: 1rem;
  border-color: rgba(255, 176, 50, 0.34);
  background: rgba(255, 149, 32, 0.12);
}

.correction-card strong {
  display: block;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.correction-card p,
.correction-card b {
  display: block;
  margin: 0.52rem 0 0;
  color: #f0e4d5;
  font-size: 0.77rem;
  line-height: 1.45;
}

.voice-wave {
  position: absolute;
  right: 0;
  bottom: 6.4rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0.26rem;
  height: 2.3rem;
}

.voice-wave span {
  width: 0.25rem;
  border-radius: 999px;
  background: var(--orange);
  animation: voice 1.1s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { height: 0.72rem; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 1.2rem; animation-delay: 0.08s; }
.voice-wave span:nth-child(3) { height: 1.78rem; animation-delay: 0.16s; }
.voice-wave span:nth-child(4) { height: 1.1rem; animation-delay: 0.24s; }
.voice-wave span:nth-child(5) { height: 1.48rem; animation-delay: 0.32s; }
.voice-wave span:nth-child(6) { height: 0.92rem; animation-delay: 0.4s; }

.talk-bar {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
}

.talk-bar i {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 0.12rem, transparent 0.14rem),
    var(--orange);
  box-shadow: 0 0 24px rgba(255, 90, 31, 0.62);
}

.floating-score,
.floating-streak {
  position: absolute;
  z-index: 2;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 0.92rem;
  background: rgba(14, 11, 10, 0.88);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.floating-score {
  top: 34%;
  right: -2.4rem;
}

.floating-streak {
  bottom: 8.8rem;
  left: -1.7rem;
}

.floating-score small,
.floating-streak small,
.floating-score strong,
.floating-streak strong {
  display: block;
}

.floating-score small,
.floating-streak small {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 900;
}

.floating-score strong,
.floating-streak strong {
  margin-top: 0.18rem;
  color: var(--green);
  font-size: 0.86rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.16);
  border-radius: 1.2rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 90, 31, 0.16));
}

.proof-strip div {
  padding: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-strip div:last-child { border-right: 0; }

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

.proof-strip strong {
  margin-bottom: 0.28rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 6.4rem 0 1.5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

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

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.feature-grid article,
.process-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.feature-grid article,
.process-grid article {
  padding: 1.35rem;
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
}

.feature-grid p,
.process-grid p,
.price-card p,
.price-card li,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-grid strong {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.14);
  color: var(--orange);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.45rem;
}

.price-card.founder {
  border-color: rgba(255, 90, 31, 0.52);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.22), transparent 17rem),
    linear-gradient(180deg, rgba(255, 90, 31, 0.13), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(255, 90, 31, 0.13);
  transform: translateY(-0.65rem);
}

.founder-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-kicker {
  color: #ffb08c;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0.6rem 0 0.2rem;
  color: white;
  font-size: 4.2rem;
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.price span {
  margin-right: 0.25rem;
  color: var(--muted);
  font-size: 1.5rem;
  vertical-align: super;
}

.price small {
  margin-left: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.monthly-equivalent {
  color: #ffb08c !important;
  font-size: 0.84rem;
  font-weight: 900;
}

.progress-box {
  padding: 0.9rem;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 1rem;
  background: rgba(255, 90, 31, 0.06);
}

.progress-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: #ffb08c;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-box i {
  display: block;
  overflow: hidden;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-box b {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.progress-box p {
  margin: 0.7rem 0 0;
  color: #ffb08c !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 auto;
  padding-left: 1.1rem;
}

.pricing-footnotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  color: var(--dim);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.legal-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

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

@keyframes voice {
  0%, 100% { transform: scaleY(0.68); opacity: 0.72; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    background: rgba(3, 3, 3, 0.84);
    backdrop-filter: blur(16px);
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7.5rem;
    text-align: center;
  }

  .hero-copy,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .eyebrow,
  .hero-text {
    margin-inline: auto;
  }

  .feature-grid,
  .process-grid,
  .pricing-grid,
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.founder {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem;
  }

  .brand {
    font-size: 1rem;
  }

  .login-link {
    display: none;
  }

  .button-small {
    min-height: 2.5rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
  }

  .hero {
    width: min(100% - 1.1rem, 1200px);
    gap: 2.5rem;
    padding-top: 6.6rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .phone-frame {
    width: min(350px, 100%);
    min-height: 625px;
    padding: 2.3rem 1rem 1rem;
    border-width: 7px;
  }

  .floating-score,
  .floating-streak {
    display: none;
  }

  .feature-grid,
  .process-grid,
  .pricing-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 5rem;
  }

  .price {
    font-size: 3.45rem;
  }

  .footer {
    flex-direction: column;
  }
}
