/* =========================================================
   smile.captcha — warm light theme
   Off-white background + deep mint + soft violet
   ========================================================= */

:root {
  /* Light, warm palette */
  --bg:           #FBFAF6;   /* warm off-white */
  --bg-elev-1:    #FFFFFF;   /* card surface */
  --bg-elev-2:    #F4F1E8;   /* warm section surface */
  --bg-elev-3:    #ECE7D8;   /* highest tone surface */
  --line:         rgba(26, 31, 44, 0.09);
  --line-strong:  rgba(26, 31, 44, 0.18);

  --text:         #1A1F2C;
  --text-soft:    #4F5872;
  --text-mute:    #8A92A8;

  --mint:         #00B98E;   /* primary — readable on light bg */
  --mint-deep:    #008F6E;
  --mint-glow:    rgba(0, 185, 142, 0.20);
  --mint-tint:    #E5F7F1;

  --violet:       #6B4FE0;
  --violet-tint:  #ECE7FB;
  --violet-glow:  rgba(107, 79, 224, 0.18);

  --coral:        #E84B68;
  --amber:        #E89B1C;

  /* Typography */
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-body:    "Space Grotesk", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

a { color: inherit; }

::selection {
  background: var(--mint);
  color: #fff;
}

/* =========================================================
   Background — soft grid + warm haze
   ========================================================= */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26,31,44,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,31,44,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  animation: drift 28s ease-in-out infinite;
}

.orb-1 {
  width: 50vmax; height: 50vmax;
  top: -20vmax; left: -15vmax;
  background: radial-gradient(circle, rgba(0, 185, 142, 0.45) 0%, transparent 60%);
}

.orb-2 {
  width: 40vmax; height: 40vmax;
  bottom: -15vmax; right: -10vmax;
  background: radial-gradient(circle, rgba(107, 79, 224, 0.32) 0%, transparent 60%);
  animation-delay: -8s;
}

.orb-3 {
  width: 25vmax; height: 25vmax;
  top: 50%; left: 60%;
  background: radial-gradient(circle, rgba(232, 155, 28, 0.20) 0%, transparent 60%);
  animation-delay: -16s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(4vmax, -3vmax); }
  66%      { transform: translate(-3vmax, 4vmax); }
}

/* (scanline removed — read as too geeky) */
.scanline { display: none; }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(251, 250, 246, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--mint);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px var(--mint-glow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark {
  transform: rotate(-12deg) scale(1.05);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.brand-dot {
  color: var(--mint);
  margin: 0 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255,255,255,0.6);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--mint-deep); }

.nav-link-cta {
  color: #fff;
  background: var(--mint);
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 16px var(--mint-glow);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.nav-link-cta:hover {
  color: #fff;
  background: var(--mint-deep);
  box-shadow: 0 10px 28px var(--mint-glow);
  transform: translateY(-1px);
}

/* =========================================================
   Demo banner
   ========================================================= */

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--violet-tint) 0%, var(--mint-tint) 100%);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  position: relative;
  z-index: 4;
}

.demo-banner strong {
  color: var(--text);
  font-weight: 600;
}

.demo-banner a {
  color: var(--mint-deep);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.demo-banner a:hover { border-color: var(--mint-deep); }

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint-glow);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  position: relative;
}

.hero-text { max-width: 600px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mint-deep);
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--mint);
  border-radius: 100px;
  background: var(--mint-tint);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 6px var(--mint-glow);
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 28px;
}

.word-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--text-soft);
}

.word-accent {
  color: var(--mint-deep);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.word-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--mint);
  opacity: 0.30;
  z-index: -1;
  transform: skewX(-8deg);
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.lede strong {
  font-weight: 600;
  color: var(--text);
}

.lede em {
  font-style: italic;
  color: var(--mint-deep);
}

/* Buttons */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
}

.btn-primary {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 6px 18px var(--mint-glow);
}

.btn-primary:hover {
  background: var(--mint-deep);
  box-shadow: 0 12px 32px var(--mint-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint-deep);
  background: var(--mint-tint);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 14px;
}

/* =========================================================
   Captcha stage
   ========================================================= */

.captcha-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}

.captcha-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

.meta-tag {
  padding: 4px 10px;
  background: var(--text);
  color: var(--mint);
  border-radius: 4px;
  font-weight: 700;
}

