/* ============================================================
   Yara · Tamayaz marketing site
   Theme: tamayaz.io (Process Black bg, Brand Green accent, Montserrat)
   ============================================================ */

:root {
  --black: #0e0f12;
  --black-2: #16181d;
  --black-3: #1d2026;
  --green: #78ae40;
  --green-bright: #b9fd50;
  --green-soft: rgba(126, 174, 64, 0.12);
  --green-glow: rgba(185, 253, 80, 0.18);
  --text: #f5f5f5;
  --text-dim: #aab0b6;
  --text-mute: #7a8088;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.04);
  --shadow-glow: 0 30px 80px -20px rgba(126, 174, 64, 0.35);
  --font-display: 'Outfit', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', 'Montserrat', system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================================ */
/* Background motion (matches tamayaz.io blob system, lighter)  */
/* ============================================================ */
.bg-motion {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, #0a0b0e 0%, #0e0f12 50%, #0a0b0e 100%);
}
.bg-motion::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(-45deg, rgba(0,0,0,0), rgba(126,186,40,0.06), rgba(0,0,0,0), rgba(94,177,56,0.04));
  background-size: 400% 400%;
  animation: bgShift 30s ease-in-out infinite;
}
@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; animation: floatBlob 30s ease-in-out infinite; }
.blob-1 { width: 420px; height: 420px; top: -10%; left: -8%; background: radial-gradient(circle, rgba(126,186,40,0.22) 0%, rgba(126,186,40,0) 70%); animation-delay: 0s; }
.blob-2 { width: 360px; height: 360px; top: 30%; right: -6%; background: radial-gradient(circle, rgba(185,253,80,0.16) 0%, rgba(185,253,80,0) 70%); animation-delay: 8s; }
.blob-3 { width: 300px; height: 300px; top: 70%; left: 10%; background: radial-gradient(circle, rgba(94,177,56,0.18) 0%, rgba(94,177,56,0) 70%); animation-delay: 16s; }
.blob-4 { width: 280px; height: 280px; top: 120%; right: 20%; background: radial-gradient(circle, rgba(126,186,40,0.14) 0%, rgba(126,186,40,0) 70%); animation-delay: 22s; }
.blob-5 { width: 240px; height: 240px; top: 200%; left: 40%; background: radial-gradient(circle, rgba(185,253,80,0.12) 0%, rgba(185,253,80,0) 70%); animation-delay: 12s; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,-40px) scale(1.08); }
  66% { transform: translate(-30px,80px) scale(0.95); }
}

main, .header, .footer { position: relative; z-index: 1; }

/* ============================================================ */
/* Header                                                       */
/* ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 11, 14, 0.7);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner { display: flex; align-items: center; gap: 32px; padding: 18px 0; }
.logo img { height: 30px; }
.lbl-short { display: none; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  transition: color .2s ease;
}
.nav a:hover { color: var(--green-bright); }

/* ============================================================ */
/* Buttons                                                      */
/* ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.2px; cursor: pointer; transition: all .25s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #0a0b0e; font-weight: 700;
  box-shadow: 0 8px 30px -8px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--green-glow); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text); border-color: var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.btn-ghost {
  background: transparent;
  color: var(--text); border-color: var(--border);
  font-size: 13.5px; padding: 10px 18px;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-bright); }

/* ============================================================ */
/* Eyebrow + headings                                           */
/* ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--green-bright);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green-bright);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(30px, 5.5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; }
.accent {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================ */
/* HERO                                                         */
/* ============================================================ */
.hero { padding: 80px 0 100px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.lede {
  font-size: 18px; color: var(--text-dim); max-width: 540px;
  margin-bottom: 36px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--green-bright);
}
.hero-stats span { font-size: 12.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1.2px; }

.hero-photo { position: relative; }
.photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-glow), 0 20px 60px -20px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.photo-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(126,174,64,0.08) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(126,174,64,0.05) 100%);
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.status-pill {
  position: absolute; bottom: 22px; left: 22px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 100px;
  background: rgba(10,11,14,0.78); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  font-size: 13px; color: var(--text); font-weight: 500;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
  animation: dotPulse 2s ease-in-out infinite;
}

