:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #53666c;
  --paper: #fff7df;
  --cream: #fffaf0;
  --blue: #aee7ff;
  --pink: #ffb7d5;
  --yellow: #ffd86f;
  --mint: #95f5cd;
  --green: #0f5c53;
  --purple: #5b4acf;
  --orange: #ff9364;
  --line: #172126;
  --shadow: 8px 8px 0 #172126;
  --shadow-soft: 0 18px 38px rgba(23, 33, 38, 0.12);
  font-family:
    "Arial Rounded MT Bold",
    "Avenir Next",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
  background:
    radial-gradient(circle at 20px 20px, rgba(23, 33, 38, 0.08) 2px, transparent 2px),
    linear-gradient(180deg, #fff7df 0%, #f6fbff 45%, #fff0f7 100%);
  background-size:
    34px 34px,
    auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 0 max(20px, calc((100vw - 1140px) / 2));
  background: rgba(255, 247, 223, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid transparent;
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-0.5deg);
}

.main-nav a,
.mobile-nav a {
  padding: 8px 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  border-radius: 8px;
}

.main-nav a:hover,
.mobile-nav a:hover {
  background: var(--yellow);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  font-size: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--ink);
}

.header-cta:hover,
.button.primary:hover,
.button.secondary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 3px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: sticky;
  top: 74px;
  z-index: 49;
  display: grid;
  gap: 6px;
  padding: 12px 20px 16px;
  background: #fff7df;
  border-bottom: 3px solid var(--ink);
}

.mobile-nav[hidden] {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 74px);
  padding: 70px 0 88px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.hero::before {
  top: 58px;
  left: -24px;
  width: 86px;
  height: 86px;
  background: var(--pink);
  transform: rotate(12deg);
}

.hero::after {
  right: 16px;
  bottom: 44px;
  width: 120px;
  height: 70px;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.hero-copy {
  position: relative;
}

.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-stickers span,
.feature-sticker,
.section-doodle {
  width: fit-content;
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-2deg);
}

.hero-stickers span:nth-child(2) {
  background: var(--blue);
  transform: rotate(2deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.93;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-text,
.privacy-copy p,
.platform-copy p,
.download-card p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 7px 10px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.trust-strip span:nth-child(2) {
  background: var(--blue);
}
.trust-strip span:nth-child(3) {
  background: var(--pink);
}
.trust-strip span:nth-child(4) {
  background: var(--mint);
}

.product-stage {
  position: relative;
  padding-top: 54px;
}

.doodle-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  place-items: center;
  width: 96px;
  height: 74px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.doodle-card strong {
  font-size: 24px;
  line-height: 1;
}

.doodle-left {
  left: -22px;
  top: 96px;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.doodle-right {
  right: -18px;
  bottom: 42px;
  background: var(--pink);
  transform: rotate(7deg);
}

.dictation-pill {
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(2deg);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 147, 100, 0.7);
  animation: pulse 1.8s infinite;
}

.app-frame {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 14px;
  border-bottom: 3px solid var(--ink);
  background: var(--blue);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
}

.window-bar span:nth-child(2) {
  background: var(--yellow);
}
.window-bar span:nth-child(3) {
  background: var(--mint);
}

.window-bar strong {
  margin-left: 8px;
  font-size: 13px;
  color: var(--ink);
}

.app-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 410px;
}

.app-layout aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  border-right: 3px solid var(--ink);
  background: #fff0f7;
}

