:root {
  --ink: #0b2747;
  --ink-soft: #52697f;
  --blue: #0764d8;
  --blue-dark: #044aa9;
  --aqua: #00d6c4;
  --orange: #ff6a35;
  --yellow: #ffcf38;
  --mint: #d8fbf3;
  --ice: #eff7ff;
  --white: #fff;
  --line: rgba(11, 39, 71, 0.12);
  --shadow: 0 24px 70px rgba(5, 52, 102, 0.16);
  --font: ui-rounded, "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fbfdff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 0.7rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 2rem), 78rem);
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.65rem 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 40px rgba(4, 65, 126, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 45px rgba(4, 65, 126, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.72rem;
  box-shadow: 0 5px 15px rgba(0, 127, 245, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-nav > a:not(.button) {
  color: #314e69;
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.button,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 0.85rem;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 9px 20px rgba(8, 127, 245, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.waitlist-form button:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(8, 127, 245, 0.28);
  transform: translateY(-2px);
}

.button--small {
  padding: 0.78rem 1.05rem;
  font-size: 0.78rem;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(calc(100% - 3rem), 76rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 9rem 0 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -35vw;
  z-index: -1;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  opacity: 0.72;
  background: radial-gradient(circle, rgba(0, 214, 196, 0.18), rgba(8, 127, 245, 0.08) 42%, transparent 68%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(8, 127, 245, 0.16);
  border-radius: 999px;
  background: rgba(8, 127, 245, 0.07);
  color: #075eb9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pill > span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 214, 196, 0.16);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4.2rem, 7vw, 7rem);
  font-weight: 900;
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.27rem);
  line-height: 1.58;
}

.waitlist-form {
  position: relative;
  display: flex;
  max-width: 39rem;
  gap: 0.65rem;
  padding: 0.48rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  box-shadow: 0 16px 42px rgba(7, 71, 130, 0.11);
}

.waitlist-form input[type="email"] {
  min-width: 0;
  flex: 1;
  padding: 0.8rem 0.8rem;
  border: 0;
  border-radius: 0.65rem;
  color: var(--ink);
  background: transparent;
}

.waitlist-form:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.waitlist-form input[type="email"]::placeholder {
  color: #5e7285;
}

.waitlist-form button {
  flex: 0 0 auto;
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-note {
  min-height: 1.2rem;
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.form-note.is-success {
  color: #087b68;
  font-weight: 700;
}

.form-note.is-error {
  color: #bf3f20;
  font-weight: 700;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #52697f;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-facts svg {
  width: 1.05rem;
  fill: var(--blue);
}

.hero-demo {
  position: relative;
  min-height: 42rem;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.glow--blue {
  inset: 3% -5% auto auto;
  width: 24rem;
  height: 24rem;
  background: rgba(8, 127, 245, 0.2);
}

.glow--aqua {
  right: 25%;
  bottom: 4%;
  width: 19rem;
  height: 19rem;
  background: rgba(0, 214, 196, 0.22);
}

.phone {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: min(100%, 22.5rem);
  min-height: 42.5rem;
  padding: 0.65rem 1rem 1rem;
  overflow: hidden;
  border: 7px solid #082a4d;
  border-radius: 3.3rem;
  background: #f2f4f7;
  box-shadow: 0 35px 80px rgba(5, 41, 77, 0.27), inset 0 0 0 1px rgba(255,255,255,.4);
  transform: translateX(-50%) rotate(2deg);
  transition: transform 220ms ease;
}

.phone.is-recording {
  transform: translateX(-50%) rotate(0deg) scale(1.01);
}

.phone::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 5;
  width: 7rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #04182d;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.35rem 1.25rem;
  color: #173b5d;
  font-size: 0.62rem;
  font-weight: 800;
}

.phone-top i {
  width: 7rem;
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(11,39,71,.07);
  border-radius: 1.1rem;
  background: white;
  box-shadow: 0 8px 20px rgba(13, 52, 87, 0.06);
}

.app-bar > div {
  display: grid;
}

.app-label {
  color: #8092a3;
  font-size: 0.65rem;
  font-weight: 650;
}

.app-bar strong {
  font-size: 0.95rem;
}

.online {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #4d657b;
  font-size: 0.6rem;
  font-weight: 700;
}

.online i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #1fc987;
  box-shadow: 0 0 0 3px rgba(31,201,135,.12);
}

.recorder {
  display: grid;
  min-height: 30.5rem;
  place-items: center;
  align-content: center;
  padding-top: 1.5rem;
}

.timer {
  margin-bottom: 2rem;
  color: #173b5d;
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.signal-rings {
  position: relative;
  display: grid;
  width: 15.5rem;
  height: 15.5rem;
  place-items: center;
}

.signal-rings > span {
  position: absolute;
  border: 2px solid rgba(255, 106, 53, 0.16);
  border-radius: 50%;
  transition: transform 120ms ease, opacity 120ms ease;
}

.signal-rings > span:nth-child(1) { inset: 0; }
.signal-rings > span:nth-child(2) { inset: 1.2rem; }
.signal-rings > span:nth-child(3) { inset: 2.4rem; }

.signal-rings.is-active > span:nth-child(1) { animation: signal 900ms ease-in-out infinite alternate; }
.signal-rings.is-active > span:nth-child(2) { animation: signal 720ms 100ms ease-in-out infinite alternate; }
.signal-rings.is-active > span:nth-child(3) { animation: signal 560ms 180ms ease-in-out infinite alternate; }

@keyframes signal {
  to { transform: scale(1.06); border-color: rgba(255, 106, 53, 0.48); }
}

.talk-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #df5524, #b92f0c);
  color: white;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(255, 106, 53, 0.34), inset 0 2px 1px rgba(255,255,255,.4);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 130ms ease, background 130ms ease;
}

.talk-button:hover {
  transform: scale(1.03);
}

.talk-button.is-active {
  background: linear-gradient(145deg, #d84545, #a91f1f);
  transform: scale(1.06);
}

.talk-button svg {
  width: 2rem;
  fill: currentColor;
}

.talk-button span {
  font-size: 0.72rem;
  font-weight: 800;
}

.recorder > p {
  margin: 1.3rem 0 0;
  color: #8191a0;
  font-size: 0.67rem;
}

.phone-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.75rem 0.4rem 0;
  border-top: 1px solid rgba(11,39,71,.08);
  color: #91a0ad;
  font-size: 0.75rem;
}

.phone-nav > span {
  display: grid;
  place-items: center;
  gap: 0.15rem;
}

.phone-nav small {
  font-size: 0.52rem;
  font-weight: 650;
}

.phone-nav .active {
  color: var(--orange);
}

.delivery-card {
  position: absolute;
  right: -2.5rem;
  bottom: 5rem;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 17rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 1rem;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(7,58,107,.16);
  transform: rotate(-3deg);
}

.delivery-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.delivery-icon span {
  position: absolute;
  border: 2px solid var(--aqua);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.delivery-icon span:nth-child(1) { inset: 0; }
.delivery-icon span:nth-child(2) { inset: .45rem; }
.delivery-icon span:nth-child(3) { inset: .9rem; background: var(--aqua); border: 0; }

.delivery-card > div:nth-child(2) {
  display: grid;
}

.delivery-card small {
  color: #8191a0;
  font-size: 0.55rem;
  font-weight: 750;
  text-transform: uppercase;
}

.delivery-card strong {
  font-size: 0.76rem;
}

.delivery-card > b {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: #d9faf0;
  color: #0a9c73;
  font-size: 0.75rem;
}

.try-note {
  position: absolute;
  top: 6rem;
  left: -3rem;
  z-index: 5;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(11,39,71,.12);
  border-radius: 0.8rem;
  background: var(--yellow);
  color: #59440a;
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 5px 6px 0 rgba(11,39,71,.08);
  transform: rotate(-7deg);
}

.story-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 1.35rem 1.5rem;
  background: var(--ink);
  color: white;
  font-size: clamp(0.72rem, 1.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.story-strip b {
  color: var(--aqua);
  font-size: 1.2rem;
}

.section {
  width: min(calc(100% - 3rem), 76rem);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.section-tag,
.kicker {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(8,127,245,.2);
  border-radius: 999px;
  background: rgba(8,127,245,.05);
}

.intro-copy h2,
.steps-heading h2,
.inbox-copy h2,
.values-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 880;
}

.intro-copy > p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.steps-section {
  background: var(--ice);
}

.steps-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

.steps-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

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

.step-card {
  position: relative;
  min-height: 29rem;
  padding: 1.2rem 1.2rem 1.7rem;
  border: 1px solid rgba(11,39,71,.08);
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 15px 35px rgba(14, 77, 130, 0.07);
}

.step-number {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  z-index: 2;
  color: rgba(11,39,71,.35);
  font-size: 0.7rem;
  font-weight: 850;
}

.step-visual {
  position: relative;
  display: grid;
  height: 16rem;
  place-items: center;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 1rem;
}

.step-visual--talk {
  background: linear-gradient(145deg, #e5f3ff, #c9faf5);
}

.step-visual--talk svg {
  position: relative;
  z-index: 2;
  width: 4.5rem;
  padding: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8b42, var(--orange));
  fill: white;
  box-shadow: 0 12px 28px rgba(255,106,53,.28);
}

.mini-ring {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border: 2px solid rgba(255,106,53,.2);
  border-radius: 50%;
}

.mini-ring:nth-child(2) {
  width: 12rem;
  height: 12rem;
}

.step-visual--review {
  align-content: center;
  gap: 1.2rem;
  background: linear-gradient(145deg, #fff1e9, #fff9e6);
}

.step-visual--review .fake-play {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--orange);
  font-size: 1.4rem;
  box-shadow: 0 12px 30px rgba(132,76,24,.12);
}

.waveform {
  display: flex;
  height: 2rem;
  align-items: center;
  gap: 0.28rem;
}

.waveform span {
  width: 0.24rem;
  height: 45%;
  border-radius: 999px;
  background: var(--orange);
}

.waveform span:nth-child(2),
.waveform span:nth-child(6) { height: 75%; }
.waveform span:nth-child(3),
.waveform span:nth-child(5) { height: 100%; }
.waveform span:nth-child(4) { height: 62%; }

.step-visual--arrive {
  background: linear-gradient(145deg, #d7f9f0, #ddecff);
}

.message-line {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 48%;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--aqua));
}

.message-line::before,
.message-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.message-line::after {
  right: 0;
  background: var(--aqua);
}

.room-card {
  position: absolute;
  right: 13%;
  display: flex;
  width: 5.5rem;
  height: 6.5rem;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(11,39,71,.08);
  border-radius: 1.15rem;
  background: white;
  box-shadow: 0 12px 28px rgba(23,81,126,.12);
}

.room-card span {
  position: absolute;
  top: 0.85rem;
  color: var(--blue);
  font-size: 1.3rem;
}

.room-card i {
  width: 0.35rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--aqua);
}

.room-card i:nth-of-type(2) { height: 2rem; }
.room-card i:nth-of-type(3) { height: 1.5rem; }

.step-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.4rem;
}

.step-card > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.inbox-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.inbox-section::before {
  content: "";
  position: absolute;
  right: -15rem;
  bottom: -20rem;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: rgba(0,214,196,.14);
  filter: blur(10px);
}

.inbox-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.inbox-copy .kicker {
  color: var(--aqua);
}

.inbox-copy h2 {
  max-width: 11ch;
}

.inbox-copy > p:not(.kicker) {
  max-width: 35rem;
  color: #b9c8d6;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #dce8f2;
  font-size: 0.85rem;
  font-weight: 700;
}

.feature-list span {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,214,196,.16);
  color: var(--aqua);
  font-size: 0.68rem;
}

.inbox-preview {
  width: min(100%, 31rem);
  justify-self: end;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2rem;
  background: #f1f4f7;
  color: var(--ink);
  box-shadow: 0 35px 70px rgba(0,0,0,.3);
  transform: rotate(2deg);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.45rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.preview-header strong {
  font-size: 1.2rem;
}

.voice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(11,39,71,.07);
  border-radius: 1rem;
  background: white;
  box-shadow: 0 7px 18px rgba(11,39,71,.06);
}

.voice-card--active {
  border-color: rgba(0,214,196,.45);
  box-shadow: 0 8px 24px rgba(0,214,196,.12);
}

.avatar {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: #dceeff;
  color: var(--blue);
  font-weight: 850;
}

.avatar--orange { color: #d64a18; background: #ffe4d8; }
.avatar--yellow { color: #89690a; background: #fff1b8; }

.voice-card > div:nth-child(2) {
  display: grid;
}

.voice-card strong {
  font-size: 0.86rem;
}

.voice-card span,
.voice-card small {
  color: #7a8fa2;
  font-size: 0.6rem;
}

.voice-card--active small {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #0b9679;
  font-weight: 750;
}

.voice-card small i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--aqua);
}

.voice-action {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 0.7rem;
}

.values-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.values-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

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

.value-card {
  min-height: 22rem;
  padding: 2rem;
  border-radius: 1.4rem;
}

.value-card--blue { background: #dceeff; }
.value-card--orange { background: #ffe4d8; }
.value-card--mint { background: var(--mint); }

.value-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  margin-bottom: 6rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.65);
  font-size: 1.2rem;
  font-weight: 850;
}

.value-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.value-card p {
  margin-bottom: 0;
  color: #455e75;
  font-size: 0.9rem;
}

.faq-section {
  background: var(--ice);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid rgba(11,39,71,.14);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 3rem 1.5rem 0;
  margin: 0;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 48rem;
  place-items: center;
  padding: 7rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #087ff5, #00b9db 62%, #00d6c4);
  color: white;
  text-align: center;
}

.final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.final-inner > img {
  width: 6rem;
  margin-bottom: 1.4rem;
  border-radius: 1.65rem;
  box-shadow: 0 16px 35px rgba(0,50,100,.28);
}

.pill--light {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: white;
}

.pill--light > span {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,207,56,.2);
}

.final-cta h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
}

.final-inner > p:not(.pill):not(.form-note) {
  margin-bottom: 2rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
}

.waitlist-form--light {
  width: min(100%, 38rem);
}

.form-note--light {
  color: rgba(255,255,255,.7);
}

.form-note--light.is-success,
.form-note--light.is-error {
  color: white;
}

.sound-path {
  position: absolute;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.sound-path--one {
  top: -23rem;
  left: -12rem;
  width: 55rem;
  height: 55rem;
}

.sound-path--two {
  right: -18rem;
  bottom: -28rem;
  width: 65rem;
  height: 65rem;
}

.site-footer {
  padding: 3.5rem max(1.5rem, calc((100vw - 76rem) / 2));
  background: #071d33;
  color: white;
}

.footer-top,
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand--footer {
  color: white;
}

.footer-top > p {
  margin: 0;
  color: #9cb0c2;
  font-size: 0.8rem;
  text-align: center;
}

.footer-top > a:last-child {
  justify-self: end;
  color: #cfe0ee;
  font-size: 0.78rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7f96aa;
  font-size: 0.65rem;
}

.footer-bottom p {
  grid-column: 2 / 4;
  max-width: 48rem;
  justify-self: end;
  margin: 0;
  text-align: right;
}

.legal-page {
  min-height: 100svh;
  background: linear-gradient(155deg, #eff7ff, #fbfdff 45%, #e9fffa);
}

.legal-shell {
  width: min(calc(100% - 2rem), 52rem);
  margin: 0 auto;
  padding: 3rem 0 7rem;
}

.legal-shell > .brand {
  margin-bottom: clamp(4rem, 10vw, 8rem);
}

.legal-shell article {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
}

.legal-shell h2 {
  margin: 2.7rem 0 0.65rem;
  font-size: 1.3rem;
}

.legal-shell article > p:not(.kicker):not(.legal-updated) {
  color: var(--ink-soft);
}

.legal-updated {
  color: #64798c;
  font-size: 0.76rem;
}

.legal-back {
  display: inline-flex;
  margin-top: 2.5rem;
  color: var(--blue-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr);
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.6rem);
  }

  .delivery-card { right: -1rem; }
  .try-note { left: -1rem; }

  .inbox-grid {
    gap: 4rem;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 0.65rem;
    width: calc(100% - 1.3rem);
    flex-wrap: wrap;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: none;
    width: 2.65rem;
    height: 2.65rem;
    place-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--ink);
  }

  .js .menu-button {
    display: grid;
  }

  .menu-button > span:not(.sr-only) {
    width: 1rem;
    height: 2px;
    background: white;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

  .site-nav {
    display: grid;
    width: 100%;
    gap: 0.2rem;
    padding-top: 0.75rem;
  }

  .js .site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    padding: 5rem 1rem 1rem;
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 16px 45px rgba(5,52,102,.18);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 0.75rem;
    font-size: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 2rem), 40rem);
    padding-top: 8rem;
  }

  .hero-demo {
    min-height: 44rem;
  }

  .phone {
    left: 48%;
  }

  .try-note { left: 1rem; }
  .delivery-card { right: 0; }

  .story-strip {
    gap: 0.65rem;
  }

  .section {
    width: min(calc(100% - 2rem), 40rem);
    padding-block: 6rem;
  }

  .intro,
  .steps-heading,
  .inbox-grid,
  .values-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .step-visual {
    height: 14rem;
  }

  .inbox-preview {
    justify-self: center;
  }

  .value-card {
    min-height: 18rem;
  }

  .value-icon {
    margin-bottom: 4rem;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-top > a:last-child,
  .footer-bottom p {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 4.6rem);
  }

  .waitlist-form {
    display: grid;
  }

  .waitlist-form input[type="email"],
  .waitlist-form button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
  }

  .phone {
    left: 50%;
    width: min(88vw, 21rem);
  }

  .delivery-card {
    right: -0.5rem;
    bottom: 2rem;
    min-width: 15.5rem;
  }

  .try-note {
    top: 4rem;
    left: -0.5rem;
  }

  .story-strip span:nth-of-type(2),
  .story-strip span:nth-of-type(3),
  .story-strip b {
    display: none;
  }

  .intro-copy h2,
  .steps-heading h2,
  .inbox-copy h2,
  .values-heading h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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