.meta-divider {
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

.meta-status::before {
  content: "● ";
  color: var(--coral);
  animation: pulse 2s ease-in-out infinite;
}

/* The captcha card */
.captcha-container {
  width: 380px;
  background: var(--bg-elev-1);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 24px 24px 0;
  position: relative;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px -16px rgba(26, 31, 44, 0.14),
    0 6px 18px -6px rgba(26, 31, 44, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.captcha-container:hover:not(.success):not(.processing) {
  transform: translateY(-3px);
  border-color: var(--mint);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 32px 64px -16px rgba(26, 31, 44, 0.18),
    0 0 0 4px var(--mint-glow);
}

.captcha-container:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.captcha-container.success {
  cursor: default;
  border-color: var(--mint);
  background: linear-gradient(180deg, var(--bg-elev-1) 0%, var(--mint-tint) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px -16px rgba(0, 185, 142, 0.30),
    0 0 0 4px var(--mint-glow);
}

/* Top label */
.captcha-toplabel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.toplabel-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232, 75, 104, 0.4);
  animation: pulse 2s ease-in-out infinite;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.loading .toplabel-dot,
.processing .toplabel-dot {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(232, 155, 28, 0.4);
}

.success .toplabel-dot {
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint-glow);
  animation: none;
}

.toplabel-text { text-transform: uppercase; }

.toplabel-id {
  margin-left: auto;
  color: var(--text-mute);
}

/* Visual area (compact card view — full UI lives in the modal) */
.captcha-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.smile-icon,
.check-icon {
  position: absolute;
  width: 110px;
  height: 110px;
  color: var(--text);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.smile-icon {
  opacity: 1;
  transform: scale(1);
}

.smile-icon #smile-mouth {
  transition: d 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.captcha-container:hover:not(.success) .smile-icon {
  transform: scale(1.04) rotate(-4deg);
  color: var(--mint-deep);
}

.captcha-container:hover:not(.success) .smile-icon #smile-mouth {
  d: path("M 30 58 Q 50 78 70 58");
}

.check-icon {
  opacity: 0;
  transform: scale(0.6);
  color: var(--mint-deep);
  filter: drop-shadow(0 8px 16px var(--mint-glow));
}

.success .smile-icon { opacity: 0; transform: scale(0.6); }
.success .check-icon { opacity: 1; transform: scale(1); }

#check-path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

.success #check-path {
  animation: drawCheck 0.6s 0.2s ease-out forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Shared spinner (used inside modal) */
.spinner {
  width: 90px;
  height: 90px;
  animation: spinner-rotate 2s linear infinite;
}

.spinner-track { stroke: var(--line-strong); }

.spinner-path {
  stroke: var(--mint);
  stroke-dasharray: 90, 200;
  stroke-dashoffset: 0;
  animation: spinner-dash 1.5s ease-in-out infinite;
}

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

@keyframes spinner-dash {
  0%   { stroke-dasharray: 1, 200;   stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 200;  stroke-dashoffset: -35px; }
  100% { stroke-dasharray: 90, 200;  stroke-dashoffset: -125px; }
}

/* Shared meter styles (used inside modal) */
.meter-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin-bottom: 6px;
}

.meter-percent {
  font-weight: 700;
  color: var(--mint-deep);
}

.meter-track {
  height: 6px;
  background: var(--bg-elev-3);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.meter-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--violet) 0%, var(--mint) 100%);
  border-radius: 3px;
  transition: width 0.18s ease-out, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px var(--mint-glow);
}

.meter-fill.over {
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-deep) 100%);
  box-shadow: 0 0 12px var(--mint-glow);
}

.meter-threshold {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 70%;
  width: 1px;
  background: var(--text);
  opacity: 0.4;
}

.meter-threshold::after {
  content: "go";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Captcha text */
.captcha-text {
  text-align: center;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

#captcha-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
}

#captcha-subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  min-height: 1.4em;
  transition: color 0.3s ease;
}

.error #captcha-subtitle { color: var(--coral); }
.success #captcha-subtitle { color: var(--mint-deep); }

/* Joke ticker */
.joke-ticker {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--violet-tint);
  border: 1px solid rgba(107, 79, 224, 0.25);
  border-radius: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
  position: relative;
  z-index: 1;
}

.modal-panel.loading .joke-ticker {
  opacity: 1;
  max-height: 100px;
}

.joke-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--violet);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.joke-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
  font-style: italic;
  min-height: 2.8em;
  animation: joke-fade 0.5s ease-out;
}

