/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  background: rgb(16, 30, 56)
}

body {
  margin: 0;
  font-family: "Kumbh Sans", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  background: rgb(16, 30, 56);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip
}

main {
  background: var(--bg)
}

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

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

button,
input,
textarea {
  font: inherit
}

/* ─── Tokens ─── */
:root {
  --bg: #F4F6FA;
  --bg-alt: #EAEFF6;
  --panel: #FFFFFF;
  --panel-soft: #F0F3F9;
  --ink: #1A1D24;
  --ink-soft: rgba(26, 29, 36, .68);
  --ink-faint: rgba(26, 29, 36, .44);
  --accent: #2C5AE9;
  --accent-hover: #1D47C7;
  --accent-light: rgba(44, 90, 233, .08);
  --accent-ring: rgba(44, 90, 233, .22);
  --warm: #D4874D;
  --warm-light: rgba(212, 135, 77, .12);
  --line: rgba(26, 29, 36, .08);
  --line-strong: rgba(26, 29, 36, .14);
  --shadow: 0 20px 48px rgba(20, 30, 60, .06), 0 6px 18px rgba(20, 30, 60, .04);
  --shadow-lg: 0 32px 64px rgba(20, 30, 60, .08), 0 12px 28px rgba(20, 30, 60, .05);
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1160px;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto
}

h1,
h2,
h3,
p {
  margin: 0
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(26, 47, 84, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease)
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0
}

.brand {
  display: inline-flex;
  align-items: center
}

.brand-logo {
  width: min(300px, 25vw);
  min-width: 168px;
  height: auto;
  filter: invert(1)
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, .7)
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease)
}

.main-nav a:hover {
  transform: translateY(-2px)
}

.main-nav a:not(.nav-cta) {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: transparent
}

.main-nav a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4)
}

.nav-cta {
  background: #fff;
  color: rgb(26, 47, 84);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18)
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease)
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(44, 90, 233, .18)
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 32px rgba(44, 90, 233, .24)
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong)
}

.btn-secondary:hover {
  background: rgba(44, 90, 233, .05);
  border-color: var(--accent)
}

.btn-full {
  width: 100%
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(44, 90, 233, .09), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(44, 90, 233, .05), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%)
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent)
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.1fr);
  gap: 52px;
  align-items: center
}

.hero-copy,
.audio-card,
.demo-copy,
.demo-form,
.testimonial-grid>*,
.footer-brand,
.footer-contact {
  min-width: 0
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent)
}

.hero-copy h1 {
  margin-top: 20px;
  max-width: 580px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1
}

.hero-subhead {
  max-width: 520px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft)
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}

.hero-notes span {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: .02em
}

/* ─── Audio Card (Hero) ─── */
.audio-card-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.audio-card-eyebrow svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.audio-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg)
}

.audio-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 6px;
  border-radius: 20px;
}

.audio-tab {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease)
}

.audio-tab.active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(20, 30, 60, .08);
}

.player-shell {
  margin-top: 18px;
  padding: 22px;
  border-radius: 20px;
  background: var(--panel-soft);
  border: 1px solid var(--line)
}

.player-row {
  display: flex;
  align-items: center;
  gap: 16px
}

.play-btn {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: #5C7A9E;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(92, 122, 158, .25);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease)
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(92, 122, 158, .32)
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 2px
}

.play-btn.playing svg {
  margin-left: 0
}

.waveform {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 68px;
  cursor: pointer
}

.waveform-bar {
  width: 5px;
  border-radius: 999px;
  background: rgba(26, 29, 36, .1);
  transition: background .18s var(--ease)
}

.waveform-bar.active {
  background: var(--accent)
}

.player-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0
}

.time-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em
}

.time-divider {
  width: 16px;
  height: 1px;
  background: var(--line-strong);
  border-radius: 1px
}

.time-total {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .01em
}

/* ─── Capabilities Strip ─── */
.capabilities {
  padding: 0;
  margin-top: -42px;
  position: relative;
  z-index: 5
}

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

.capability-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease)
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.capability-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center
}

.capability-icon svg {
  width: 24px;
  height: 24px
}

.capability-icon.icon-reschedule {
  background: rgba(44, 90, 233, .1);
  color: var(--accent)
}

.capability-icon.icon-new-patient {
  background: var(--warm-light);
  color: var(--warm)
}

.capability-icon.icon-after-hours {
  background: rgba(30, 30, 32, .06);
  color: var(--ink)
}

.capability-card h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.15
}

.capability-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft)
}

/* ─── Section Utilities ─── */
.section-label {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent)
}

.section-label.warm {
  color: var(--warm)
}

