:root {
  color-scheme: light;
  --background: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff6ff;
  --success: #16a34a;
  --success-soft: #f0fdf4;
  --danger: #dc2626;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --page-width: 1120px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--background);
}

button,
textarea,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible,
.voice-range:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 68px;
  margin-inline: auto;
}

.site-header::after {
  position: absolute;
  top: 67px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--border);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.hero {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
  padding: 76px 0 96px;
}

.hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 5px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #1d4ed8;
  background: var(--primary-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: var(--success-soft);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.studio-card {
  width: min(100%, 900px);
  margin: 52px auto 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.studio-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.studio-topline > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.studio-index {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-topline h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.engine-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.engine-badge > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
}

.engine-badge[data-state="loading"] > span:first-child {
  animation: pulse 1.2s ease-in-out infinite;
}

.engine-badge[data-state="ready"] {
  border-color: #bbf7d0;
  color: #166534;
  background: var(--success-soft);
}

.engine-badge[data-state="ready"] > span:first-child {
  background: var(--success);
}

.engine-badge[data-state="error"] {
  border-color: #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.engine-badge[data-state="error"] > span:first-child {
  background: var(--danger);
}

.field-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}

.field-heading label {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.field-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.clear-button {
  padding: 0;
  border: 0;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
}

.clear-button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.textarea-wrap {
  position: relative;
}

textarea {
  display: block;
  width: 100%;
  min-height: 156px;
  resize: vertical;
  padding: 17px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
  font-size: 18px;
  line-height: 1.55;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea::placeholder {
  color: #94a3b8;
}

textarea:hover {
  border-color: #94a3b8;
}

textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.textarea-corner {
  display: none;
}

.input-actions {
  display: flex;
  margin-top: 12px;
}

.sample-trigger {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  color: var(--primary);
  background: var(--primary-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease,
    transform 150ms ease;
}

.sample-trigger:hover {
  border-color: var(--primary);
  color: #ffffff;
  background: var(--primary);
}

.sample-trigger:active {
  transform: translateY(1px);
}

.sample-trigger:disabled {
  cursor: wait;
  opacity: 0.55;
}

.player {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-muted);
}

.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.voice-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.voice-label p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.voice-label strong {
  font-size: 12px;
}

.voice-label p span {
  color: var(--muted);
  font-size: 10px;
}

.time-display {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.voice-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.voice-control {
  min-width: 0;
}

.voice-control-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
}

.voice-control-heading label {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
}

.voice-control-heading output {
  color: var(--primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.voice-range {
  --range-fill: 35%;
  width: 100%;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.voice-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--primary) 0 var(--range-fill),
    var(--border-strong) var(--range-fill) 100%
  );
}

.voice-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  appearance: none;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.voice-range::-moz-range-track {
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--border-strong);
}

.voice-range::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.voice-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.voice-range:disabled {
  cursor: wait;
  opacity: 0.5;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 1px;
  color: #94a3b8;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.waveform-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.playback-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  min-height: 46px;
  padding: 8px 16px 8px 9px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--primary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 150ms ease, box-shadow 150ms ease;
}

.play-button:hover:not(:disabled) {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

.play-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.download-control {
  display: flex;
  min-width: 178px;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.download-control:focus-within {
  border-color: var(--primary);
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.download-button {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 0;
  border-radius: 0;
  color: var(--primary);
  background: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 150ms ease, background-color 150ms ease;
}

.download-button:hover:not(:disabled) {
  color: #ffffff;
  background: var(--primary);
}

.download-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.download-button[data-state="loading"] {
  cursor: wait;
}

.download-button svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.download-button[data-state="loading"] svg {
  animation: pulse 0.8s ease-in-out infinite alternate;
}

.download-format {
  width: 64px;
  min-width: 64px;
  min-height: 44px;
  padding: 0 5px;
  border: 0;
  border-left: 1px solid #bfdbfe;
  border-radius: 0;
  color: #1e40af;
  background: #eff6ff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.download-format:hover:not(:disabled) {
  background: #dbeafe;
}

.download-format:disabled {
  cursor: wait;
  opacity: 0.58;
}

.download-control .download-button:focus-visible,
.download-control .download-format:focus-visible {
  outline: 0;
}

.play-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  color: var(--primary);
  background: #ffffff;
}

.play-icon svg {
  width: 17px;
  fill: currentColor;
}

.icon-stop {
  display: none;
}

.player[data-state="playing"] .icon-play {
  display: none;
}

.player[data-state="playing"] .icon-stop {
  display: block;
}

.player[data-state="playing"] .play-button {
  background: var(--danger);
}

.player[data-state="playing"] .play-icon {
  color: var(--danger);
}

.player[data-state="generating"] .play-icon {
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  background: transparent;
  animation: spin 0.8s linear infinite;
}

.player[data-state="generating"] .play-icon svg {
  display: none;
}

.waveform {
  position: relative;
  min-width: 0;
  height: 46px;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: default;
  isolation: isolate;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease,
    opacity 150ms ease;
}

.waveform::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 10px;
  left: 10px;
  height: 1px;
  background: #dbe4f0;
  content: "";
  transform: translateY(-50%);
}

.waveform[data-ready="false"] {
  opacity: 0.58;
}

.waveform[data-ready="true"] {
  cursor: pointer;
}

.waveform[data-ready="true"]:hover {
  border-color: #93c5fd;
  background: #ffffff;
}

.waveform:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
  outline: none;
}

.waveform-bars {
  position: absolute;
  z-index: 1;
  inset: 6px 10px;
  display: grid;
  grid-template-columns: repeat(48, minmax(2px, 1fr));
  align-items: center;
  gap: clamp(2px, 0.35vw, 4px);
  pointer-events: none;
}

.waveform-bars span {
  width: 3px;
  height: var(--bar-height, 30%);
  max-height: 100%;
  justify-self: center;
  border-radius: 4px;
  background: #94a3b8;
  opacity: 0.82;
  transform-origin: center;
  transition: background-color 150ms ease, opacity 150ms ease;
}

.waveform-bars span:nth-child(5n + 1) { --bar-height: 28%; }
.waveform-bars span:nth-child(5n + 2) { --bar-height: 72%; }
.waveform-bars span:nth-child(5n + 3) { --bar-height: 46%; }
.waveform-bars span:nth-child(5n + 4) { --bar-height: 88%; }
.waveform-bars span:nth-child(5n + 5) { --bar-height: 58%; }

.waveform-progress {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 0%;
  border-right: 2px solid var(--primary);
  background: rgba(37, 99, 235, 0.12);
  pointer-events: none;
}

.waveform[data-progress="false"] .waveform-progress {
  border-right-color: transparent;
}

.player[data-state="playing"] .waveform-bars span {
  background: #64748b;
  opacity: 1;
}

.player-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.player[data-state="error"] .player-status {
  color: var(--danger);
}

.how-it-works {
  width: 100%;
  padding: 80px max(24px, calc((100% - var(--page-width)) / 2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.section-intro {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-intro .eyebrow {
  margin-bottom: 16px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--page-width);
  margin: 46px auto 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.process-list > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--primary);
  background: var(--primary-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 96px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text-soft);
  text-underline-offset: 3px;
}

body.verification-open {
  overflow: hidden;
}

.verification-dialog[hidden] {
  display: none;
}

.verification-dialog {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.verification-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
}

.verification-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.verification-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
}

.verification-close:hover {
  color: var(--text);
  background: var(--surface-muted);
}

.verification-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.verification-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 38px;
}

.verification-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: var(--primary-soft);
}

.verification-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.verification-heading p {
  margin: 0 0 3px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-heading h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.verification-copy {
  margin: 18px 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.turnstile-widget {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.turnstile-widget iframe {
  max-width: 100%;
}

.verification-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.verification-status[data-state="checking"] {
  color: var(--primary);
}

.verification-status[data-state="success"] {
  color: var(--success);
}

.verification-status[data-state="error"] {
  color: var(--danger);
}

.noscript-message {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  padding: 14px 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--danger);
  font-size: 14px;
  text-align: center;
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  to { transform: scaleY(0.5); }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .hero {
    padding: 56px 0 72px;
  }

  .studio-card {
    margin-top: 40px;
    padding: 24px;
  }

  .how-it-works {
    padding-block: 64px;
    padding-inline: 16px;
  }

  .process-list {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 12px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .process-list > li > span {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .site-header::after {
    top: 63px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-points {
    gap: 10px 16px;
  }

  .studio-card {
    padding: 20px;
    border-radius: 14px;
  }

  .studio-topline {
    align-items: flex-start;
    gap: 14px;
  }

  .studio-topline h2 {
    font-size: 20px;
  }

  .engine-badge {
    max-width: 124px;
    font-size: 9px;
    line-height: 1.2;
  }

  textarea {
    min-height: 140px;
    padding: 14px;
    font-size: 16px;
  }

  .sample-trigger {
    width: 100%;
  }

  .player {
    padding: 16px;
  }

  .voice-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .waveform-row {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .waveform {
    width: 100%;
    flex: 0 0 46px;
  }

  .playback-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .play-button,
  .download-control {
    width: 100%;
    min-width: 0;
  }

  .section-intro h2 {
    font-size: 32px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 128px;
  }

  .verification-dialog {
    padding: 16px;
  }

  .verification-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .verification-heading h2 {
    font-size: 20px;
  }
}

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