/* ============================================================ */
/* MEET YARA, voice intro                                       */
/* ============================================================ */
.meet { padding: 80px 0; }
.meet-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 48px; align-items: center;
}
.meet-photo { text-align: center; }
.profile-circle {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 6px rgba(126,174,64,0.12), 0 20px 50px -10px rgba(0,0,0,0.6);
}
.meet-id strong {
  display: block; font-family: var(--font-display);
  font-size: 22px; font-weight: 700; margin-bottom: 4px;
}
.meet-id span { font-size: 13px; color: var(--text-mute); letter-spacing: 1px; text-transform: uppercase; }

.meet-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 38px 40px;
  position: relative; overflow: hidden;
}
.meet-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0.6;
}
.meet-header { margin-bottom: 28px; }
.meet-header .eyebrow { margin-bottom: 10px; }

/* Voice player */
.voice-player {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 26px;
}
.voice-btn {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  border: none; cursor: pointer; color: #0a0b0e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px var(--green-glow);
  transition: transform .2s ease;
}
.voice-btn:hover { transform: scale(1.05); }
.voice-btn .icon-pause { display: none; }
.voice-btn.playing .icon-play { display: none; }
.voice-btn.playing .icon-pause { display: block; }
.voice-meta { flex: 1; min-width: 0; }
.voice-wave {
  display: flex; align-items: center; gap: 3px; height: 32px;
  margin-bottom: 8px;
}
.voice-wave span {
  flex: 1;
  background: var(--green);
  border-radius: 2px;
  height: 30%;
  opacity: 0.45;
  transition: height .25s ease, opacity .25s ease;
}
.voice-wave span:nth-child(3n)  { height: 60%; }
.voice-wave span:nth-child(5n)  { height: 90%; }
.voice-wave span:nth-child(7n)  { height: 45%; }
.voice-wave span:nth-child(11n) { height: 75%; }
.voice-player.playing .voice-wave span {
  animation: waveBar 1.2s ease-in-out infinite;
  opacity: 0.85;
  background: var(--green-bright);
}
.voice-player.playing .voice-wave span:nth-child(2n)  { animation-delay: .1s; }
.voice-player.playing .voice-wave span:nth-child(3n)  { animation-delay: .25s; }
.voice-player.playing .voice-wave span:nth-child(5n)  { animation-delay: .4s; }
.voice-player.playing .voice-wave span:nth-child(7n)  { animation-delay: .15s; }
.voice-player.playing .voice-wave span:nth-child(11n) { animation-delay: .35s; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1.2); }
}
.voice-time { font-size: 13px; color: var(--text-mute); font-variant-numeric: tabular-nums; }

.transcript {
  font-size: 15.5px; color: var(--text-dim); line-height: 1.7;
}
.transcript-label {
  font-family: var(--font-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-mute); margin-bottom: 12px;
}
.transcript p { margin-bottom: 12px; }
.transcript p:last-child { margin-bottom: 0; }

/* ============================================================ */
/* SECTION HEAD shared                                          */
/* ============================================================ */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-dim); }

/* ============================================================ */
/* WHAT (capabilities)                                          */
/* ============================================================ */
.what { padding: 100px 0; }
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cap-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126,174,64,0.4);
  background: linear-gradient(180deg, rgba(126,174,64,0.06), rgba(255,255,255,0.01));
}
.cap-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--green-bright);
  border-radius: 12px;
  font-size: 22px; font-family: var(--font-display); font-weight: 700;
  margin-bottom: 18px;
}
.cap-card h3 { margin-bottom: 10px; }
.cap-card p { color: var(--text-dim); font-size: 14.5px; }