@keyframes joke-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.captcha-stub {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  border-top: 1px dashed var(--line-strong);
  position: relative;
  z-index: 1;
}

.captcha-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-align: center;
  max-width: 320px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.note-dot {
  color: var(--mint);
  font-size: 8px;
  vertical-align: middle;
}

/* =========================================================
   How it works section
   ========================================================= */

.how-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  position: relative;
}

.how-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--mint-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--text);
}

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

.how-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev-1);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 31, 44, 0.04);
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: 0 16px 40px -12px rgba(26, 31, 44, 0.15);
}

.how-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--mint-deep);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.how-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

.how-card code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-elev-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--mint-deep);
  border: 1px solid var(--line);
}

/* =========================================================
   Production CTA section
   ========================================================= */

.cta-section {
  position: relative;
  padding: 120px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev-2) 100%);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(0, 185, 142, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(107, 79, 224, 0.10), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--violet);
  display: block;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}

.cta-accent {
  background: linear-gradient(90deg, var(--mint-deep) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}

.cta-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: left;
}

.cta-features li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cta-features .check {
  color: var(--mint-deep);
  font-weight: 700;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Privacy callout
   ========================================================= */

.privacy-callout {
  background: var(--bg-elev-2);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.privacy-icon {
  flex-shrink: 0;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--mint-tint);
  border: 1.5px solid var(--mint);
  border-radius: 14px;
  box-shadow: 0 8px 20px var(--mint-glow);
}

.privacy-content p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}

.footer-tag {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 360px;
  line-height: 1.5;
}

.footer-tag a {
  color: var(--mint-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-tag a:hover { border-color: var(--mint-deep); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--mint-deep); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

.footer-marquee {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-elev-2);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--mint-deep);
  opacity: 0.65;
}

.marquee-track span { flex-shrink: 0; }

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

/* =========================================================
   Confetti
   ========================================================= */


/* =========================================================
   Page-load reveal
   ========================================================= */

.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text .eyebrow  { animation-delay: 0.1s; }
.hero-text .display  { animation-delay: 0.25s; }
.hero-text .lede     { animation-delay: 0.45s; }
.hero-text .hero-cta { animation-delay: 0.6s; }

.captcha-stage {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* =========================================================
   Floating quip toast (interaction jokes)
   ========================================================= */

.quip-host {
  position: fixed;
  pointer-events: none;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--mint);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 185, 142, 0.30);
  white-space: nowrap;
  animation: quip-float 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  letter-spacing: 0.01em;
}

.quip-host.violet {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 12px 32px rgba(107, 79, 224, 0.30);
}

.quip-host.amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 12px 32px rgba(232, 155, 28, 0.30);
}

@keyframes quip-float {
  0%   { transform: translate(-50%, 0) scale(0.6); opacity: 0; }
  20%  { transform: translate(-50%, -8px) scale(1); opacity: 1; }
  80%  { transform: translate(-50%, -32px) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -56px) scale(0.92); opacity: 0; }
}

/* =========================================================
   Contact page
   ========================================================= */

.contact-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 40px;
  text-align: center;
}

.contact-hero .eyebrow { margin-bottom: 24px; }

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-hero h1 .accent {
  color: var(--mint-deep);
  font-style: italic;
  font-weight: 500;
}

.contact-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* Big email CTA card */
.email-cta {
  max-width: 720px;
  margin: 48px auto 64px;
  padding: 56px 48px;
  background: var(--bg-elev-1);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px -16px rgba(26, 31, 44, 0.14);
}

.email-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--mint-tint), transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 100%, var(--violet-tint), transparent 70%);
  pointer-events: none;
}

.email-cta-inner { position: relative; z-index: 1; }

.email-cta .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mint-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.email-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.email-cta p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

.email-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--text);
  color: var(--bg);
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
  box-shadow: 0 12px 32px rgba(26, 31, 44, 0.20);
}

.email-button:hover {
  background: var(--mint-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px var(--mint-glow);
}

.email-button .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.email-button:hover .arrow {
  transform: translateX(4px);
}

.email-cta-sub {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
}

.email-cta-sub a {
  color: var(--mint-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.email-cta-sub a:hover { border-color: var(--mint-deep); }

/* Info cards grid */
.info-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev-1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 31, 44, 0.04);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: 0 16px 40px -12px rgba(26, 31, 44, 0.15);
}

.info-card .info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mint-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-soft);
}

