:root {
  --ink: #101114;
  --muted: #666a70;
  --paper: #f1efe8;
  --root: #e9f2e7;
  --surface: rgba(255, 255, 255, 0.74);
  --green: #86b98f;
  --logo-green: #a1d3a3;
  --lime: #edf5c6;
  --blue: #e0ecf4;
  --sand: #f4ece3;
  --warning: #f1cd8d;
  --orange: #e89276;
  --dark: #101312;
  --line: rgba(16, 17, 20, 0.1);
  --shadow: 0 24px 70px rgba(25, 29, 34, 0.18);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#werkt,
#voor-wie,
#beta {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 5%, rgba(161, 211, 163, 0.66), transparent 26rem),
    linear-gradient(140deg, var(--root) 0%, var(--paper) 45%, #f7f5f0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 28px 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.78);
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand img {
  display: block;
  width: 138px;
  transform: translateY(-9px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding-right: 28px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-header nav a,
.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.site-header nav a {
  padding: 0 14px;
  color: rgba(16, 17, 20, 0.72);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(16, 17, 20, 0.06);
}

.header-cta {
  padding: 0 18px;
  background: var(--dark);
  color: white;
}

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

.hero {
  min-height: calc(100dvh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(34px, 6vw, 72px) 0 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #49624e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kicker span + span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

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

.hero h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8.3vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-subline {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(16, 17, 20, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  min-width: 178px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--dark);
  color: white;
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.hero-note {
  color: rgba(16, 17, 20, 0.62);
  font-weight: 720;
}

.platform-note {
  display: inline-flex;
  margin-top: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(16, 17, 20, 0.68);
  font-weight: 850;
}

.hero-visual {
  min-height: min(690px, calc(100dvh - 134px));
  position: relative;
  display: grid;
  place-items: center;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 70px rgba(25, 29, 34, 0.15);
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.98) rotate(var(--card-rotate));
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cards-ready .float-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--card-rotate));
}

.hero-cards-floating .float-card {
  animation: card-float 7.5s ease-in-out infinite;
}

.float-card span,
.float-card small {
  display: block;
  color: rgba(16, 17, 20, 0.62);
  font-weight: 760;
}

.float-card strong {
  display: block;
  margin: 6px 0;
  font-size: 2rem;
  line-height: 1;
}

.card-income {
  left: -12px;
  top: 120px;
  --card-rotate: -4deg;
  --card-rotate-float: 2deg;
  --card-float-y: -10px;
  background:
    linear-gradient(145deg, rgba(237, 245, 198, 0.58), rgba(255, 255, 255, 0.2));
}

.card-ready {
  right: -8px;
  bottom: 134px;
  --card-rotate: 5deg;
  --card-rotate-float: -2deg;
  --card-float-y: 12px;
  background:
    linear-gradient(145deg, rgba(224, 236, 244, 0.6), rgba(255, 255, 255, 0.2));
  animation-delay: -3.4s;
}

.phone {
  --phone-rotate: -2;
  --phone-y: 0;
  width: min(390px, 88vw, 54dvh);
  aspect-ratio: 390 / 844;
  position: relative;
  border: 10px solid #111214;
  border-radius: 54px;
  background: #111214;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transform: rotate(calc(var(--phone-rotate) * 1deg)) translateY(calc(var(--phone-y) * 1px));
  transition: transform 220ms ease-out;
}

.hero-phone {
  --phone-rotate: 3.5;
}

.phone-hardware {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.phone-hardware span {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 126px;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.phone-app {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(120% 52% at 90% 0%, rgba(255, 255, 255, 0.92), transparent 54%),
    linear-gradient(145deg, #e4f1df 0%, #f4f3ed 42%, #f1ebe5 100%);
}

.statusbar {
  position: relative;
  z-index: 4;
  height: 54px;
  padding: 15px 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 900;
}

.app-screen {
  position: absolute;
  inset: 54px 0 0;
  overflow: hidden;
  padding: 18px 20px 110px;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 360ms ease, transform 360ms ease;
}

.hero-phone .screen-today,
.story-phone[data-active-screen="dictate"] .screen-dictate,
.story-phone[data-active-screen="review"] .screen-review,
.story-phone[data-active-screen="invoice"] .screen-invoice,
.story-phone[data-active-screen="paid"] .screen-paid {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-header,
.compact-app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-weight: 900;
}

.app-header small,
.compact-app-header,
.screen-label {
  color: rgba(16, 17, 20, 0.58);
  font-weight: 800;
}

.app-header h2 {
  margin: 0;
  font-size: 2.28rem;
  line-height: 0.95;
}

.money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.money-grid article,
.record-card,
.summary-card,
.invoice-card,
.speech,
.total-card,
.mini-list div,
.review-lines div {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(16, 17, 20, 0.08);
}

.money-grid article {
  min-height: 116px;
  padding: 14px;
}

.money-grid article:first-child {
  background: var(--lime);
  transform: rotate(-1.5deg);
}

.money-grid article:nth-child(2) {
  background: var(--sand);
  transform: rotate(1.5deg);
}

.money-grid small,
.record-card small,
.summary-card small,
.invoice-card small,
.speech small,
.total-card small {
  display: block;
  color: rgba(16, 17, 20, 0.58);
  font-weight: 800;
}

.money-grid strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.55rem;
}

.money-grid span,
.record-card span,
.invoice-card span {
  color: #2c6636;
  font-weight: 900;
}

.record-card {
  margin-bottom: 18px;
  padding: 18px;
  background: rgba(16, 19, 18, 0.96);
  color: white;
}

.record-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.record-card span {
  color: var(--logo-green);
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-list div {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.mini-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.orange {
  background: var(--orange);
}

.dot.green {
  background: var(--green);
}

.dot.blue {
  background: #a9cde8;
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 100px);
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.problem h2,
.story-copy > h2,
.section-heading h2,
.beta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.problem-copy {
  align-self: end;
  max-width: 650px;
  color: rgba(16, 17, 20, 0.76);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  padding: 94px 0 110px;
}

.story-copy,
.story-steps {
  grid-column: 1;
}

.story-copy {
  grid-row: 1;
}

.story-steps {
  grid-row: 2;
}

.story-copy > h2 {
  max-width: 760px;
  margin-bottom: 42px;
}

.story-step {
  min-height: 86vh;
  position: sticky;
  top: 142px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
  background:
    linear-gradient(90deg, rgba(241, 239, 232, 0.98) 0%, rgba(241, 239, 232, 0.96) 74%, rgba(241, 239, 232, 0) 100%);
  opacity: 0;
  transition: opacity 360ms ease;
}

.story-step.is-current {
  opacity: 1;
}

.story-step:nth-of-type(2) {
  z-index: 2;
}

.story-step:nth-of-type(3) {
  z-index: 3;
}

.story-step:nth-of-type(4) {
  z-index: 4;
}

.story-step:nth-of-type(5) {
  z-index: 5;
}

.story-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--logo-green);
  font-weight: 950;
}

.story-step h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.96;
}

.story-step p {
  max-width: 560px;
  color: rgba(16, 17, 20, 0.72);
  font-size: 1.18rem;
  line-height: 1.5;
}

.phone-sticky {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 9vh;
  min-height: 84vh;
  display: grid;
  place-items: center;
}

.story-progress {
  display: none;
}

.story-cta {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: start;
  z-index: 8;
  margin-top: 84px;
}

.story-step-cta {
  display: none;
  align-self: flex-start;
  margin-top: 28px;
}

.compact-app-header {
  justify-content: space-between;
  font-size: 1.4rem;
  color: var(--ink);
}

.compact-app-header i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.voice-orb {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  margin: 50px auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e64b4b 0 30%, #f6b0a2 31% 52%, rgba(232, 146, 118, 0.24) 53% 100%);
  box-shadow: 0 0 0 18px rgba(232, 146, 118, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

.voice-orb img {
  width: 56px;
  height: 82px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.screen-label,
.timer {
  display: block;
  text-align: center;
}

.timer {
  margin-bottom: 22px;
  font-size: 2.8rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.chips span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.speech {
  padding: 18px;
}

.speech p {
  margin: 8px 0 0;
  line-height: 1.45;
}

.summary-card {
  padding: 18px;
  background: var(--blue);
  transform: rotate(1.5deg);
}

.summary-card h3 {
  margin: 8px 0;
  font-size: 1.72rem;
  line-height: 1;
}

.review-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.review-lines div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.review-lines span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.review-lines p,
.review-lines small {
  margin: 0;
  display: block;
}

.review-lines small {
  color: rgba(16, 17, 20, 0.58);
  font-weight: 760;
}

.review-lines em {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--warning);
  font-style: normal;
  font-weight: 900;
}

.total-card {
  margin-top: 18px;
  padding: 18px;
  background: var(--dark);
  color: white;
}

.total-card strong,
.invoice-card strong,
.paid-screen strong {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
}

.invoice-card {
  padding: 20px;
  margin: 20px 0 18px;
  background: var(--lime);
}

.invoice-card p {
  line-height: 1.4;
}

.invoice-card span {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
}

.paid-screen {
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.paid-screen img {
  width: 112px;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 24px rgba(16, 17, 20, 0.18));
}

.paid-screen small {
  font-weight: 950;
  color: #2c6636;
  text-transform: uppercase;
}

.paid-screen p {
  max-width: 230px;
  color: rgba(16, 17, 20, 0.68);
  line-height: 1.45;
}

.features {
  padding: 96px 0;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.audience-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(16, 17, 20, 0.08);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.feature-grid article:hover,
.feature-grid article:focus-within,
.audience-grid article:hover,
.audience-grid article:focus-within {
  transform: scale(1.028) rotate(var(--hover-rotate, 0.8deg));
  box-shadow: 0 34px 88px rgba(16, 17, 20, 0.16);
}

.feature-grid article:nth-child(1) {
  --hover-rotate: -0.8deg;
  background: var(--lime);
}

.feature-grid article:nth-child(2) {
  --hover-rotate: 0.8deg;
  background: var(--blue);
}

.feature-grid article:nth-child(3) {
  --hover-rotate: -0.8deg;
  background: var(--sand);
}

.feature-grid article:nth-child(4) {
  --hover-rotate: 0.8deg;
  background: rgba(232, 146, 118, 0.36);
}

.feature-grid span,
.audience-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 950;
}

.feature-grid p,
.audience-grid span {
  color: rgba(16, 17, 20, 0.68);
  line-height: 1.48;
}

.audience {
  padding: 40px 0 100px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tilt-left {
  --base-rotate: -1.5deg;
  --hover-rotate: 0.8deg;
  transform: rotate(var(--base-rotate));
}

.tilt-right {
  --base-rotate: 1.4deg;
  --hover-rotate: -0.8deg;
  transform: rotate(var(--base-rotate));
}

.tilt-soft {
  --base-rotate: 0.5deg;
  --hover-rotate: -0.8deg;
  transform: rotate(var(--base-rotate));
}

.audience-grid article:hover,
.audience-grid article:focus-within {
  transform: scale(1.028) rotate(var(--hover-rotate));
}

.beta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: 80px;
  margin-bottom: 72px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 8%, rgba(161, 211, 163, 0.22), transparent 21rem),
    var(--dark);
  color: white;
  overflow: hidden;
}

.beta .eyebrow {
  color: var(--logo-green);
}

.beta-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1.55;
}

.beta-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.beta-promise span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full,
.signup-form .full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
}

fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.platform-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.platform-choice legend {
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
}

.platform-choice label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.platform-choice input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--logo-green);
}

.platform-choice small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

.beta-reward {
  padding: 14px 16px;
  border: 1px solid rgba(161, 211, 163, 0.34);
  border-radius: 18px;
  background: rgba(161, 211, 163, 0.13);
}

.beta-reward span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--logo-green);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.beta-reward p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.38;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  outline: 0;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

input:focus {
  border-color: var(--logo-green);
  box-shadow: 0 0 0 4px rgba(161, 211, 163, 0.18);
}

.signup-form .button.primary {
  min-height: 56px;
  background: var(--logo-green);
  color: var(--dark);
}

.field-error {
  min-height: 1.2em;
  color: #ffb7a7;
  font-size: 0.85rem;
  font-weight: 800;
}

input[aria-invalid="true"] {
  border-color: #ff9d89;
  box-shadow: 0 0 0 4px rgba(255, 157, 137, 0.14);
}

.form-status,
.privacy-note,
.form-fallback {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.privacy-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.form-status[data-type="success"] {
  color: #c9f3c9;
}

.form-status[data-type="error"] {
  color: #ffb7a7;
}

.form-fallback a {
  color: white;
  font-weight: 900;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: rgba(16, 17, 20, 0.64);
}

.site-footer img {
  width: 130px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.story-step.reveal.is-in {
  opacity: 0;
}

.story-step.reveal.is-in.is-current {
  opacity: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(232, 146, 118, 0.12);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 28px rgba(232, 146, 118, 0.06);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--card-rotate));
  }
  50% {
    transform: translate3d(8px, var(--card-float-y), 0) rotate(var(--card-rotate-float));
  }
}

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

  .site-header nav {
    display: none;
  }

  .hero,
  .problem,
  .story,
  .beta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    max-width: 8ch;
  }

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

  .story {
    padding-top: 70px;
  }

  .phone-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    order: -1;
  }

  .story-step {
    position: static;
    min-height: auto;
    padding: 42px 0;
    background: transparent;
    box-shadow: none;
  }

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

  .beta {
    padding: 48px;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    grid-template-columns: 124px auto;
    min-height: 62px;
    padding: 10px 14px 10px 20px;
  }

  .nav-hidden .site-header {
    transform: translateY(calc(-100% - 26px));
  }

  .brand img {
    width: 104px;
    transform: translateY(-7px);
  }

  .brand {
    padding-right: 14px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding: 76px 0 52px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.15rem, 16vw, 4.75rem);
    line-height: 0.92;
  }

  .hero-subline,
  .problem-copy,
  .story-step p,
  .beta-copy p {
    font-size: 1rem;
  }

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

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

  .story {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 64px 0 76px;
  }

  .story-copy {
    order: 0;
  }

  .story-copy > h2 {
    margin-bottom: 22px;
  }

  .phone-sticky {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    position: sticky;
    top: 80px;
    z-index: 8;
    width: 100%;
    min-height: 552px;
    height: 63dvh;
    margin: 2px 0 0;
    place-items: start center;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    overflow: visible;
  }

  .phone-sticky::before {
    content: none;
  }

  .story-phone {
    width: min(236px, 63vw);
    margin-inline: auto;
    justify-self: center;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .story-phone .phone-hardware span {
    top: 7px;
    width: 62px;
    height: 18px;
  }

  .story-phone .statusbar {
    height: 42px;
    padding: 12px 18px 0;
    font-size: 0.72rem;
  }

  .story-phone .app-screen {
    inset: 42px 0 0;
    padding: 12px 14px 78px;
    transform: translateY(18px) scale(0.97);
    transition:
      opacity 520ms ease,
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .story-phone.screen-entering .app-screen {
    transition:
      opacity 520ms ease,
      transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .story-phone .compact-app-header {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.86rem;
    line-height: 1.04;
  }

  .story-phone .compact-app-header b {
    max-width: 112px;
  }

  .story-phone .compact-app-header i {
    width: 24px;
    height: 24px;
  }

  .story-phone .voice-orb {
    width: 96px;
    height: 96px;
    margin: 22px auto 12px;
    box-shadow: 0 0 0 12px rgba(232, 146, 118, 0.1);
  }

  .story-phone .voice-orb img {
    width: 38px;
    height: 54px;
  }

  .story-phone .screen-label {
    font-size: 0.78rem;
  }

  .story-phone .timer {
    margin-bottom: 12px;
    font-size: 1.85rem;
  }

  .story-phone .chips {
    gap: 5px;
    margin-bottom: 10px;
  }

  .story-phone .chips span {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .story-phone .speech,
  .story-phone .summary-card,
  .story-phone .invoice-card,
  .story-phone .total-card {
    padding: 12px;
    border-radius: 16px;
  }

  .story-phone .speech p,
  .story-phone .summary-card p,
  .story-phone .invoice-card p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .story-phone .summary-card h3 {
    font-size: 1.06rem;
  }

  .story-phone .review-lines {
    gap: 7px;
    margin-top: 12px;
  }

  .story-phone .review-lines div {
    min-height: 48px;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .story-phone .review-lines small,
  .story-phone .review-lines strong,
  .story-phone .review-lines em,
  .story-phone .mini-list {
    font-size: 0.7rem;
  }

  .story-phone .invoice-card {
    margin: 12px 0;
  }

  .story-phone .invoice-card strong,
  .story-phone .paid-screen strong,
  .story-phone .total-card strong {
    font-size: 1.75rem;
  }

  .story-phone .invoice-card span {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .story-phone .paid-screen img {
    width: 68px;
    margin-bottom: 14px;
  }

  .story-phone .paid-screen p {
    max-width: 150px;
    font-size: 0.75rem;
  }

  .story-progress {
    display: flex;
    position: absolute;
    left: calc(50% + min(118px, 31.5vw) + 12px);
    top: 45%;
    bottom: auto;
    z-index: 11;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    margin-top: 0;
    padding: 9px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(16, 17, 20, 0.12);
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .story-progress span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(16, 17, 20, 0.18);
    transition: width 240ms ease, background 240ms ease;
  }

  .story-progress span.is-active {
    width: 8px;
    height: 24px;
    background: var(--dark);
  }

  .story-steps {
    order: 2;
    display: grid;
    gap: 14px;
    margin-top: -6px;
  }

  .story-step,
  .story-step.reveal.is-in {
    position: relative;
    z-index: 1;
    min-height: clamp(620px, 88vh, 700px);
    margin: 0;
    padding: clamp(360px, 54vh, 410px) 22px 28px;
    justify-content: flex-start;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 24px;
    background: rgba(247, 245, 240, 0.98);
    box-shadow: 0 18px 54px rgba(16, 17, 20, 0.1);
    opacity: 1;
    transform: rotate(var(--mobile-step-rotate, 0deg));
    transition:
      opacity 320ms ease,
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 320ms ease,
      box-shadow 320ms ease;
  }

  .story-step.is-current,
  .story-step.reveal.is-in.is-current {
    opacity: 1;
    transform: scale(1.012) rotate(var(--mobile-step-rotate, 0deg));
    border-color: rgba(16, 17, 20, 0.2);
    box-shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
  }

  .story-step:nth-child(1) {
    --mobile-step-rotate: -0.7deg;
  }

  .story-step:nth-child(2) {
    --mobile-step-rotate: 0.65deg;
  }

  .story-step:nth-child(3) {
    --mobile-step-rotate: -0.45deg;
  }

  .story-step:nth-child(4) {
    --mobile-step-rotate: 0.55deg;
  }

  .story-step span {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .story-step h3 {
    font-size: clamp(1.9rem, 8.8vw, 2.65rem);
    line-height: 0.98;
  }

  .story-step p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .story-cta {
    position: relative;
    display: inline-flex;
    order: 3;
    z-index: 1;
    justify-self: stretch;
    width: 100%;
    margin-top: 420px;
  }

  .story-step-cta {
    display: none;
  }

  .phone {
    width: min(330px, 92vw);
    border-width: 8px;
    border-radius: 46px;
  }

  .story-phone {
    width: min(236px, 63vw);
  }

  .phone-app {
    border-radius: 36px;
  }

  .float-card {
    width: 152px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 1.45rem;
  }

  .card-income {
    left: -2px;
    top: 40px;
  }

  .card-ready {
    right: 0;
    bottom: 50px;
  }

  .problem,
  .features,
  .audience {
    padding: 56px 0;
  }

  .problem h2,
  .story-copy > h2,
  .section-heading h2,
  .beta h2 {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

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

  .feature-grid article,
  .audience-grid article {
    min-height: 166px;
  }

  .beta {
    width: calc(100% - 24px);
    padding: 30px 18px;
    border-radius: 28px;
  }

  .signup-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .field-group {
    grid-column: 1 / -1;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .float-card {
    animation: none;
  }
}
