:root {
  --ink: #12100b;
  --ink-soft: #242018;
  --cream: #f5efe4;
  --cream-deep: #e9dfce;
  --lime: #c4ff3d;
  --cyan: #21d4d0;
  --pink: #ff3d84;
  --yellow: #ffcb3d;
  --coral: #ff5443;
  --violet: #9b7bff;
  --muted: #736a5c;
  --line: rgba(18, 16, 11, 0.18);
  --page: min(100% - 2rem, 86rem);
  --display: ui-rounded, "Arial Rounded MT Bold", "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (min-width: 68.01rem) {
  html {
    font-size: 80%;
  }
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
.bit-wordmark {
  font-family: var(--display);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--lime);
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

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

.bit-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.75rem max(1rem, calc((100% - 86rem) / 2));
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.bit-wordmark {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.bit-wordmark img {
  border: 2px solid var(--ink);
  border-radius: 23%;
}

.bit-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  justify-content: center;
}

.bit-nav a,
.bit-footer nav a {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.bit-nav a:hover,
.bit-footer nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0.8rem 1.2rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0 4px 0 #000;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: box-shadow 140ms ease, transform 140ms ease;
}

.button:hover {
  box-shadow: 0 2px 0 #000;
  transform: translateY(2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(4px);
}

.button-small {
  min-height: 44px;
  padding-inline: 1rem;
  border-radius: 0.8rem;
  font-size: 0.82rem;
}

.button-icon {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.app-store-badge {
  display: inline-flex;
  min-height: 52px;
  padding: 0.2rem;
  align-items: center;
  border-radius: 0.75rem;
}

.app-store-badge img {
  width: auto;
  height: 52px;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.text-link span {
  display: inline-block;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link.strong {
  display: inline-flex;
  margin-top: 3rem;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.kicker {
  display: flex;
  margin-bottom: 1.25rem;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker > span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.kicker.light {
  color: #bdb3a2;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: calc(100svh - 5.25rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(30rem, 1.05fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero-lede {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: #544d41;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-bottom: 2rem;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-list {
  display: flex;
  padding: 0;
  gap: 0.55rem 1.4rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  list-style: none;
}

.trust-list li::before {
  margin-right: 0.45rem;
  color: #5c7d1b;
  content: "✓";
  font-weight: 900;
}

.hero-preview {
  position: relative;
  min-height: 44rem;
  overflow: clip;
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 42rem);
  aspect-ratio: 1;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  filter: saturate(0.9);
  transform: translate(-50%, -50%);
}

.phone {
  position: absolute;
  top: 0;
  right: 9%;
  z-index: 2;
  width: min(23rem, 67%);
  min-width: 20rem;
  padding: 1rem;
  color: var(--cream);
  background: #17130d;
  border: 3px solid var(--ink);
  border-radius: 3rem;
  box-shadow: 0 1.2rem 0 rgba(18, 16, 11, 0.19);
  transform: rotate(3deg);
}

.phone-status,
.app-bar,
.tabs,
.drawer-title,
.drawer-tabs,
.messages-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  padding: 0.15rem 0.4rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.app-bar {
  padding: 0.7rem 0.25rem 1rem;
}

.mini-mark {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.avatar {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.65rem;
  place-items: center;
}

.tabs {
  margin-bottom: 0.8rem;
  padding: 0.35rem;
  gap: 0.3rem;
  background: #262117;
  border: 1px solid #3a3125;
  border-radius: 0.75rem;
  font-size: 0.64rem;
  font-weight: 700;
}

.tabs span {
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
}

.tabs .active {
  color: var(--ink);
  background: var(--cyan);
}

.pad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.sound-pad {
  position: relative;
  display: flex;
  min-height: 8rem;
  padding: 0.8rem;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1.1rem;
  box-shadow: 0 4px 0 color-mix(in srgb, currentColor 45%, black);
}

.sound-pad .play {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.6rem;
  place-items: center;
}

.sound-pad .wave {
  margin-bottom: 0.55rem;
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: -0.35em;
  opacity: 0.34;
  transform: scaleX(1.2);
  transform-origin: left;
}

.sound-pad strong {
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sound-pad small {
  margin-top: 0.2rem;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.pad-cyan { background: var(--cyan); }
.pad-pink { background: var(--pink); }
.pad-yellow { background: var(--yellow); }
.pad-violet { background: var(--violet); }
.pad-lime { background: #a6e635; }
.pad-coral { background: var(--coral); }

.new-sound {
  display: flex;
  min-height: 3rem;
  margin-top: 0.9rem;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--cream);
  border-radius: 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.new-sound span {
  font-size: 1.25rem;
}

.message-card {
  position: absolute;
  right: 39%;
  bottom: 1.2rem;
  z-index: 3;
  width: min(22rem, 62%);
  padding: 1rem;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1.5rem;
  box-shadow: 0 0.7rem 0 rgba(18, 16, 11, 0.22);
  transform: rotate(-4deg);
}

.message-label {
  margin-bottom: 0.7rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message-bubble,
.outgoing-chip {
  display: flex;
  min-height: 3.4rem;
  padding: 0.45rem 0.65rem;
  gap: 0.7rem;
  align-items: center;
  color: var(--cream);
  background: #0c3b3a;
  border: 1px solid #2e6966;
  border-radius: 1.2rem;
}

.chip-play {
  display: grid;
  width: 2rem;
  height: 2rem;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 0.65rem;
  place-items: center;
}

.chip-wave,
.demo-wave {
  display: flex;
  height: 2rem;
  gap: 0.19rem;
  align-items: center;
  flex: 1;
}

.chip-wave i,
.demo-wave i {
  width: 0.22rem;
  height: 35%;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.8;
}

.chip-wave i:nth-child(2), .demo-wave i:nth-child(2) { height: 72%; }
.chip-wave i:nth-child(3), .demo-wave i:nth-child(3) { height: 48%; }
.chip-wave i:nth-child(4), .demo-wave i:nth-child(4) { height: 90%; }
.chip-wave i:nth-child(5), .demo-wave i:nth-child(5) { height: 58%; }
.chip-wave i:nth-child(6), .demo-wave i:nth-child(6) { height: 78%; }
.chip-wave i:nth-child(7), .demo-wave i:nth-child(7) { height: 42%; }
.demo-wave i:nth-child(8) { height: 68%; }

.bookmark {
  font-size: 1.35rem;
}

.message-card > p:last-child {
  margin: 0.8rem 0 0;
  color: #bdb3a2;
  font-size: 0.72rem;
}

.hero-demo {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 2rem;
  box-shadow: 0 1rem 0 rgba(18, 16, 11, 0.18);
}

.hero-demo-head,
.hero-demo-footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-demo-head {
  min-height: 4rem;
  padding: 0.8rem 1rem;
  color: var(--cream);
  border-bottom: 1px solid #3a342a;
}

.hero-demo-head p {
  display: flex;
  margin: 0;
  gap: 0.55rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--coral);
  border: 1px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 84, 67, 0.6);
  animation: hero-live-pulse 1.8s ease-out infinite;
}

.hero-demo-head button {
  min-width: 4.8rem;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  color: var(--cream);
  background: #2a251d;
  border: 1px solid #51493d;
  border-radius: 999px;
  font: 750 0.7rem/1 var(--mono);
  cursor: pointer;
}

.hero-demo-stage {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 16, 11, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 16, 11, 0.055) 1px, transparent 1px),
    var(--cream-deep);
  background-size: 2.4rem 2.4rem;
}

.hero-demo-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(32rem, 78%);
  aspect-ratio: 1;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.2rem) scale(0.98);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-hero-phase="capture"] [data-hero-scene="capture"],
[data-hero-phase="bank"] [data-hero-scene="bank"],
[data-hero-phase="send"] [data-hero-scene="send"],
[data-hero-phase="save"] [data-hero-scene="save"] {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.demo-phone {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: min(21rem, 66%);
  min-height: 33.5rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--cream);
  background: #17130d;
  border: 3px solid var(--ink);
  border-radius: 2.8rem;
  box-shadow: 0 1rem 0 rgba(18, 16, 11, 0.22);
  transform: translateX(-50%) rotate(1.5deg);
}

.hero-screen-title {
  display: grid;
  padding: 0.8rem 0.25rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.95rem;
}

.hero-screen-title > span:last-child {
  min-width: 1rem;
}

.hero-record-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #100e0a;
}

.hero-record-phone .phone-status {
  width: 100%;
}

.hero-record-wave {
  display: flex;
  width: 84%;
  height: 8rem;
  margin: 4rem auto 1.3rem;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}

.hero-record-wave i {
  width: 0.46rem;
  height: 22%;
  background: var(--coral);
  border-radius: 999px;
}

[data-hero-phase="capture"] .hero-record-wave i {
  animation: hero-wave 760ms ease-in-out infinite alternate;
}

.hero-record-wave i:nth-child(2n) { height: 66%; animation-delay: -180ms; }
.hero-record-wave i:nth-child(3n) { height: 92%; animation-delay: -420ms; }
.hero-record-wave i:nth-child(4n) { height: 46%; animation-delay: -290ms; }

.hero-timer {
  font: 800 2.6rem/1 var(--mono);
  letter-spacing: -0.08em;
}

.hero-product-action {
  width: calc(100% - 1.4rem);
  min-height: 3.5rem;
  margin-top: auto;
  color: var(--ink);
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0 4px 0 #000;
  font: 850 0.82rem/1 var(--body);
  cursor: pointer;
}

.hero-event-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: grid;
  width: min(17rem, 43%);
  min-height: 7.2rem;
  padding: 1rem;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1.1rem;
  box-shadow: 0 0.55rem 0 rgba(18, 16, 11, 0.2);
  transform: rotate(-2deg);
}

.hero-bank .hero-event-card,
.hero-save .hero-event-card {
  right: auto;
  left: 1rem;
  transform: rotate(2deg);
}

.hero-event-card > span {
  color: var(--lime);
  font: 800 0.7rem/1 var(--mono);
}

.hero-event-card p {
  margin: 0;
  color: #c8bfb0;
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero-event-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.hero-library-phone {
  transform: translateX(-50%) rotate(-1.5deg);
}

.hero-library-phone .app-bar {
  padding-top: 0.25rem;
}

.hero-pad-grid {
  gap: 0.45rem;
}

.hero-pad-grid .sound-pad {
  min-height: 7.1rem;
  appearance: none;
  text-align: left;
}

.hero-pad-grid button.sound-pad {
  width: 100%;
  font: inherit;
  cursor: pointer;
}

.hero-demo[data-hero-phase="bank"] .hero-pad-grid .is-new {
  animation: hero-pad-arrive 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.new-pill {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.24rem 0.38rem;
  background: var(--ink);
  border-radius: 999px;
  color: var(--cream);
  font: 750 0.46rem/1 var(--mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-tap-hint {
  margin: 0.8rem 0 0;
  color: #bdb3a2;
  font: 700 0.62rem/1.3 var(--mono);
  text-align: center;
}

.hero-message-phone,
.hero-receiver-phone {
  padding: 0;
  background: #050505;
  transform: translateX(-50%) rotate(1deg);
}

.hero-message-phone .messages-top,
.hero-receiver-phone .messages-top {
  padding: 1.25rem 1rem 0.9rem;
  border-bottom: 1px solid #292929;
}

.hero-message-phone .messages-top div,
.hero-receiver-phone .messages-top div {
  text-align: center;
}

.hero-message-phone .messages-top small,
.hero-receiver-phone .messages-top small {
  display: block;
}

.hero-chat {
  display: flex;
  min-height: 16.5rem;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.hero-chat .incoming {
  max-width: 82%;
  margin-bottom: auto;
}

.hero-sent-chip {
  display: flex;
  width: 84%;
  min-height: 4rem;
  margin-left: auto;
  padding: 0.5rem 0.7rem;
  gap: 0.7rem;
  align-items: center;
  background: #0c3b3a;
  border: 1px solid #2e6966;
  border-radius: 1.3rem;
}

.hero-demo[data-hero-phase="send"] .hero-sent-chip {
  animation: hero-chip-send 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-chat > small {
  width: 100%;
  padding-top: 0.35rem;
  color: #8e8e93;
  font-size: 0.58rem;
  text-align: right;
}

.hero-drawer {
  min-height: 12rem;
  padding: 1rem;
  background: #1d1a23;
  border-top: 1px solid #35313d;
  border-radius: 1.5rem 1.5rem 0 0;
}

.hero-drawer > p {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.hero-drawer > p strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.hero-drawer > p span {
  color: #a6a0ae;
  font: 650 0.58rem/1 var(--mono);
}

.hero-drawer-pad {
  display: grid;
  width: 100%;
  min-height: 5.6rem;
  padding: 0.75rem;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0 4px 0 #000;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-drawer-pad > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  background: rgba(18, 16, 11, 0.14);
  border-radius: 50%;
  place-items: center;
}

.hero-drawer-pad small {
  font: 800 0.6rem/1 var(--mono);
  text-transform: uppercase;
}

.hero-receiver-phone {
  transform: translateX(-50%) rotate(-1deg);
}

.hero-received-card {
  padding: 2rem 1rem 1rem;
}

.hero-received-card > p {
  margin-bottom: 0.75rem;
  color: #a8a8ad;
  font-size: 0.7rem;
}

.hero-received-card .message-bubble {
  min-height: 4.5rem;
}

.hero-save-button {
  width: 100%;
  min-height: 3.3rem;
  margin-top: 0.75rem;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 0.9rem;
  font: 800 0.75rem/1 var(--body);
  cursor: pointer;
}

.hero-saved-toast {
  display: grid;
  margin: 1rem;
  padding: 1rem;
  gap: 0.3rem;
  color: var(--ink);
  background: var(--cyan);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0 4px 0 #000;
}

.hero-demo[data-hero-phase="save"] .hero-saved-toast {
  animation: hero-toast 560ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-saved-toast span {
  font: 850 1.1rem/1 var(--display);
}

.hero-saved-toast strong {
  font-size: 0.68rem;
}

.hero-demo-footer {
  min-height: 6.2rem;
  padding: 0.8rem 1rem;
  gap: 1rem;
  color: var(--ink);
  background: var(--cream);
  border-top: 2px solid var(--ink);
}

.hero-step-copy {
  display: grid;
  min-width: 10.5rem;
  gap: 0.2rem;
}

.hero-step-copy span {
  color: var(--muted);
  font: 750 0.58rem/1 var(--mono);
  letter-spacing: 0.05em;
}

.hero-step-copy strong {
  font-family: var(--display);
  font-size: 1rem;
}

.hero-stepper {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  list-style: none;
}

.hero-stepper button {
  display: grid;
  min-width: 3.5rem;
  min-height: 3.6rem;
  padding: 0.45rem;
  gap: 0.25rem;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  cursor: pointer;
}

.hero-stepper button span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 750 0.58rem/1 var(--mono);
  place-items: center;
}

.hero-stepper button em {
  font: 750 0.58rem/1 var(--mono);
  font-style: normal;
}

.hero-stepper button[aria-current="step"] {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--ink);
}

@keyframes hero-live-pulse {
  70% { box-shadow: 0 0 0 0.55rem rgba(255, 84, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 84, 67, 0); }
}

@keyframes hero-wave {
  to { transform: scaleY(0.35); }
}

@keyframes hero-pad-arrive {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.8) rotate(-4deg); }
}

@keyframes hero-chip-send {
  from { opacity: 0; transform: translate(2rem, 1rem) scale(0.82); }
}

@keyframes hero-toast {
  from { opacity: 0; transform: translateY(1.5rem); }
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-block: 2px solid var(--ink);
}

.ticker div {
  display: flex;
  width: max-content;
  padding-block: 1rem;
  gap: 1.3rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker b {
  color: #769e20;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(5rem, 10vw, 10rem) max(1rem, calc((100% - 86rem) / 2));
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.section-heading .kicker {
  align-self: start;
}

.section-heading h2,
.privacy-title-wrap h2,
.message-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.section-heading > p:last-child {
  grid-column: 2;
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.motion-demo {
  overflow: hidden;
  background: #eee5d7;
  border: 2px solid var(--ink);
  border-radius: 1.6rem;
  box-shadow: 0 6px 0 var(--ink);
}

.motion-demo-head {
  display: flex;
  min-height: 6.5rem;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
}

.motion-demo-head p {
  margin: 0;
}

.motion-eyebrow {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.motion-actions {
  display: flex;
  gap: 0.65rem;
}

.motion-control {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  box-shadow: 0 3px 0 var(--ink);
  font: 750 0.82rem/1 var(--body);
  cursor: pointer;
}

.motion-control:hover {
  box-shadow: 0 1px 0 var(--ink);
  transform: translateY(2px);
}

.motion-stage {
  position: relative;
  height: clamp(24rem, 45vw, 34rem);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  transition: background-color 280ms ease;
}

[data-phase="record"] .motion-stage { background: var(--coral); }
[data-phase="trim"] .motion-stage { background: var(--cyan); }
[data-phase="send"] .motion-stage { background: var(--violet); }
[data-phase="save"] .motion-stage { background: var(--lime); }

.motion-scene {
  position: absolute;
  inset: 0;
  display: grid;
  padding: clamp(1.4rem, 5vw, 4rem);
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transform: translateY(2rem) scale(0.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-phase="record"] .motion-record,
[data-phase="trim"] .motion-trim,
[data-phase="send"] .motion-send,
[data-phase="save"] .motion-save {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.record-card,
.trim-card,
.send-thread,
.save-card {
  width: min(100%, 39rem);
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 2rem;
  box-shadow: 0 0.8rem 0 rgba(18, 16, 11, 0.2);
}

.record-card {
  position: relative;
  display: grid;
  min-height: 17rem;
  padding: 2.2rem;
  align-content: center;
  justify-items: center;
}

.record-card p,
.trim-card p,
.save-card p {
  margin-bottom: 1.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-card strong {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: 0.8rem;
}

.record-light {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 1rem;
  height: 1rem;
  background: var(--coral);
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.motion-wave,
.trim-wave {
  display: flex;
  width: min(100%, 29rem);
  height: 5.8rem;
  gap: clamp(0.3rem, 1vw, 0.75rem);
  align-items: center;
  justify-content: center;
}

.motion-wave i,
.trim-wave i {
  width: clamp(0.3rem, 0.8vw, 0.55rem);
  height: 22%;
  background: var(--coral);
  border-radius: 999px;
}

[data-phase="record"] .record-light {
  animation: record-pulse 900ms ease-in-out infinite alternate;
}

[data-phase="record"] .motion-wave i {
  animation: wave-bounce 740ms ease-in-out infinite alternate;
}

.motion-wave i:nth-child(2n) { height: 62%; animation-delay: -420ms; }
.motion-wave i:nth-child(3n) { height: 92%; animation-delay: -180ms; }
.motion-wave i:nth-child(4n) { height: 45%; animation-delay: -570ms; }

.trim-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--ink);
  background: var(--cream);
}

.trim-card strong {
  display: block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-align: right;
}

.trim-track {
  position: relative;
  display: flex;
  min-height: 8rem;
  padding-inline: 2rem;
  align-items: center;
  overflow: hidden;
  background: var(--cyan);
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
}

.trim-wave {
  height: 6rem;
  justify-content: space-between;
}

.trim-wave i {
  width: 0.38rem;
  height: 38%;
  background: var(--ink);
  animation: none;
}

.trim-wave i:nth-child(2n) { height: 74%; }
.trim-wave i:nth-child(3n) { height: 95%; }

.trim-handle {
  position: absolute;
  z-index: 2;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 0.85rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
}

.trim-handle.left { left: 8%; }
.trim-handle.right { right: 8%; }
[data-phase="trim"] .trim-handle.left { animation: trim-left 1.1s ease both; }
[data-phase="trim"] .trim-handle.right { animation: trim-right 1.1s ease both; }

.send-thread {
  display: grid;
  min-height: 20rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  align-content: center;
  background: #201b14;
}

.send-thread > p {
  width: fit-content;
  max-width: 75%;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: #dfd8cd;
  border-radius: 1rem 1rem 1rem 0.2rem;
  font-size: 0.92rem;
}

.motion-chip {
  display: flex;
  width: 78%;
  min-height: 4.6rem;
  margin-left: auto;
  padding: 0.7rem 1rem;
  gap: 0.8rem;
  align-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 1.3rem 1.3rem 0.2rem 1.3rem;
  box-shadow: 0 4px 0 #000;
}

.send-thread small {
  margin-top: 0.55rem;
  color: #bdb3a2;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: right;
}

[data-phase="send"] .motion-chip {
  animation: chip-send 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.save-card {
  position: relative;
  display: grid;
  min-height: 20rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--ink);
  background: #201b14;
  place-items: center;
}

.saved-pad {
  position: relative;
  display: flex;
  width: min(17rem, 75%);
  min-height: 12rem;
  padding: 1.2rem;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cyan);
  border: 3px solid var(--ink);
  border-radius: 1.4rem;
  box-shadow: 0 6px 0 #000;
}

.saved-pad > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.65rem;
  place-items: center;
}

.saved-pad b {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.saved-pad small {
  font-family: var(--mono);
}

.save-card p {
  margin: 1.6rem 0 0;
  color: var(--cream);
}

.save-check {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

[data-phase="save"] .saved-pad {
  animation: pad-save 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.motion-steps li + li {
  border-left: 1px solid var(--line);
}

.motion-steps button {
  display: grid;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.9rem 1rem;
  gap: 0.15rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 4px solid transparent;
  text-align: left;
  cursor: pointer;
}

.motion-steps button span {
  font-family: var(--mono);
  font-size: 0.65rem;
}

.motion-steps button strong {
  font-family: var(--display);
  font-size: 1rem;
}

.motion-steps button[aria-current="step"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--lime) 35%, transparent);
  border-color: var(--ink);
}

.motion-description {
  max-width: none;
  min-height: 4.8rem;
  margin: 0;
  padding: 1.25rem 1.5rem 0.65rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.motion-share-status {
  min-height: 2.3rem;
  margin: 0;
  padding: 0.25rem 1.5rem 0.8rem;
  color: #526620;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

@keyframes record-pulse {
  to { transform: scale(0.65); opacity: 0.55; }
}

@keyframes wave-bounce {
  to { transform: scaleY(0.42); }
}

@keyframes trim-left {
  from { left: 1.5%; }
  to { left: 8%; }
}

@keyframes trim-right {
  from { right: 1.5%; }
  to { right: 8%; }
}

@keyframes chip-send {
  from { opacity: 0; transform: translate(3rem, 1.5rem) scale(0.9); }
}

@keyframes pad-save {
  from { opacity: 0; transform: translateY(-2rem) rotate(-4deg) scale(0.86); }
}

.message-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: var(--cream);
  background: var(--ink);
}

.message-copy {
  align-self: center;
}

.message-copy h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
}

.message-copy > p:not(.kicker) {
  max-width: 35rem;
  color: #bdb3a2;
  font-size: 1.15rem;
}

.check-list {
  display: grid;
  margin: 2.5rem 0 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  color: #d6cbbb;
}

.check-list span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.messages-demo {
  max-width: 40rem;
  overflow: hidden;
  color: #f6f6f7;
  background: #0c0c0f;
  border: 2px solid #433d32;
  border-radius: 2.2rem;
  box-shadow: 0 1rem 0 #090805;
}

.messages-top {
  min-height: 5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(20, 20, 24, 0.9);
  border-bottom: 1px solid #28282e;
}

.messages-top > span {
  color: #0b84fe;
  font-size: 1.5rem;
}

.messages-top div {
  display: grid;
  text-align: center;
}

.messages-top small {
  color: #8e8e93;
}

.chat {
  display: flex;
  min-height: 24rem;
  padding: 2rem 1.2rem 1rem;
  flex-direction: column;
}

.incoming {
  width: fit-content;
  max-width: 74%;
  margin-bottom: 0.35rem;
  padding: 0.6rem 0.85rem;
  background: #26262b;
  border-radius: 1.1rem 1.1rem 1.1rem 0.3rem;
}

.outgoing-chip {
  width: 64%;
  margin-top: 1.1rem;
  align-self: end;
  background: #0b84fe;
  border-color: #0b84fe;
}

.delivered {
  margin-top: 0.25rem;
  color: #8e8e93;
  align-self: end;
}

.drawer {
  padding: 1rem;
  background: #141418;
  border-top: 1px solid #34343a;
}

.drawer-title {
  margin-bottom: 0.8rem;
  gap: 0.5rem;
}

.drawer-title img {
  border-radius: 25%;
}

.drawer-title strong {
  margin-right: auto;
  font-family: var(--display);
  font-size: 1.2rem;
}

.drawer-title span {
  padding: 0.35rem 0.75rem;
  color: #8e8e93;
  background: #202027;
  border-radius: 999px;
  font-size: 0.7rem;
}

.drawer-tabs {
  margin-bottom: 0.8rem;
  justify-content: flex-start;
  gap: 0.4rem;
  color: #aaaab1;
  font-size: 0.67rem;
}

.drawer-tabs span {
  padding: 0.35rem 0.65rem;
  border: 1px solid #35353b;
  border-radius: 999px;
}

.drawer-tabs .active {
  color: var(--ink);
  background: var(--cyan);
}

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

.drawer-pads b {
  display: flex;
  min-height: 5rem;
  padding: 0.5rem;
  align-items: end;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0.8rem;
  font-size: 0.64rem;
}

.privacy-section {
  background: var(--cream-deep);
}

.privacy-title-wrap {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.privacy-title-wrap h2 {
  max-width: 11ch;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.privacy-grid article {
  min-height: 20rem;
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--line);
}

.privacy-grid article:last-child {
  border-right: 0;
}

.privacy-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 4.5rem;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  place-items: center;
}

.privacy-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.plans-section {
  color: var(--cream);
  background: var(--ink);
}

.section-heading.centered {
  display: block;
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading.centered h2 {
  margin-bottom: 1.5rem;
}

.section-heading.centered > p:last-child {
  max-width: 43rem;
  margin-inline: auto;
  color: #bdb3a2;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 38rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  flex-direction: column;
  color: var(--ink);
  border: 2px solid var(--cream);
  border-radius: 1.7rem;
}

.free-card { background: var(--cream); }
.plus-card { background: var(--cyan); }

.plan-ribbon {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  padding: 0.4rem 0.65rem;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-name {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: end;
  justify-content: space-between;
}

.plan-name span {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.plan-name strong {
  max-width: 9rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-align: right;
  text-transform: uppercase;
}

.plan-card > p:not(.plan-ribbon) {
  max-width: 29rem;
  color: #544d41;
}

.plan-card ul {
  display: grid;
  margin: 1.5rem 0 2.5rem;
  padding: 0;
  gap: 0;
  list-style: none;
}

.plan-card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(18, 16, 11, 0.2);
  font-weight: 650;
}

.plan-card li::before {
  margin-right: 0.65rem;
  content: "✓";
  font-weight: 900;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-card small {
  margin-top: 1rem;
  color: #4f5542;
  font-size: 0.72rem;
  text-align: center;
}

.plan-promises {
  display: flex;
  margin: 1.2rem 0 0;
  padding: 0;
  gap: 0.8rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
  color: #bdb3a2;
  font-family: var(--mono);
  font-size: 0.7rem;
  list-style: none;
}

.plan-promises li::before {
  margin-right: 0.45rem;
  color: var(--lime);
  content: "•";
}

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

.faq-heading {
  position: sticky;
  top: 8rem;
  height: fit-content;
}

.faq-heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 5.5rem;
  padding: 1.3rem 3rem 1.3rem 0;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-list summary::after {
  margin-left: auto;
  content: "+";
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 3rem 1.7rem 0;
  color: var(--muted);
}

.resources-section {
  color: var(--ink);
  background: var(--cyan);
  border-block: 2px solid var(--ink);
}

.resources-heading {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.resources-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.resources-heading > p:last-child {
  grid-column: 2;
  max-width: 38rem;
  margin: 0;
  color: #294c4a;
  font-size: 1.1rem;
}

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

.resource-grid > a {
  display: flex;
  min-height: 24rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 1.4rem;
  box-shadow: 0 5px 0 var(--ink);
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.resource-grid > a:hover {
  box-shadow: 0 2px 0 var(--ink);
  transform: translateY(3px);
}

.resource-number {
  margin-bottom: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.resource-grid h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  letter-spacing: -0.055em;
}

.resource-grid p {
  margin-bottom: 2rem;
  color: var(--muted);
}

.resource-grid strong {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-grid strong span {
  transition: transform 150ms ease;
}

.resource-grid > a:hover strong span {
  transform: translate(2px, -2px);
}

.final-cta {
  display: flex;
  min-height: 48rem;
  padding: clamp(5rem, 10vw, 9rem) 1rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}

.final-cta img {
  margin-bottom: 2rem;
  border: 3px solid var(--cream);
  border-radius: 24%;
  box-shadow: 0 8px 0 #000;
}

.final-cta h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.final-cta > p:not(.kicker) {
  margin-bottom: 2rem;
  color: #bdb3a2;
  font-size: 1.1rem;
}

.final-store-button {
  min-width: min(100%, 18rem);
}

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

.bit-footer {
  display: grid;
  padding: 4rem max(1rem, calc((100% - 86rem) / 2));
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  background: var(--lime);
  border-top: 2px solid var(--ink);
}

.footer-brand .bit-wordmark {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 30rem;
  margin: 0;
}

.footer-brand p a {
  font-weight: 700;
}

.bit-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  align-content: start;
}

.copyright {
  grid-column: 1 / -1;
  max-width: 62rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  color: #526620;
  border-top: 1px solid rgba(18, 16, 11, 0.25);
  font-size: 0.72rem;
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6.2rem);
  }

  .privacy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-grid article:nth-child(2) {
    border-right: 0;
  }

  .privacy-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 54rem) {
  html {
    scroll-padding-top: 5rem;
  }

  .bit-wordmark,
  .hero-actions .text-link,
  .text-link.strong,
  .bit-footer nav a {
    min-height: 44px;
  }

  .hero-actions .text-link,
  .text-link.strong,
  .bit-footer nav a {
    display: flex;
    align-items: center;
  }

  .bit-header {
    min-height: 4.6rem;
    grid-template-columns: auto 1fr;
  }

  .bit-nav {
    display: none;
  }

  .bit-header .button {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 45rem;
  }

  .hero-preview {
    min-height: 43rem;
  }

  .hero-demo {
    width: min(100%, 48rem);
    margin-inline: auto;
  }

  .phone {
    right: 7%;
  }

  .message-card {
    right: 43%;
  }

  .section-heading,
  .privacy-title-wrap,
  .message-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid > a {
    min-height: 18rem;
  }

  .motion-stage {
    height: 29rem;
  }

  .message-copy {
    max-width: 44rem;
  }

  .messages-demo {
    width: min(100%, 42rem);
    margin-inline: auto;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 34rem;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 38rem) {
  :root {
    --page: min(100% - 1.25rem, 86rem);
  }

  .bit-header {
    padding-inline: 0.65rem;
  }

  .bit-wordmark img {
    width: 36px;
    height: 36px;
  }

  .bit-wordmark span {
    font-size: 1.35rem;
  }

  .button-small {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    box-shadow: 0 3px 0 #000;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .app-store-badge,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-list {
    display: grid;
  }

  .hero-preview {
    min-height: 39rem;
  }

  .hero-demo {
    border-radius: 1.45rem;
    box-shadow: 0 0.65rem 0 rgba(18, 16, 11, 0.18);
  }

  .hero-demo-stage {
    min-height: 32rem;
  }

  .demo-phone {
    top: 0.9rem;
    width: min(17rem, 78%);
    min-height: 27.5rem;
    padding: 0.8rem;
    border-radius: 2.25rem;
  }

  .hero-record-wave {
    height: 6rem;
    margin-top: 2.8rem;
  }

  .hero-timer {
    font-size: 2rem;
  }

  .hero-event-card {
    right: 0.6rem;
    bottom: 0.65rem;
    width: min(13rem, 52%);
    min-height: 6rem;
    padding: 0.75rem;
  }

  .hero-bank .hero-event-card,
  .hero-save .hero-event-card {
    left: 0.6rem;
  }

  .hero-event-card p {
    font-size: 0.65rem;
  }

  .hero-event-card strong {
    font-size: 0.78rem;
  }

  .hero-pad-grid .sound-pad {
    min-height: 5.55rem;
    padding: 0.55rem;
  }

  .hero-pad-grid .sound-pad .play {
    top: 0.45rem;
    right: 0.45rem;
    width: 1.45rem;
    height: 1.45rem;
  }

  .hero-pad-grid .sound-pad .wave {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }

  .new-pill {
    top: 0.4rem;
    left: 0.4rem;
  }

  .hero-chat {
    min-height: 13.2rem;
  }

  .hero-drawer {
    min-height: 9.6rem;
  }

  .hero-received-card {
    padding-top: 1.25rem;
  }

  .hero-demo-footer {
    display: grid;
    min-height: 9rem;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-step-copy {
    min-width: 0;
  }

  .hero-stepper {
    width: 100%;
  }

  .hero-stepper button {
    width: 100%;
    min-width: 0;
    min-height: 3.25rem;
  }

  .phone {
    top: 0.75rem;
    right: 7%;
    width: min(19rem, 86%);
    min-width: 0;
    padding: 0.8rem;
    border-radius: 2.5rem;
  }

  .sound-pad {
    min-height: 6.9rem;
  }

  .message-card {
    right: auto;
    bottom: 0.6rem;
    left: 6%;
    width: min(14.5rem, 72%);
  }

  .message-card > p:last-child {
    display: none;
  }

  .ticker div {
    font-size: 0.68rem;
  }

  .section {
    padding-inline: 0.8rem;
  }

  .section-heading h2,
  .privacy-title-wrap h2,
  .final-cta h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .motion-demo-head {
    padding: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .motion-demo,
  .messages-demo {
    width: min(92%, 22rem);
    margin-inline: auto;
  }

  .motion-actions {
    width: 100%;
  }

  .motion-control {
    flex: 1;
  }

  .motion-stage {
    height: 24rem;
  }

  .motion-scene {
    padding: 0.8rem;
  }

  .record-card,
  .trim-card,
  .send-thread,
  .save-card {
    border-radius: 1.4rem;
  }

  .record-card {
    min-height: 15rem;
    padding: 1.3rem;
  }

  .send-thread,
  .save-card {
    min-height: 18rem;
  }

  .trim-card {
    padding: 1rem;
  }

  .trim-track {
    min-height: 7rem;
    padding-inline: 1rem;
  }

  .motion-chip {
    width: 88%;
  }

  .motion-steps button {
    min-height: 4.7rem;
    padding: 0.75rem 0.45rem;
  }

  .motion-description {
    min-height: 7.2rem;
    padding-inline: 1rem;
    font-size: 0.95rem;
  }

  .motion-share-status {
    padding-inline: 1rem;
  }

  .message-section {
    padding-inline: 0.65rem;
  }

  .message-copy {
    padding-inline: 0.2rem;
  }

  .messages-demo {
    border-radius: 1.6rem;
  }

  .chat {
    min-height: 20rem;
  }

  .outgoing-chip {
    width: 75%;
  }

  .drawer-pads {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy-icon {
    margin-bottom: 2.5rem;
  }

  .plan-card {
    padding: 1.35rem;
  }

  .plan-ribbon {
    position: static;
    width: fit-content;
    margin-bottom: 1.5rem;
  }

  .plan-name {
    display: grid;
    gap: 1rem;
  }

  .plan-name strong {
    max-width: none;
    text-align: left;
  }

  .faq-list summary {
    padding-right: 0.3rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .bit-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: 1;
  }
}

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

  .ticker div {
    animation: none;
  }

  [data-phase="record"] .record-light,
  [data-phase="record"] .motion-wave i,
  [data-phase="trim"] .trim-handle,
  [data-phase="send"] .motion-chip,
  [data-phase="save"] .saved-pad {
    animation: none;
  }

  .live-dot,
  .hero-record-wave i,
  .hero-pad-grid .is-new,
  .hero-sent-chip,
  .hero-saved-toast {
    animation: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #4a443a;
    --line: rgba(18, 16, 11, 0.45);
  }

  .message-copy > p:not(.kicker),
  .section-heading.centered > p:last-child,
  .plan-promises {
    color: #e7dfd2;
  }
}
