:root {
  --ink: #1b2330;
  --ink-soft: rgba(27, 35, 48, 0.72);
  --muted: rgba(27, 35, 48, 0.6);
  --surface: #ffffff;
  --surface-alt: #f3f6ff;
  --surface-glow: #eef7ff;
  --accent: #21c1d6;
  --accent-soft: rgba(33, 193, 214, 0.14);
  --accent-purple: #7e7bdf;
  --accent-coral: #f67656;
  --shadow-soft: 0 18px 48px rgba(44, 82, 130, 0.12);
  --container-max: 1080px;
  --container-gutter: clamp(20px, 4vw, 56px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: inherit;
  color: var(--ink);
  background: linear-gradient(160deg, rgba(124, 141, 255, 0.14), rgba(255, 255, 255, 0)) no-repeat,
              linear-gradient(45deg, rgba(33, 193, 214, 0.14), rgba(255, 255, 255, 0)) no-repeat,
              #ffffff;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(124, 141, 255, 0.4);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--container-gutter) * 2);
  margin: 0 auto;
  padding-inline: var(--container-gutter);
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 20px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  z-index: 999;
}


.site-header {
  --header-padding: 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(33, 193, 214, 0.16);
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 36px);
  padding-block: var(--header-padding);
  transition: padding-block 0.28s ease;
}

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  transition: gap 0.28s ease;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 193, 214, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(33, 193, 214, 0.18);
  transition: transform 0.28s ease;
  transform-origin: center;
}

.brand svg {
  width: 28px;
  height: 28px;
  transition: transform 0.28s ease;
  transform-origin: center;
}

.brand-word {
  transition: transform 0.28s ease;
}

.site-header.is-condensed {
  --header-padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(33, 193, 214, 0.24);
  box-shadow: 0 12px 28px rgba(44, 82, 130, 0.12);
}

.site-header.is-condensed .brand {
  gap: 10px;
}

.site-header.is-condensed .brand-mark {
  transform: scale(0.82);
}

.site-header.is-condensed .brand svg {
  transform: scale(0.9);
}

.site-header.is-condensed .brand-word {
  transform: translateY(-1px) scale(0.95);
}

.header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(124, 141, 255, 0.32);
  background: rgba(124, 141, 255, 0.14);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
  background: rgba(124, 141, 255, 0.2);
  border-color: rgba(124, 141, 255, 0.48);
  transform: translateY(-1px);
}

.header-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 15px;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 16px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--ink);
  background: rgba(124, 141, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(124, 141, 255, 0.24);
}

.nav-cta a {
  color: #ffffff;
  background-image: linear-gradient(135deg, var(--accent), #5fc9ff 60%, var(--accent-purple));
  box-shadow: 0 18px 36px rgba(45, 165, 189, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.25s ease;
  background-size: 140% auto;
  padding-inline: clamp(20px, 4vw, 28px);
  font-weight: 700;
}

.nav-cta a:hover,
.nav-cta a:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(45, 165, 189, 0.36);
  background-position: right center;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: stretch;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer[data-open="true"] {
  pointer-events: auto;
  opacity: 1;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 35, 0.4);
}

.mobile-drawer__panel {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(233, 238, 255, 0.96));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 10vw, 64px) clamp(24px, 9vw, 56px);
  box-shadow: 0 24px 48px rgba(44, 82, 130, 0.2);
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform: translateY(-24px);
  overflow-y: auto;
}

.mobile-drawer[data-open="true"] .mobile-drawer__panel {
  transform: translateY(0);
}

.mobile-drawer__inner {
  width: 100%;
  display: grid;
  gap: clamp(28px, 8vw, 48px);
}

.mobile-drawer__close {
  justify-self: end;
  border: 1px solid rgba(124, 141, 255, 0.32);
  border-radius: 999px;
  background: rgba(124, 141, 255, 0.14);
  color: var(--ink);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-drawer__close:hover,
.mobile-drawer__close:focus-visible {
  background: rgba(124, 141, 255, 0.2);
  border-color: rgba(124, 141, 255, 0.48);
  transform: translateY(-1px);
}

.mobile-drawer__close svg {
  width: 22px;
  height: 22px;
}

.mobile-drawer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(20px, 6vw, 32px);
}

.mobile-drawer__nav a {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
}