/* ============================================================ */
/* FOR YOU (roles)                                              */
/* ============================================================ */
.for-you { padding: 100px 0; }
.role-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.role-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.role-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}
.role-head { margin-bottom: 22px; }
.role-tag {
  display: inline-block; padding: 5px 12px;
  background: var(--green-soft); color: var(--green-bright);
  border-radius: 100px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.role-card h3 { font-size: 21px; }
.role-card ul {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.role-card li {
  padding: 12px 14px; padding-left: 36px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  font-size: 14px; color: var(--text-dim);
  position: relative;
  border: 1px solid var(--border-soft);
}
.role-card li::before {
  content: '"';
  position: absolute; left: 12px; top: 8px;
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--green);
}

/* ============================================================ */
/* PHOTO BREAK                                                  */
/* ============================================================ */
.photo-break { padding: 100px 0; }
.photo-break-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.photo-break-grid.reverse { grid-template-columns: 1fr 1fr; }
.photo-break-grid.reverse .photo-break-img { order: 2; }
.photo-break-img {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-glow), 0 20px 60px -20px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.photo-break-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-break-copy .eyebrow { margin-bottom: 18px; }
.photo-break-copy h2 { margin-bottom: 18px; }
.photo-break-copy p { color: var(--text-dim); font-size: 17px; margin-bottom: 22px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  padding-left: 28px; position: relative;
  font-size: 15px; color: var(--text-dim);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--green-bright); font-weight: 700;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================ */
/* HOW IT WORKS                                                 */
/* ============================================================ */
.how { padding: 100px 0; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.how-card {
  background: linear-gradient(180deg, rgba(126,174,64,0.05), rgba(0,0,0,0));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
}
.how-num {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--green-bright); letter-spacing: 2px;
  margin-bottom: 14px;
}
.how-card h3 { margin-bottom: 12px; font-size: 20px; }
.how-card p { color: var(--text-dim); font-size: 14.5px; }

/* ============================================================ */
/* INTEGRATIONS                                                 */
/* ============================================================ */
.integrations { padding: 100px 0; }
.int-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.int-tag {
  padding: 12px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  transition: all .2s ease;
}
.int-tag:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-bright);
}

/* ============================================================ */
/* CTA                                                          */
/* ============================================================ */
.cta { padding: 110px 0 90px; }
.cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(126,174,64,0.08), rgba(126,174,64,0.02));
  border: 1px solid rgba(126,174,64,0.3);
  border-radius: var(--r-xl);
  padding: 68px 48px;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -50%; left: -50%; right: -50%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(185,253,80,0.12) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner .eyebrow { margin-bottom: 18px; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-dim); font-size: 17px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 32px 0;
  font-size: 13px; color: var(--text-mute);
}
.footer-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-brand img { height: 24px; opacity: 0.7; }
.foot-links { display: flex; gap: 22px; margin-left: auto; }
.foot-links a:hover { color: var(--green-bright); }