/* ─── How It Works ─── */
.how-section {
  padding: 96px 0
}

.how-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.how-heading h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05
}

.how-heading p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px
}

.how-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.how-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800
}

.how-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.12
}

.how-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft)
}

/* ─── Testimonial ─── */
.testimonial-section {
  padding: 88px 0;
  background: var(--bg-alt)
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center
}

.testimonial-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #DDE3EE
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.testimonial-section .section-label {
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.quote-mark {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  font-weight: 700
}

.testimonial-text {
  margin-top: 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -.02em
}

.testimonial-attribution {
  margin-top: 24px
}

.testimonial-attribution strong {
  display: block;
  font-size: 16px
}

.testimonial-attribution span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-soft)
}

.testimonial-logo {
  height: 36px;
  width: auto;
  margin-top: 16px;
  mix-blend-mode: multiply
}

/* ─── Demo / Try It Now ─── */
.demo-section {
  padding: 96px 0
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 48px;
  align-items: start
}

.demo-copy h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05
}

.demo-copy p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft)
}

.demo-copy .section-label {
    margin-top: 0;
}

.demo-detail {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft)
}

.demo-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(44, 90, 233, .04);
  border: 1px solid var(--accent-ring)
}

.demo-promise svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0
}

.demo-promise span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink)
}

/* ─── Demo Form ─── */
.demo-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg)
}

.demo-form h3 {
  font-size: 24px;
  line-height: 1.15
}

.demo-form .form-subtitle {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft)
}

.form-fields {
  display: grid;
  gap: 18px;
  margin-top: 24px
}

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

.field-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em
}

.field-group .field-hint {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.4
}

.field-group input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--panel-soft);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease)
}

.field-group input::placeholder {
  color: rgba(26, 29, 36, .3)
}

.field-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
  tab-index: -1
}

.form-submit {
  margin-top: 24px
}

.form-submit .btn {
  font-size: 16px;
  padding: 18px 32px
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  justify-content: center
}

.form-footer svg {
  width: 16px;
  height: 16px;
  color: var(--ink-faint)
}

.form-footer span {
  font-size: 13px;
  color: var(--ink-faint)
}

/* ─── Footer ─── */
.site-footer {
  padding: 48px 0 36px;
  border-top: none;
  background: rgb(16, 30, 56);
  color: rgba(255, 255, 255, .85)
}

.footer-content {
  display: grid;
  gap: 32px
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px
}

.footer-brand {
  max-width: 420px
}

.footer-logo {
  width: min(280px, 36vw);
  height: auto;
  filter: invert(1)
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6)
}

.footer-nyc {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .4)
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px
}

.footer-contact-label {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  max-width: 280px
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease)
}

.footer-email:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2)
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .35)
}

/* ─── Demo Success Modal ─── */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity .25s var(--ease);
  padding: 24px
}

.demo-modal-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none
}

.demo-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(20, 30, 60, .2), 0 0 0 1px rgba(20, 30, 60, .06);
  transform: translateY(0);
  transition: transform .25s var(--ease)
}

.demo-modal-overlay[aria-hidden="true"] .demo-modal {
  transform: translateY(16px)
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 22px;
  color: var(--ink-faint);
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s var(--ease)
}

.demo-modal-close:hover {
  background: var(--panel-soft);
  color: var(--ink)
}

.demo-modal-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent)
}

.demo-modal-icon svg {
  width: 22px;
  height: 22px
}

.demo-modal h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px
}

.demo-modal-instruction {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px
}

.demo-modal-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px
}

.demo-modal-phone {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--accent-light);
  transition: background .15s var(--ease)
}

.demo-modal-phone:hover {
  background: rgba(44, 90, 233, .12)
}

.demo-modal-copy {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-faint);
  cursor: pointer;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease)
}

.demo-modal-copy svg {
  width: 18px;
  height: 18px
}

.demo-modal-copy:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.demo-modal-copy.copied {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.demo-modal-copy.copied::after {
  content: "Copied!";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  animation: copied-fade .3s var(--ease)
}

.demo-modal-expiry {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 4px
}

/* ─── Contact Modal ─── */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity .25s var(--ease);
  padding: 24px
}

.contact-modal-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none
}

.contact-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(20, 30, 60, .2), 0 0 0 1px rgba(20, 30, 60, .06);
  transform: translateY(0);
  transition: transform .25s var(--ease)
}

.contact-modal-overlay[aria-hidden="true"] .contact-modal {
  transform: translateY(16px)
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 22px;
  color: var(--ink-faint);
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s var(--ease)
}

.contact-modal-close:hover {
  background: var(--panel-soft);
  color: var(--ink)
}