.mobile-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 18px) clamp(28px, 10vw, 36px);
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background-image: linear-gradient(135deg, var(--accent), #5fc9ff 60%, var(--accent-purple));
  box-shadow: 0 24px 48px rgba(45, 165, 189, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-drawer__cta:hover,
.mobile-drawer__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 30px 56px rgba(45, 165, 189, 0.36);
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .primary-nav {
    flex: 0 1 auto;
  }

  .nav-list {
    gap: 12px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-cta {
    display: none;
  }

  .site-header.is-condensed .primary-nav {
    display: none;
  }

  .site-header.is-condensed .header-menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 769px) {
  .mobile-drawer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .header-bar,
  .brand,
  .brand-mark,
  .brand svg,
  .brand-word,
  .header-menu-toggle,
  .mobile-drawer,
  .mobile-drawer__panel,
  .mobile-drawer__overlay,
  .mobile-drawer__close,
  .mobile-drawer__cta {
    transition: none !important;
  }
}

main section {
  position: relative;
  padding-block: clamp(72px, 12vw, 132px);
  overflow: hidden;
}

.hero {
  background: linear-gradient(120deg, rgba(33, 193, 214, 0.16), rgba(124, 141, 255, 0.12)), #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -14%;
  width: clamp(280px, 38vw, 460px);
  height: clamp(280px, 38vw, 460px);
  background: radial-gradient(circle at 30% 30%, rgba(33, 193, 214, 0.35), rgba(124, 141, 255, 0));
  filter: blur(0.5px);
  opacity: 0.7;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  /*gap: clamp(48px, 8vw, 96px);*/
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin: 20px 0 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.audience-pill {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(124, 141, 255, 0.12);
  color: #4f5a9f;
  font-size: clamp(10px, calc(0.48rem + 0.4vw), 13px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  white-space: nowrap;
}

.audience-pill__token {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.waitlist-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.hero .waitlist-form {
  max-width: 480px;
}

.waitlist-form .form-field {
  position: relative;
  width: 100%;
}

.waitlist-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(33, 193, 214, 0.32);
  padding: 12px 20px;
  min-height: 48px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(33, 193, 214, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input::placeholder {
  color: rgba(27, 35, 48, 0.45);
}

.waitlist-form button {
  border: none;
  border-radius: 999px;
  padding: 0 clamp(24px, 6vw, 36px);
  min-height: 48px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-image: linear-gradient(135deg, var(--accent), #5fc9ff 60%, var(--accent-purple));
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(45, 165, 189, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(45, 165, 189, 0.3);
}


.waitlist-form .form-error {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: #d6455d;
  min-height: 18px;
  transition: color 0.2s ease;
}

.waitlist-form .form-error[data-variant="success"] {
  color: #14805c;
}

.waitlist-form .form-error[data-variant="info"],
.waitlist-form .form-error[data-variant=""] {
  color: var(--muted);
}

.waitlist-form.has-error input {
  border-color: rgba(214, 69, 93, 0.8);
  box-shadow: 0 0 0 3px rgba(214, 69, 93, 0.12);
}

.hero-footnote {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(27, 35, 48, 0.6);
  letter-spacing: 0.02em;
  max-width: 48ch;
}

.hero-art {
  position: relative;
  width: min(520px, 100%);
  margin-inline: auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: clamp(12px, 2.6vw, 20px);
  isolation: isolate;
}

.hero-portrait {
  position: relative;
  width: min(420px, 100%);
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(12, 24, 48, 0.38);
  background: linear-gradient(135deg, rgba(33, 193, 214, 0.12), rgba(124, 141, 255, 0.14));
  aspect-ratio: 3 / 4;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art::before {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 12%;
  width: clamp(180px, 32vw, 280px);
  height: clamp(180px, 32vw, 280px);
  background: radial-gradient(circle, rgba(33, 193, 214, 0.28), rgba(33, 193, 214, 0));
  filter: blur(60px);
  z-index: 0;
}

.hero-wave {
  position: absolute;
  top: 12%;
  right: -6%;
  width: clamp(160px, 38vw, 240px);
  filter: drop-shadow(0 10px 24px rgba(33, 193, 214, 0.24));
  z-index: 1;
}

.section-intro {
  max-width: 640px;
  margin-bottom: clamp(32px, 7vw, 64px);
}

.section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 42px);
}

.section-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.section-layout {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
}

.section-layout .section-intro {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 5vw, 40px);
  grid-auto-rows: 1fr;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 141, 255, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: auto -26% -32% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(124, 141, 255, 0.28), rgba(124, 141, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(27, 35, 48, 0.14);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
  transform: translate3d(-10px, -6px, 0);
}

.icon-medallion {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.icon-medallion svg {
  width: 34px;
  height: 34px;
}

.icon--reverse {
  background: linear-gradient(135deg, rgba(80, 209, 230, 0.18), rgba(207, 233, 255, 0.4));
}

.icon--silence {
  background: linear-gradient(135deg, rgba(124, 141, 255, 0.18), rgba(214, 209, 255, 0.45));
}

.icon--signals {
  background: linear-gradient(135deg, rgba(255, 188, 164, 0.3), rgba(255, 209, 196, 0.4));
}

.use-cases {
  background: var(--surface-alt);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 5vw, 40px);
  grid-auto-rows: 1fr;
}

.case-card {
  background: #fff;
  padding: clamp(28px, 5vw, 36px);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 141, 255, 0.16);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card h3 {
  margin: 0;
  font-size: 20px;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.how {
  background: var(--surface);
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 5vw, 36px);
}

.case-card::before {
  content: '';
  position: absolute;
  inset: auto -28% -36% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(246, 118, 86, 0.18), rgba(246, 118, 86, 0));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(27, 35, 48, 0.12);
}

.case-card:hover::before,
.case-card:focus-within::before {
  opacity: 1;
  transform: translate3d(-12px, -6px, 0);
}

.how-steps li {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(33, 193, 214, 0.12), rgba(124, 141, 255, 0.16));
  border: 1px solid rgba(124, 141, 255, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  box-shadow: 0 12px 24px rgba(33, 193, 214, 0.18);
  border: 2px solid rgba(33, 193, 214, 0.2);
  font-size: 18px;
}

.how-steps h3 {
  margin: 0;
  font-size: 20px;
}

.how-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.how-steps li:hover,
.how-steps li:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(27, 35, 48, 0.12);
}

.cta {
  background: #ffffff;
  padding-bottom: clamp(96px, 14vw, 148px);
}

.cta-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(40px, 6vw, 56px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(214, 236, 255, 0.92), rgba(231, 224, 255, 0.9));
  border: 1px solid rgba(124, 141, 255, 0.22);
  box-shadow: var(--shadow-soft);
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: auto -18% -36% auto;
  width: clamp(220px, 32vw, 320px);
  height: clamp(220px, 32vw, 320px);
  background: radial-gradient(circle at center, rgba(33, 193, 214, 0.2), rgba(33, 193, 214, 0));
  opacity: 0.7;
  pointer-events: none;
}

.cta-panel::after {
  content: '';
  position: absolute;
  inset: -18% auto auto -22%;
  width: clamp(260px, 36vw, 360px);
  height: clamp(260px, 36vw, 360px);
  background: radial-gradient(circle at center, rgba(124, 141, 255, 0.22), rgba(124, 141, 255, 0));
  opacity: 0.6;
  pointer-events: none;
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 40px);
}

.cta-copy {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cta-note {
  font-size: 15px;
  color: rgba(27, 35, 48, 0.58);
}

.cta-panel form {
  position: relative;
  z-index: 1;
}

.site-footer {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(124, 141, 255, 0.16);
  padding-block: 32px 48px;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}

.footer-bar p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.footer-links a {
  color: rgba(27, 35, 48, 0.7);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: rgba(33, 193, 214, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(48px, 10vw, 120px);
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave path {
  fill: var(--wave-color, #ffffff);
}

.wave-top {
  top: -1px;
  transform: scaleY(-1);
  transform-origin: center;
}

.wave-bottom {
  bottom: -1px;
}

.wave-white {
  --wave-color: #ffffff;
}

.wave-soft {
  --wave-color: var(--surface-alt);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: 2;
    margin-inline: auto;
    margin-top: clamp(24px, 6vw, 48px);
    width: min(70%, 380px);
  }

  .hero::before {
    top: -28%;
    right: -32%;
    width: clamp(240px, 60vw, 380px);
    height: clamp(240px, 60vw, 380px);
  }

  .hero-copy {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .header-bar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-list {
    font-size: 14px;
    gap: 16px;
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-cta {
    flex-basis: 100%;
  }

  .nav-cta a {
    width: 100%;
    justify-content: center;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form button {
    width: 100%;
  }

  .hero-art {
    width: min(70%, 320px);
  }

  .feature-card,
  .case-card,
  .how-steps li {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .header-bar {
    gap: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-art {
    width: 75%;
  }

  main section {
    padding-block: clamp(64px, 18vw, 96px);
  }

  .footer-links {
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .section-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .section-layout .section-intro {
    position: sticky;
    top: clamp(88px, 12vw, 140px);
    margin-bottom: 0;
  }

  .section-layout .section-intro p {
    max-width: 48ch;
  }
}

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