/* ============================================================ */
/* CONTACT MODAL (port from www.tamayaz.io for parity)          */
/* ============================================================ */
.contact-modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 10000; justify-content: center; align-items: center;
  padding: 20px; opacity: 0; transition: opacity .3s ease;
}
.contact-modal-overlay.active { display: flex; opacity: 1; }
.contact-modal {
  background: #1a1d23;
  border: 1px solid rgba(185, 253, 80, 0.15);
  border-radius: 20px;
  width: 100%; max-width: 620px; max-height: 90vh;
  overflow-y: auto; padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(126,186,40,0.06);
  animation: modalSlideUp .35s ease;
}
@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.contact-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: #7a8a9a; font-size: 28px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  border-radius: 8px; transition: all .2s;
}
.contact-modal-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.contact-modal-header { margin-bottom: 28px; }
.contact-modal-header h2 {
  font-family: var(--font-display);
  font-size: 26px; color: #fff; font-weight: 700; margin: 0 0 8px;
}
.contact-modal-header p { font-size: 14px; color: #7a8a9a; margin: 0; line-height: 1.5; }
.contact-form .form-row { display: flex; gap: 16px; }
.contact-form .form-group { margin-bottom: 18px; flex: 1; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: #c8d0d8; margin-bottom: 6px;
}
.contact-form label .required { color: #b9fd50; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: #fff;
  font-size: 14px; font-family: inherit;
  transition: all .2s; outline: none;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555e6a; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(185,253,80,0.4);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(185,253,80,0.08);
}
.contact-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a8a9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.contact-form select option { background: #1a1d23; color: #fff; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form-submit {
  width: 100%; padding: 14px 24px;
  background: linear-gradient(135deg, #7eba28, #62b22f);
  color: #fff; font-size: 15px; font-weight: 700;
  font-family: inherit; border: none; border-radius: 12px;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 6px;
}
.contact-form-submit:hover {
  background: linear-gradient(135deg, #8ed030, #7eba28);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(126,186,40,0.3);
}
.contact-form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.contact-form-submit .spinner { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-success { text-align: center; padding: 20px 0; }
.contact-success .success-icon { margin-bottom: 20px; }
.contact-success h3 { font-family: var(--font-display); font-size: 24px; color: #fff; margin: 0 0 12px; }
.contact-success p { font-size: 15px; color: #7a8a9a; line-height: 1.6; margin: 0; }
@media (max-width: 767px) {
  .contact-modal { padding: 28px 20px; max-height: 95vh; }
  .contact-modal-header h2 { font-size: 22px; }
  .contact-form .form-row { flex-direction: column; gap: 0; }
}

/* ============================================================ */
/* Reveal-on-scroll (added by JS only)                          */
/* ============================================================ */
section.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
section.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================ */
/* Responsive                                                   */
/* ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .meet-grid, .photo-break-grid, .photo-break-grid.reverse {
    grid-template-columns: 1fr; gap: 40px;
  }
  .photo-break-grid.reverse .photo-break-img { order: -1; }
  .cap-grid, .role-grid, .how-grid { grid-template-columns: 1fr; }
  .meet-card { padding: 28px 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cta-inner { padding: 48px 28px; }

  /* Trim section padding on tablet/mobile so the page doesn't feel endless. */
  .hero       { padding: 48px 0 64px; }
  .meet       { padding: 56px 0; }
  .what       { padding: 72px 0; }
  .for-you    { padding: 72px 0; }
  .photo-break{ padding: 72px 0; }
  .how        { padding: 72px 0; }
  .integrations { padding: 72px 0; }
  .cta        { padding: 80px 0 64px; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 640px) {
  /* Bring the photo into the fold by tightening hero rhythm. */
  .container { padding: 0 18px; }

  /* Mobile header — slimmer, swap full label for "Contact".
     Logo sits flush-left with extra inner margin, CTA pinned right
     via margin-left: auto so they each sit against their own edge. */
  .header {
    background: rgba(10, 11, 14, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header .container { padding-left: 22px; padding-right: 22px; }
  .header-inner { gap: 12px; padding: 12px 0; min-height: 56px; }
  .header-inner .logo { margin-right: auto; padding-left: 2px; }
  .logo img { height: 24px; }
  .header-inner .btn-ghost {
    margin-left: auto;
    margin-right: 2px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    min-height: 38px;
    border-radius: 100px;
    background: rgba(126,174,64,0.1);
    border-color: rgba(126,174,64,0.35);
    color: #b9fd50;
  }
  .header-inner .btn-ghost:hover {
    background: rgba(126,174,64,0.18);
    color: #b9fd50;
  }
  .lbl-long { display: none; }
  .lbl-short { display: inline; }

  .hero { padding: 28px 0 56px; }
  .hero-copy .eyebrow { margin-bottom: 14px; font-size: 10.5px; letter-spacing: 1.6px; }
  .hero h1 { margin-bottom: 14px; line-height: 1.15; }
  .lede { font-size: 16px; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; margin-bottom: 32px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; min-width: 140px; }
  .hero-stats { gap: 20px; padding-top: 22px; justify-content: space-between; }
  .hero-stats > div { gap: 2px; }
  .hero-stats strong { font-size: 20px; }
  .hero-stats span { font-size: 11px; letter-spacing: 1px; }
  .photo-frame { aspect-ratio: 4 / 4.5; border-radius: 22px; }
  .status-pill { bottom: 14px; left: 14px; font-size: 11.5px; padding: 7px 11px; }

  /* Meet (voice intro) card uses every pixel. */
  .meet-card { padding: 24px 18px; border-radius: 22px; }
  .meet-card h2 { font-size: 24px; }
  .profile-circle { width: 160px; height: 160px; }
  .meet-id strong { font-size: 19px; }
  .meet-id span { font-size: 11.5px; }
  .voice-player { padding: 14px; gap: 12px; border-radius: 16px; }
  .voice-btn { width: 48px; height: 48px; }
  .voice-wave { height: 28px; gap: 2px; }
  .voice-time { font-size: 12px; }
  .transcript { font-size: 14.5px; line-height: 1.65; }

  /* Capability + how-it-works + role cards: smaller padding. */
  .cap-card { padding: 24px 22px; border-radius: 16px; }
  .cap-card h3 { font-size: 17px; }
  .cap-card p { font-size: 14px; }
  .role-card { padding: 26px 22px; border-radius: 16px; }
  .role-card h3 { font-size: 19px; }
  .role-card li { font-size: 13.5px; padding: 11px 12px 11px 32px; }
  .role-card li::before { left: 10px; top: 6px; font-size: 22px; }
  .how-card { padding: 28px 22px; border-radius: 16px; }
  .how-card h3 { font-size: 18px; }
  .how-card p { font-size: 14px; }

  /* Photo break: image first on mobile, capped height to keep the lede close. */
  .photo-break-grid { gap: 32px; }
  .photo-break-img { aspect-ratio: 4 / 4.5; border-radius: 22px; }
  .photo-break-copy h2 { font-size: 23px; line-height: 1.2; }
  .photo-break-copy p { font-size: 15px; }
  .check-list li { font-size: 14px; }

  /* Integrations: tighter pills. */
  .int-grid { gap: 8px; }
  .int-tag { padding: 9px 16px; font-size: 13px; }

  /* CTA bottom — explicit side margins on the lime-bordered card so
     it's clearly inset from the viewport edges (was getting read as
     "stuck to the sides" with padding-only). Container goes back to
     the section default and the card itself carries the extra gap. */
  .cta .container { padding-left: 18px; padding-right: 18px; }
  .cta-inner {
    margin-left: 18px;
    margin-right: 18px;
    padding: 40px 24px;
    border-radius: 26px;
    max-width: none;
  }
  .cta-inner h2 { font-size: 26px; }
  .cta-inner p { font-size: 15.5px; margin-bottom: 24px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Touch targets: ensure every button is ≥44px tall. */
  .btn { padding: 13px 22px; font-size: 14.5px; min-height: 44px; }
  .btn-ghost { padding: 10px 14px; font-size: 12.5px; min-height: 40px; }

  /* Section heading max-width tightens on mobile. */
  .section-head .eyebrow { font-size: 10.5px; letter-spacing: 1.6px; }
  .section-head h2 { line-height: 1.2; }
  .section-sub { font-size: 15.5px; }

  /* Reduce the heavy floating blobs on mobile (perf + visual noise). */
  .blob-3, .blob-4, .blob-5 { display: none; }
  .blob-1 { width: 280px; height: 280px; }
  .blob-2 { width: 240px; height: 240px; }

  /* Footer stacks. */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-brand { gap: 12px; }
  .foot-brand span { font-size: 12px; }
  .foot-links { gap: 16px; margin-left: 0; }
}

@media (max-width: 380px) {
  /* Very small phones (iPhone SE etc.). */
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 14px; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 10.5px; }
  .meet-card { padding: 22px 16px; }
  .voice-player { padding: 12px; gap: 10px; }
  .voice-btn { width: 44px; height: 44px; }
  .voice-btn svg { width: 22px; height: 22px; }
  /* Halve the wave bar count visually so it doesn't feel pixel-thin. */
  .voice-wave span:nth-child(2n) { display: none; }
}