.contact-modal-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 47, 84, .08);
  color: rgb(26, 47, 84)
}

.contact-modal-icon svg {
  width: 22px;
  height: 22px
}

.contact-modal h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px
}

.contact-modal-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px
}

.contact-modal-email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px
}

.contact-modal-email {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--accent-light);
  transition: background .15s var(--ease)
}

.contact-modal-email:hover {
  background: rgba(44, 90, 233, .12)
}

.contact-modal-copy {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-faint);
  cursor: pointer;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease)
}

.contact-modal-copy svg {
  width: 18px;
  height: 18px
}

.contact-modal-copy:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.contact-modal-copy.copied {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.contact-modal-copy.copied::after {
  content: "Copied!";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  animation: copied-fade .3s var(--ease)
}

@keyframes copied-fade {
  from { opacity: 0; transform: translateX(-50%) translateY(4px) }
  to { opacity: 1; transform: translateX(-50%) translateY(0) }
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  animation: reveal-fallback 0s .8s forwards
}

.revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none
}

.reveal-d1 {
  transition-delay: .08s;
  animation-delay: 0.88s
}

.reveal-d2 {
  transition-delay: .16s;
  animation-delay: 0.96s
}

.reveal-d3 {
  transition-delay: .24s;
  animation-delay: 1.04s
}

@keyframes reveal-fallback {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {

  .hero-grid,
  .demo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .capabilities-grid,
  .how-grid {
    grid-template-columns: 1fr
  }

  .capabilities {
    margin-top: 0;
    padding: 40px 0
  }

  .hero,
  .demo-section,
  .testimonial-section {
    padding: 72px 0
  }
}

@media (max-width: 920px) {
  .site-header {
    position: static
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    font-size: 14px
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08)
  }

  .main-nav .nav-cta {
    border-color: transparent;
    background: #fff;
    color: rgb(26, 47, 84)
  }

  .hero {
    padding-top: 48px
  }

  .hero-copy h1,
  .demo-copy h2 {
    max-width: 14ch
  }

  .audio-card,
  .demo-form {
    padding: 24px
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 40px 0 36px
  }

  .capabilities,
  .demo-section,
  .testimonial-section {
    padding: 56px 0
  }

  .hero-grid,
  .capabilities-grid,
  .demo-grid,
  .testimonial-grid {
    gap: 24px
  }

  .hero-copy h1 {
    margin-top: 0;
    font-size: clamp(34px, 11vw, 48px);
    line-height: .98
  }

  .hero-subhead,
  .demo-copy p,
  .testimonial-text {
    max-width: none
  }

  .hero-subhead,
  .demo-copy p {
    font-size: 16px;
    line-height: 1.7
  }

  .capability-card h3,
  .demo-form h3 {
    font-size: 22px
  }

  .audio-card-eyebrow {
    margin-bottom: 16px;
    font-size: 13px
  }

  .player-shell {
    padding: 18px
  }

  .player-row {
    gap: 12px
  }

  .player-time {
    margin-top: 8px
  }

  .waveform {
    gap: 4px;
    height: 58px;
    overflow: hidden
  }

  .waveform-bar {
    width: 4px
  }

  .testimonial-photo {
    max-width: 440px
  }

  .footer-top {
    flex-direction: column;
    gap: 24px
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px))
  }

  .header-inner {
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 0 10px
  }

  .brand {
    justify-content: center
  }

  .brand-logo {
    min-width: 0;
    width: 228px
  }

  .main-nav {
    display: none
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px
  }

  .btn {
    width: 100%
  }

  .audio-card,
  .demo-form,
  .capability-card,
  .how-card {
    padding: 20px
  }

  .audio-tabs {
    flex-direction: column;
    gap: 8px
  }

  .player-row {
    grid-template-columns: auto 1fr;
    align-items: center
  }

  .play-btn {
    width: 56px;
    height: 56px
  }

  .player-meta,
  .waveform {
    min-width: 0
  }

  .player-time {
    margin-top: 6px;
    padding-top: 0
  }

  .demo-promise,
  .form-footer {
    align-items: flex-start
  }

  .form-footer {
    justify-content: flex-start
  }

  .footer-logo {
    width: 220px
  }

  .footer-email {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 16px
  }
}

@media (max-width: 420px) {
  .hero-copy h1,
  .demo-copy h2 {
    max-width: none
  }

  .audio-card,
  .demo-form,
  .capability-card {
    padding: 18px
  }

  .player-shell {
    padding: 16px
  }

  .play-btn {
    width: 52px;
    height: 52px
  }

  .waveform {
    gap: 3px
  }

  .waveform-bar {
    width: 3px
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.45
  }
}