.info-card a {
  color: var(--mint-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.info-card a:hover { border-color: var(--mint-deep); }

.info-card .auyan-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.info-card .auyan-mark::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: 0 4px 12px var(--mint-glow);
}

/* =========================================================
   MODAL — full verification experience
   ========================================================= */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 31, 44, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  animation: modal-bg-in 0.35s ease forwards;
}

@keyframes modal-bg-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg-elev-1);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 36px 36px 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 120px -32px rgba(26, 31, 44, 0.45),
    0 16px 48px -16px rgba(26, 31, 44, 0.25);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  animation: modal-panel-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

@keyframes modal-panel-in {
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.modal-close:hover {
  background: var(--coral);
  color: #fff;
  transform: rotate(90deg);
  border-color: var(--coral);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mint-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.modal-instructions {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 380px;
  margin: 0 auto;
  min-height: 2.6em;
  transition: color 0.3s ease;
}

.modal-panel.error  .modal-instructions { color: var(--coral); }
.modal-panel.success .modal-title { color: var(--mint-deep); }

.modal-panel.success {
  animation: success-bounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* IMPORTANT: opacity must be in every keyframe. Replacing the modal-panel-in
   animation strips its `forwards` fill, so without explicit opacity here the
   panel reverts to the base rule's opacity:0 and the whole modal disappears. */
@keyframes success-bounce {
  0%   { opacity: 1; transform: translateY(0) scale(1);    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 40px 120px -32px rgba(26,31,44,0.45), 0 16px 48px -16px rgba(26,31,44,0.25); }
  35%  { opacity: 1; transform: translateY(0) scale(1.025); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 40px 120px -32px rgba(0, 185, 142, 0.50), 0 0 0 6px rgba(0, 185, 142, 0.18); }
  100% { opacity: 1; transform: translateY(0) scale(1);    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 40px 120px -32px rgba(26,31,44,0.45), 0 16px 48px -16px rgba(26,31,44,0.25); }
}

/* Stage — webcam + face guide + hold ring */
.modal-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.webcam-large {
  position: relative;
  width: 320px;
  height: 320px;
}

.webcam-large #webcam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scaleX(-1);
  background: var(--bg-elev-2);
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 40px rgba(26, 31, 44, 0.18);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-panel.processing .webcam-large #webcam,
.modal-panel.holding    .webcam-large #webcam {
  opacity: 1;
}

/* Frozen snapshot canvas — replaces the live feed at the success moment */
.webcam-snapshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scaleX(-1);
  background: var(--bg-elev-2);
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 40px rgba(26, 31, 44, 0.18);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-panel.success .webcam-snapshot {
  display: block;
  opacity: 1;
}

.modal-panel.success .webcam-large #webcam {
  opacity: 0; /* hide the (now stopped) live element behind the snapshot */
}

/* Hold-progress ring around the webcam */
.hold-ring {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  pointer-events: none;
  transform: rotate(-90deg);
}

.hold-ring-track {
  stroke: var(--line);
}

.hold-ring-fill {
  stroke: var(--mint);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.18s linear, stroke 0.3s ease;
  filter: drop-shadow(0 0 4px var(--mint-glow));
}

.modal-panel.success .hold-ring-fill {
  stroke-dashoffset: 0;
  stroke: var(--mint-deep);
}

/* Face-shape guide */
.head-guide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 84%;
  pointer-events: none;
  color: var(--text-mute);
  opacity: 0;
  transition: opacity 0.4s ease, color 0.4s ease, transform 0.4s ease;
  transform: translate(-50%, -50%) scale(0.95);
}

.modal-panel.processing .head-guide,
.modal-panel.holding    .head-guide {
  transform: translate(-50%, -50%) scale(1);
}

.modal-panel.no-face .head-guide {
  animation: head-pulse 1.4s ease-in-out infinite;
}

.modal-panel.processing .head-guide,
.modal-panel.holding    .head-guide {
  opacity: 0.85;
}

.modal-panel.face-detected .head-guide { color: var(--mint); opacity: 1; }
.modal-panel.no-face       .head-guide { color: var(--coral); opacity: 1; }
.modal-panel.holding       .head-guide { color: var(--mint-deep); opacity: 0.6; }
.modal-panel.success       .head-guide { opacity: 0; }

@keyframes head-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.02); }
}

/* Spinner shown during model + camera load */
.modal-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-panel.loading .modal-spinner { opacity: 1; }