.app-layout aside span {
  padding: 9px 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.app-layout aside .active {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.app-layout section {
  padding: 22px;
  background: #fffaf0;
}

.transcript-card {
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.transcript-card .tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.transcript-card h2 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.1;
}

.transcript-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.wave-row {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 72px;
  margin: 18px 0;
  padding: 0 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 4px 4px 0 var(--ink);
}

.wave-row span {
  width: 100%;
  max-width: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--mint);
  opacity: 1;
  animation: level 1.4s infinite ease-in-out;
}

.wave-row span:nth-child(1) {
  height: 18px;
  animation-delay: 0s;
}
.wave-row span:nth-child(2) {
  height: 34px;
  animation-delay: 0.1s;
  background: var(--yellow);
}
.wave-row span:nth-child(3) {
  height: 48px;
  animation-delay: 0.2s;
}
.wave-row span:nth-child(4) {
  height: 24px;
  animation-delay: 0.3s;
  background: var(--pink);
}
.wave-row span:nth-child(5) {
  height: 56px;
  animation-delay: 0.4s;
}
.wave-row span:nth-child(6) {
  height: 30px;
  animation-delay: 0.5s;
  background: var(--blue);
}
.wave-row span:nth-child(7) {
  height: 44px;
  animation-delay: 0.6s;
}
.wave-row span:nth-child(8) {
  height: 22px;
  animation-delay: 0.7s;
  background: var(--yellow);
}
.wave-row span:nth-child(9) {
  height: 38px;
  animation-delay: 0.8s;
}
.wave-row span:nth-child(10) {
  height: 28px;
  animation-delay: 0.9s;
  background: var(--pink);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insight-grid div,
.platform-list div,
.workflow-grid article,
.feature-grid article,
.faq-list details {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.insight-grid div {
  padding: 12px;
}

.insight-grid div:nth-child(2) {
  background: var(--yellow);
}
.insight-grid div:nth-child(3) {
  background: var(--mint);
}

.insight-grid strong,
.platform-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.insight-grid span,
.platform-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.privacy-band {
  background: var(--green);
  color: #fffaf0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  padding: 86px 0;
}

.privacy-band .eyebrow {
  color: var(--yellow);
}

.privacy-band h2,
.download-card h2 {
  color: inherit;
}

.privacy-copy p,
.privacy-copy li {
  color: rgba(255, 250, 240, 0.84);
}

.privacy-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  position: relative;
  padding-left: 26px;
  font-weight: 750;
}

.privacy-copy li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
}

.workflow-section,
.features-section,
.platform-section,
.faq-section {
  position: relative;
  padding: 94px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 820px;
}

.section-doodle {
  position: absolute;
  right: 0;
  top: 78px;
  background: var(--pink);
  transform: rotate(4deg);
}

.feature-sticker {
  position: absolute;
  right: 0;
  top: 82px;
  background: var(--blue);
  transform: rotate(-4deg);
}

.workflow-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.workflow-grid article,
.feature-grid article {
  padding: 24px;
}

.workflow-grid article:nth-child(1),
.feature-grid article:nth-child(1),
.feature-grid article:nth-child(5) {
  background: var(--blue);
}

.workflow-grid article:nth-child(2),
.feature-grid article:nth-child(2),
.feature-grid article:nth-child(6) {
  background: var(--yellow);
}

.workflow-grid article:nth-child(3),
.feature-grid article:nth-child(3) {
  background: var(--pink);
}

.feature-grid article:nth-child(4) {
  background: var(--mint);
}

.workflow-grid p,
.feature-grid p,
.faq-list p {
  margin-bottom: 0;
  color: #354950;
  font-weight: 650;
}

.step-number {
  display: block;
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.platform-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  border-top: 4px solid var(--ink);
}

.platform-list {
  display: grid;
  gap: 14px;
}

.platform-list div {
  padding: 20px;
}

.platform-list div:nth-child(1) {
  background: var(--mint);
}
.platform-list div:nth-child(2) {
  background: var(--pink);
}
.platform-list div:nth-child(3) {
  background: var(--blue);
}

.download-section {
  padding: 42px 0;
  background: var(--purple);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 38px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: var(--shadow);
  transform: rotate(-0.4deg);
}

.download-card p {
  max-width: 660px;
  margin-bottom: 0;
  color: #354950;
}

.download-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list details:nth-child(1) {
  background: #fff;
}
.faq-list details:nth-child(2) {
  background: var(--mint);
}
.faq-list details:nth-child(3) {
  background: var(--blue);
}

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

.faq-list p {
  margin-top: 12px;
}

.site-footer {
  padding: 34px 0;
  border-top: 4px solid var(--ink);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-inner div {
  display: flex;
  gap: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 147, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 147, 100, 0);
  }
}

@keyframes level {
  50% {
    transform: scaleY(0.55);
    opacity: 0.72;
  }
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero,
  .split,
  .platform-section,
  .download-card {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    padding-top: 48px;
  }

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

  .download-actions {
    justify-content: flex-start;
  }

  .section-doodle,
  .feature-sticker,
  .doodle-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1140px);
  }

  .site-header {
    min-height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .privacy-copy p,
  .platform-copy p,
  .download-card p {
    font-size: 16px;
  }

  .app-frame {
    transform: none;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-layout aside {
    display: flex;
    overflow: auto;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .app-layout aside span {
    white-space: nowrap;
  }

  .insight-grid,
  .workflow-grid,
  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .workflow-section,
  .features-section,
  .platform-section,
  .faq-section,
  .split {
    padding: 64px 0;
  }

  .download-card {
    padding: 24px;
    transform: none;
  }

  .hero-actions,
  .download-actions {
    display: grid;
  }

  .footer-inner div {
    flex-wrap: wrap;
  }
}
