:root {
  color-scheme: light;
  --ink: #13271f;
  --muted: #65706b;
  --line: rgba(19, 39, 31, 0.12);
  --soft: #f4f5f2;
  --white: rgba(255, 255, 255, 0.82);
  --green: #bfe8bd;
  --green-strong: #5fa46a;
  --green-deep: #1d5f3c;
  --shadow: 0 24px 70px rgba(19, 39, 31, 0.11);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(191, 232, 189, 0.28), transparent 34rem),
    linear-gradient(180deg, #fbfbf8 0%, #f2f4f0 100%);
  color: var(--ink);
}

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

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(251, 251, 248, 0.72);
  border-bottom: 1px solid rgba(19, 39, 31, 0.08);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 790;
  font-size: 20px;
}

.mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 3px;
}

.mark i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.mark i:nth-child(1) { height: 12px; }
.mark i:nth-child(2) { height: 21px; }
.mark i:nth-child(3) { height: 27px; }
.mark i:nth-child(4) { height: 17px; }
.mark i:nth-child(5) { height: 23px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 720;
  box-shadow: 0 10px 26px rgba(19, 39, 31, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); border-color: rgba(95, 164, 106, 0.42); }

.button.primary {
  background: linear-gradient(135deg, #d8f2d2, #bfe8bd);
  border-color: rgba(95, 164, 106, 0.3);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 58px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-strong);
  box-shadow: 0 0 0 7px rgba(95, 164, 106, 0.12);
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--green-deep);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.microcopy { margin: 16px 0 0; color: var(--muted); font-size: 14px; }

.glass {
  background: var(--white);
  backdrop-filter: blur(28px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.demo-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  padding: 24px;
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: -20% -30% auto auto;
  width: 72%;
  height: 82%;
  background: radial-gradient(circle, rgba(191, 232, 189, 0.54), transparent 68%);
  pointer-events: none;
}

.window {
  position: relative;
  min-height: 330px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 39, 31, 0.1);
  overflow: hidden;
}

.window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(19, 39, 31, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.traffic { display: flex; gap: 7px; }
.traffic i { width: 10px; height: 10px; border-radius: 999px; background: #e2e2df; }

.composer { padding: 26px; }

.input-line {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(19, 39, 31, 0.08);
}

.input-line strong { min-width: 74px; color: var(--ink); }

.final-text {
  min-height: 122px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.58;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 22px;
  margin-left: 3px;
  background: var(--green-strong);
  vertical-align: middle;
  animation: blink 1s steps(2, start) infinite;
}

.dictation {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 22px;
  padding: 18px;
}

.dictation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 760;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef5a50;
  box-shadow: 0 0 0 6px rgba(239, 90, 80, 0.11);
}

kbd {
  min-width: 34px;
  padding: 5px 9px;
  border-radius: 9px;
  background: rgba(19, 39, 31, 0.07);
  font: inherit;
  font-size: 12px;
  text-align: center;
}

.raw {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.wave {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  margin-top: 16px;
}

.wave i {
  width: 5px;
  border-radius: 999px;
  background: var(--green-strong);
  animation: pulse 900ms ease-in-out infinite alternate;
}

.wave i:nth-child(2n) { animation-delay: 130ms; }
.wave i:nth-child(3n) { animation-delay: 230ms; }

.section { padding: 78px 0; }

.section-title {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-title h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: 0; }
.section-title p { margin: 16px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }

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

.card {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 39, 31, 0.09);
}

.card h3 { margin: 0 0 10px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); line-height: 1.58; }

.green-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 42px;
  background:
    radial-gradient(circle at 78% 70%, rgba(48, 129, 74, 0.68), transparent 30%),
    radial-gradient(circle at 22% 6%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(135deg, #dff3df 0%, #f7fbf5 42%, #9bd290 100%);
  border: 1px solid rgba(95, 164, 106, 0.22);
}

.green-panel h2 { max-width: 680px; margin: 0; font-size: clamp(42px, 7vw, 76px); line-height: 1; letter-spacing: 0; }
.green-panel p { max-width: 540px; margin: 20px 0 0; color: rgba(19, 39, 31, 0.72); font-size: 18px; line-height: 1.55; }

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

.price {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(216, 242, 210, 0.56));
  border-color: rgba(95, 164, 106, 0.34);
}

.amount { font-size: 38px; font-weight: 820; }
.amount span { color: var(--muted); font-size: 15px; font-weight: 620; }

.list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: var(--muted); line-height: 1.45; }
.list li::before { content: "✓"; margin-right: 8px; color: var(--green-deep); font-weight: 900; }

.footer {
  padding: 44px 0;
  color: var(--muted);
  border-top: 1px solid rgba(19, 39, 31, 0.09);
}

.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

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

.message-card {
  width: min(520px, 100%);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
}

.message-card h1 { font-size: 38px; line-height: 1.06; }
.message-card p { color: var(--muted); line-height: 1.58; }

@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse { to { transform: scaleY(0.45); opacity: 0.62; } }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .demo-card { min-height: 520px; }
  .grid.three, .grid.two, .pricing { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-inner { height: 64px; }
  h1 { font-size: 44px; }
  .lead { font-size: 17px; }
  .demo-card { padding: 12px; min-height: 540px; }
  .dictation { left: 12px; right: 12px; bottom: 12px; }
  .green-panel { padding: 28px; }
}