/* Big modal check on success */
.modal-check {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  color: var(--mint-deep);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 20px var(--mint-glow));
  pointer-events: none;
}

/* Big check is suppressed on success — the sunglasses + deal-tag are the
   star of the moment, and the check covers the user's face. */
.modal-panel.success .modal-check {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
}

#modal-check-path {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
}

.modal-panel.success #modal-check-path {
  animation: drawCheck 0.55s 0.25s ease-out forwards;
}

/* Sunglasses overlay — drops onto the face on success */
.sunglasses-overlay {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 6;
  transform-origin: center center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  /* JS sets --angle, --eye-cx, --eye-cy, --eye-w via inline style */
  left: var(--eye-cx, 50%);
  top: var(--eye-cy, 50%);
  width: var(--eye-w, 60%);
  height: auto;
  /* Centered on (left, top) using % translate of own size */
  transform: translate(-50%, -50%) rotate(var(--angle, 0deg));
}

.sunglasses-overlay.dropping {
  animation: glasses-drop 0.7s cubic-bezier(0.34, 1.5, 0.4, 1) forwards;
}

@keyframes glasses-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -300%) rotate(var(--angle, 0deg));
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -38%) rotate(var(--angle, 0deg));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle, 0deg));
  }
}

/* "cool human ✓" tag — slides in from bottom-right after the glasses land */
.deal-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(40px) rotate(-6deg);
  z-index: 7;
}

.modal-panel.success .deal-tag {
  animation: deal-slide-in 0.5s 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.deal-line {
  background: var(--text);
  color: var(--mint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.deal-line-2 {
  background: var(--mint-deep);
  color: #fff;
  font-size: 16px;
}

@keyframes deal-slide-in {
  0%   { opacity: 0; transform: translateX(40px) rotate(-6deg); }
  60%  { opacity: 1; transform: translateX(-6px) rotate(-2deg); }
  100% { opacity: 1; transform: translateX(0) rotate(-3deg); }
}

/* Hold countdown bubble (top of webcam) */
.hold-countdown {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 31, 44, 0.30);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  z-index: 4;
}

.modal-panel.holding .hold-countdown {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  background: var(--mint);
  color: #fff;
  animation: countdown-tick 1s ease-in-out infinite;
}

@keyframes countdown-tick {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.08); }
}

/* Modal status pill */
.modal-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.modal-status .meta-tag {
  background: var(--mint-deep);
  color: #fff;
}

/* Modal expression meter */
.modal-meter {
  width: 100%;
  max-width: 320px;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

.modal-panel.processing .modal-meter,
.modal-panel.holding    .modal-meter,
.modal-panel.success    .modal-meter {
  opacity: 1;
  max-height: 60px;
}

.modal-meter .meter-track {
  height: 8px;
}

.modal-panel .joke-ticker {
  width: 100%;
  max-width: 380px;
}

/* Modal footer privacy line */
.modal-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-align: center;
  letter-spacing: 0.02em;
}

.modal-footer .note-dot {
  color: var(--mint);
  font-size: 8px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Lock body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .site-header { padding: 18px 20px; }
  .nav-mono { display: none; }
  .demo-banner { padding: 12px 20px; font-size: 11px; text-align: left; }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px 20px 80px;
  }

  .hero-text { max-width: 100%; }
  .captcha-stage { margin: 0 auto; }
  .captcha-container { width: 100%; max-width: 380px; }

  .how-section { padding: 72px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }

  .cta-section { padding: 80px 20px; }
  .cta-features { grid-template-columns: 1fr; }

  .privacy-callout { padding: 56px 20px; }
  .privacy-content { flex-direction: column; gap: 20px; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; text-align: center; }

  .contact-hero { padding: 56px 20px 32px; }
  .email-cta { margin: 32px 20px 48px; padding: 40px 24px; border-radius: 20px; }
  .email-button { font-size: 15px; padding: 16px 22px; }
  .info-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 20px 80px; }

  /* Modal */
  .modal-backdrop { padding: 12px; }
  .modal-panel { padding: 28px 20px 22px; border-radius: 22px; }
  .modal-header { margin-bottom: 22px; }
  .webcam-large { width: 240px; height: 240px; }
  .hold-ring { inset: -8px; width: calc(100% + 16px); height: calc(100% + 16px); }
  .hold-countdown { width: 46px; height: 46px; font-size: 18px; top: -12px; }
  .modal-meter { max-width: 280px; }
}

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