/* ZynVoss LLC — Premium interactive corporate system */
:root {
  --navy-950: #030a14;
  --navy-900: #071525;
  --navy-800: #0c2240;
  --navy-700: #163560;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --cyan-400: #22d3ee;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 16px 50px rgba(3, 10, 20, 0.16);
  --shadow-lg: 0 30px 80px rgba(3, 10, 20, 0.28);
  --radius: 16px;
  --max: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate-700);
  background: #f4f6f8;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

body.page-ready .page-fade { animation: pageIn 0.7s var(--ease) both; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }

/* Quiet professional background — no busy WebGL by default */
#bg-canvas {
  display: none;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 55%, #eef2f6 100%);
}

.site-wrap { position: relative; z-index: 1; }

/* Google AdSense slots — discreet, professional */
.ad-slot {
  margin: 1.5rem auto;
  max-width: var(--max);
  padding: 0.5rem 1rem;
  text-align: center;
  min-height: 0;
}
.ad-slot .ad-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.35rem;
}
.ad-slot ins.adsbygoogle {
  display: block;
  min-height: 90px;
  background: transparent;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
}

.logo-link img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.25rem;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--navy-800);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-600); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-600), var(--cyan-400));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(7, 21, 37, 0.28);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-400));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}

.btn-outline-dark:hover {
  background: var(--navy-900);
  color: var(--white);
}

.nav-cta { display: none; }
.header-cta { display: inline-flex; flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(20, 184, 166, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 90%, rgba(34, 211, 238, 0.12), transparent 50%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 48%, #0a2744 100%);
  color: var(--white);
  padding: 5.75rem 0 5.25rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 24s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, #f7fafc);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--teal-400);
}

.hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 span,
.gradient-text {
  background: linear-gradient(90deg, var(--teal-300), var(--cyan-400), #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card img {
  width: 100%;
  border-radius: 12px;
  background: var(--white);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.hero-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.hero-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.section-header {
  max-width: 660px;
  margin-bottom: 2.75rem;
}

.section-header.center { margin-inline: auto; text-align: center; }

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  color: var(--navy-900);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.section-header p { color: var(--slate-600); font-size: 1.05rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 6px 22px rgba(3, 10, 20, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
  color: inherit;
  width: 100%;
  cursor: default;
}

button.card { cursor: pointer; }

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.4);
}

.service-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 750;
  font-size: 0.9rem;
  color: var(--teal-600);
}

.card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.14), rgba(34, 211, 238, 0.18));
  color: var(--teal-600);
  font-size: 1.05rem;
  font-weight: 800;
}

.card h3 {
  color: var(--navy-900);
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.card p { color: var(--slate-600); font-size: 0.96rem; }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}

.process-step h3 { color: var(--navy-900); font-size: 1.05rem; margin-bottom: 0.45rem; }
.process-step p { color: var(--slate-600); font-size: 0.92rem; }

/* Split / prose */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.prose h2 {
  color: var(--navy-900);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.prose p { margin-bottom: 1rem; color: var(--slate-600); }
.prose strong { color: var(--navy-800); }

.values { display: grid; gap: 0.85rem; margin-top: 1.25rem; }

.value-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border-left: 3px solid var(--teal-500);
  box-shadow: 0 4px 14px rgba(3, 10, 20, 0.04);
}

.value-item strong { display: block; color: var(--navy-900); margin-bottom: 0.15rem; }
.value-item span { color: var(--slate-600); font-size: 0.92rem; }

/* Compact CEO video player (full video, small footprint) */
.ceo-video-wrap {
  width: min(220px, 100%);
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  background: #000;
  position: relative;
  z-index: 1;
}
.ceo-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  aspect-ratio: 9 / 16;
  background: #0a1628;
  vertical-align: middle;
}
.ceo-video-caption {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.35rem 0 0.85rem;
  position: relative;
  z-index: 1;
}
.founder-card .ceo-video-wrap {
  margin-left: auto;
  margin-right: auto;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.founder-card {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  right: -40px; top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 70%);
}

.founder-card .label {
  color: var(--teal-300);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.founder-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.founder-card .role { color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem; }
.founder-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.98rem; position: relative; z-index: 1; }

/* Work */
.work-card { overflow: hidden; padding: 0; }
.work-visual {
  height: 160px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(7, 21, 37, 0.95));
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--white);
}

.work-visual span {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-body { padding: 1.4rem 1.5rem 1.6rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.tag {
  font-size: 0.74rem;
  font-weight: 750;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
}

/* Contact + project forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.contact-info h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.contact-info > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 1.5rem; }

.contact-list { display: grid; gap: 1rem; }

.contact-list a,
.contact-list div {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.contact-list a:hover { background: rgba(20, 184, 166, 0.16); }

.contact-list small {
  display: block;
  color: var(--teal-300);
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.25rem;
}

.contact-list strong { font-size: 1.02rem; }

.form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 1.85rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  color: var(--navy-900);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.form-card .lead {
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

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

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  color: var(--navy-900);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.field textarea { min-height: 130px; resize: vertical; }

.field-block {
  margin-bottom: 1.35rem;
  padding: 1.15rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid var(--slate-200);
}

.field-block > label,
.field-block > .block-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.field-block .hint {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 0.85rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--navy-800);
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip:has(input:checked),
.chip.active {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(34, 211, 238, 0.16));
  border-color: var(--teal-500);
  color: #0f766e;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.form-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.94rem;
}

.form-status.show { display: block; }
.form-status,
.form-status.show,
.form-status.info,
.form-status.success,
.form-status.error,
.form-note,
.zi-form-status {
  display: none !important;
}

/* CTA */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(20, 184, 166, 0.22), transparent 50%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 4.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Page hero */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(20, 184, 166, 0.18), transparent 50%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 3.6rem 0 3.1rem;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(1.95rem, 3.5vw, 2.85rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  font-size: 1.05rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stat {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 1;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.stat:hover { transform: translateY(-4px); }
.stat strong { display: block; color: var(--navy-900); font-size: 1.25rem; margin-bottom: 0.2rem; }
.stat span { color: var(--slate-600); font-size: 0.88rem; }

a.stat-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  border-color: var(--teal-500);
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}
a.stat-link:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
a.stat-link strong { color: var(--teal-600); }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.95rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-col a, .footer-col p {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--teal-300); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 20, 0.72);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.modal.open .modal-dialog { transform: none; }

.modal-close {
  position: sticky;
  top: 0.75rem;
  float: right;
  margin: 0.75rem 0.75rem 0 0;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 2;
  color: var(--navy-900);
}

#service-modal-body { padding: 0.5rem 1.75rem 1.75rem; clear: both; }

.modal-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-hero h2 {
  color: var(--navy-900);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.modal-hero-text p { color: var(--slate-600); margin-bottom: 1rem; }

.modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-columns h3 {
  color: var(--navy-900);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.modal-columns h3.mt { margin-top: 1.25rem; }

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--slate-600);
  font-size: 0.94rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 800;
}

.example-list article {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.example-list article:last-child { border-bottom: 0; }
.example-list strong { display: block; color: var(--navy-900); margin-bottom: 0.2rem; }
.example-list p { color: var(--slate-600); font-size: 0.9rem; }

.modal-video-block {
  background: var(--navy-900);
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
}

.modal-video-block h3 { margin-bottom: 0.4rem; }
.modal-video-block > p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }

.video-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--teal-300);
  letter-spacing: 0.04em;
}

/* Live demos (CSS “CGI” simulations) */
.live-demo {
  min-height: 180px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0a1628, #12304f);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.demo-top { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.demo-top i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: block;
}

.demo-grid { display: grid; grid-template-columns: 48px 1fr; gap: 0.65rem; min-height: 120px; }
.demo-side { background: rgba(20,184,166,0.15); border-radius: 8px; }
.demo-main { display: grid; gap: 0.45rem; align-content: start; }
.demo-main .bar {
  height: 10px;
  width: var(--w);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(20,184,166,0.7), rgba(34,211,238,0.35));
  animation: pulseBar 2.4s ease-in-out infinite;
}

@keyframes pulseBar {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.demo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; margin-top: 0.4rem; }
.demo-cards b {
  display: block;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  animation: rise 2.8s ease-in-out infinite;
}

.demo-cards b:nth-child(2) { animation-delay: 0.2s; }
.demo-cards b:nth-child(3) { animation-delay: 0.4s; }

@keyframes rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.demo-ui .ui-frame { display: grid; gap: 0.5rem; }
.ui-nav { height: 16px; border-radius: 6px; background: rgba(255,255,255,0.12); }
.ui-hero {
  height: 70px; border-radius: 10px;
  background: linear-gradient(120deg, rgba(20,184,166,0.45), rgba(34,211,238,0.2));
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.ui-rows span {
  display: block; height: 12px; margin-top: 0.4rem; border-radius: 6px;
  background: rgba(255,255,255,0.1); width: 90%;
}
.ui-rows span:nth-child(2) { width: 70%; }
.ui-rows span:nth-child(3) { width: 80%; }

.demo-mobile { display: grid; place-items: center; }
.phone {
  width: 92px; height: 160px; border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.25);
  background: #071525; padding: 8px; position: relative;
}
.phone-notch {
  width: 36px; height: 6px; border-radius: 6px;
  background: rgba(255,255,255,0.2); margin: 0 auto 8px;
}
.phone-screen span {
  display: block; height: 18px; margin-bottom: 6px; border-radius: 5px;
  background: linear-gradient(90deg, rgba(20,184,166,0.5), rgba(255,255,255,0.08));
  animation: pulseBar 2s ease-in-out infinite;
}

.demo-saas { display: grid; place-items: end center; min-height: 160px; }
.saas-chart { display: flex; align-items: end; gap: 0.45rem; height: 120px; }
.saas-chart i {
  width: 18px; height: var(--h); border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--teal-300), var(--teal-600));
  display: block;
  animation: rise 2.2s ease-in-out infinite;
}

.demo-brand {
  display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; justify-content: center;
  min-height: 160px;
}
.swatch { width: 48px; height: 48px; border-radius: 12px; }
.swatch.s1 { background: #071525; }
.swatch.s2 { background: #0d9488; }
.swatch.s3 { background: #22d3ee; }
.wordmark {
  width: 100%; text-align: center; font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(90deg, #5eead4, #22d3ee); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}

.demo-ai { display: grid; gap: 0.65rem; align-content: center; min-height: 160px; }
.ai-bubble {
  max-width: 85%; padding: 0.65rem 0.85rem; border-radius: 12px;
  font-size: 0.82rem; color: white;
}
.ai-bubble.left { background: rgba(255,255,255,0.1); }
.ai-bubble.right {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(13,148,136,0.7), rgba(34,211,238,0.4));
}
.ai-pulse {
  width: 12px; height: 12px; border-radius: 50%; background: var(--teal-400);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.demo-strategy .roadmap {
  display: grid; gap: 0.65rem; min-height: 140px; align-content: center;
}
.demo-strategy .roadmap div {
  height: 16px; border-radius: 8px;
  background: linear-gradient(90deg, rgba(20,184,166,0.55), rgba(255,255,255,0.08));
  width: 92%;
  animation: shimmer 3s linear infinite; background-size: 200% 100%;
}
.demo-strategy .roadmap div:nth-child(2) { width: 75%; }
.demo-strategy .roadmap div:nth-child(3) { width: 85%; }
.demo-strategy .roadmap div:nth-child(4) { width: 60%; }

.demo-cloud .nodes {
  min-height: 150px; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; place-items: center;
}
.demo-cloud .nodes i {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.35);
  display: block;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Chat widget */
#zyn-chat {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 180;
  font-family: var(--font);
}

#zyn-chat.tawk-active { display: none; }

.chat-launcher {
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-400));
  color: white;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.chat-launcher:hover { transform: scale(1.05); }

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 2rem));
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: all 0.28s var(--ease);
}

#zyn-chat.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.chat-head {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.chat-head strong { display: block; font-size: 1rem; }
.chat-head span { font-size: 0.82rem; opacity: 0.8; }

.chat-close {
  border: 0; background: rgba(255,255,255,0.12); color: white;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
}

.chat-body { padding: 0; display: flex; flex-direction: column; max-height: 420px; }
.chat-body p {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 0.85rem;
}

.chat-body .field { margin-bottom: 0.7rem; }
.chat-body .field input,
.chat-body .field textarea {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
}

.chat-body textarea { min-height: 80px; }

/* ZynVoss Info AI chat */
.zi-thread {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 220px;
  max-height: 280px;
  background: #f8fafc;
}
.zi-msg { display: flex; }
.zi-user { justify-content: flex-end; }
.zi-bot { justify-content: flex-start; }
.zi-bubble {
  max-width: 88%;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.zi-bot .zi-bubble {
  background: white;
  border: 1px solid var(--slate-200);
  color: var(--navy-900);
  border-bottom-left-radius: 4px;
}
.zi-user .zi-bubble {
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-400));
  color: white;
  border-bottom-right-radius: 4px;
}
.zi-compose {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-top: 1px solid var(--slate-200);
  background: white;
}
.zi-input {
  flex: 1;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
}
.zi-send { flex-shrink: 0; padding: 0.55rem 0.9rem !important; font-size: 0.85rem !important; }

/* FormSubmit form inside MSG chat */
.zi-form-wrap {
  padding: 0.75rem 0.85rem 0.9rem;
  border-top: 1px solid var(--slate-200);
  background: #fff;
  max-width: none;
  width: 100%;
}
.zi-form-wrap.container { margin: 0; padding-left: 0.85rem; padding-right: 0.85rem; }
.zi-formsubmit .form-group { margin-bottom: 0.55rem; }
.zi-formsubmit .form-row {
  display: flex;
  gap: 0.45rem;
}
.zi-formsubmit .form-row .col { flex: 1; min-width: 0; }
.zi-formsubmit .form-control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.88rem;
  background: #f8fafc;
  color: var(--navy-900);
}
.zi-formsubmit textarea.form-control {
  min-height: 96px;
  resize: vertical;
}
.zi-formsubmit .zi-submit {
  margin-top: 0.15rem;
  font-size: 0.9rem !important;
  padding: 0.65rem 1rem !important;
}
.zi-form-status {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--teal-700, #0f766e);
}
.chat-body .zi-thread { max-height: 140px; min-height: 72px; }

/* Fortune 500 award badge */
.award-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}
.award-badge-wrap span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.award-badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(3, 10, 20, 0.18));
}
.award-badge--footer {
  width: 56px;
  height: 56px;
  margin-top: 0.75rem;
  opacity: 0.95;
}
.award-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}
.award-inline img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.award-inline strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.award-inline span {
  display: block;
  color: var(--slate-600);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}
.founder-card .award-inline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.founder-card .award-inline strong { color: #fff; }
.founder-card .award-inline span { color: rgba(255, 255, 255, 0.7); }

/* Thank you */
.thanks-card {
  max-width: 560px;
  margin: 4rem auto;
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}

.thanks-card h1 { color: var(--navy-900); margin-bottom: 0.75rem; }
.thanks-card p { color: var(--slate-600); margin-bottom: 1.5rem; }

/* Project page progress */
.steps-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.steps-bar span {
  flex: 1;
  min-width: 100px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-600);
}

.steps-bar span.on {
  background: linear-gradient(135deg, rgba(13,148,136,0.15), rgba(34,211,238,0.18));
  color: #0f766e;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .modal-hero, .modal-columns { grid-template-columns: 1fr; }
  .grid-3, .process, .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .contact-info { position: static; }
  .hero-card { max-width: 420px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--slate-200);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav-cta { display: inline-flex; margin-top: 0.75rem; width: 100%; }
  .header-cta { display: none; }
  .grid-3, .grid-2, .process, .stats, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  #service-modal-body { padding: 0.25rem 1.1rem 1.25rem; }
}

/* ===== Intake product picker ===== */
.intake-hero h1 { margin-bottom: 0.5rem; }
.intake-section { padding-top: 2rem; }
.intake-shell { max-width: 720px; margin: 0 auto; }
.intake-card { width: 100%; }
.btn-block { width: 100%; justify-content: center; }
.product-fieldset { border: 0; padding: 0; margin: 0 0 1.25rem; }
.product-fieldset legend {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.product-fieldset .hint {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 0.85rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.product-option { cursor: pointer; display: block; }
.product-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  background: #fff;
  transition: 0.18s ease;
  min-height: 96px;
}
.product-card strong { color: var(--navy-900); font-size: 0.95rem; }
.product-card em { font-style: normal; color: var(--slate-600); font-size: 0.8rem; }
.product-ico {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--teal-600);
  margin-bottom: 0.2rem;
}
.product-option input:focus-visible + .product-card {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}
.product-option input:checked + .product-card,
.product-option:has(input:checked) .product-card {
  border-color: var(--teal-500);
  background: linear-gradient(145deg, rgba(13,148,136,0.08), rgba(34,211,238,0.1));
  box-shadow: 0 0 0 3px rgba(20,184,166,0.14);
}
.product-card-flagship {
  border-color: rgba(20,184,166,0.45);
  background: linear-gradient(145deg, rgba(7,21,37,0.04), rgba(20,184,166,0.08));
}
.consult-banner {
  margin: 0 0 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(20,184,166,0.35);
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(34,211,238,0.08));
}
.consult-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}
.consult-check input { margin-top: 0.25rem; accent-color: var(--teal-600); width: 18px; height: 18px; }
.consult-check strong { display: block; color: var(--navy-900); }
.consult-check em { font-style: normal; font-size: 0.88rem; color: var(--slate-600); }

/* ===== Flagship program ===== */
.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.flagship-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.flagship-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--slate-700);
}
.flagship-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 800;
}
.phone-shots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.65rem;
  perspective: 900px;
}
.phone-shot {
  margin: 0;
  width: min(32%, 160px);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(7, 21, 37, 0.12);
  box-shadow: 0 18px 40px rgba(3, 10, 20, 0.18);
  background: #0b1c33;
  transform: rotateY(6deg) translateY(8px);
}
.phone-shot-mid {
  width: min(38%, 190px);
  transform: rotateY(0deg) translateY(0) scale(1.06);
  z-index: 2;
  border-color: rgba(20, 184, 166, 0.45);
}
.phone-shot:last-child { transform: rotateY(-6deg) translateY(8px); }
.phone-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.phone-shot figcaption {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.35rem 0.55rem;
  background: rgba(7,21,37,0.92);
}

/* Discreet visitor counter */
.visitor-counter {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  opacity: 0.55;
  color: inherit;
}

@media (max-width: 900px) {
  .flagship-grid { grid-template-columns: 1fr; }
  .phone-shots { margin-top: 0.5rem; }
  .phone-shot, .phone-shot-mid, .phone-shot:last-child {
    transform: none;
    width: 30%;
  }
  .phone-shot-mid { width: 34%; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}



/* ==========================================================================
   ZynVoss Professional Design System v2 — uniform surfaces, color, a11y
   Additive only: normalizes cards/boxes without removing prior styles
   ========================================================================== */
:root {
  --bg-page: #f4f6f9;
  --bg-section: #eef2f6;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --surface-elevated: #ffffff;
  --border-soft: #e2e8f0;
  --border-strong: #cbd5e1;
  --text-primary: #0c2240;
  --text-body: #334155;
  --text-muted: #64748b;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: rgba(13, 148, 136, 0.10);
  --accent-ring: rgba(13, 148, 136, 0.18);
  --navy: #071525;
  --danger-bg: #fef2f2;
  --danger-text: #991b1b;
  --danger-border: #fecaca;
  --ok-bg: #ecfdf5;
  --ok-text: #065f46;
  --ok-border: #a7f3d0;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-card: 0 8px 28px rgba(3, 10, 20, 0.06);
  --shadow-card-hover: 0 16px 40px rgba(3, 10, 20, 0.12);
}

html { color-scheme: light; }

body {
  color: var(--text-body);
  background: var(--bg-page);
}

.ambient {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg-page) 50%, var(--bg-section) 100%);
}

/* Unified white cards / boxes */
.card,
.process-step,
.stat,
.form-card,
.thanks-card,
.unlock-card,
.value-item,
.field-block,
.award-inline,
.chat-panel,
.modal-dialog {
  background: var(--surface) !important;
  border-color: var(--border-soft) !important;
  color: var(--text-body);
  box-shadow: var(--shadow-card);
}

.card:hover,
.process-step:hover,
.stat:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(13, 148, 136, 0.35) !important;
}

/* Stats row: all same surface (Download demo was mismatched teal fill) */
.stat,
a.stat-link {
  background: var(--surface) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
a.stat-link {
  background: var(--surface) !important;
}
a.stat-link strong { color: var(--accent) !important; }
a.stat-link:hover {
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-card-hover);
}

.stat strong { color: var(--navy) !important; }
.stat span { color: var(--text-muted) !important; }

/* Process / service cards typography */
.card h3,
.process-step h3,
.section-header h2,
.prose h2,
.form-card h2,
.unlock-card h1 {
  color: var(--navy) !important;
}
.card p,
.process-step p,
.section-header p,
.prose p {
  color: var(--text-body) !important;
}

/* Soft accent icons only — no rainbow panels */
.card-icon {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

/* Tags / chips uniform teal-soft */
.tag {
  background: var(--accent-soft) !important;
  color: var(--accent-hover) !important;
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.chip {
  background: var(--surface) !important;
  border-color: var(--border-soft) !important;
  color: var(--text-primary) !important;
}
.chip:has(input:checked),
.chip.active,
.steps-bar span.on {
  background: var(--accent-soft) !important;
  border-color: var(--accent) !important;
  color: var(--accent-hover) !important;
  box-shadow: 0 0 0 3px var(--accent-ring);
}

/* Forms */
.field input,
.field select,
.field textarea,
.zi-formsubmit .form-control,
.zi-input,
.unlock-card input[type="password"] {
  background: var(--surface-muted) !important;
  border: 1px solid var(--border-soft) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-sm);
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.zi-formsubmit .form-control:focus,
.zi-input:focus,
.unlock-card input[type="password"]:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-ring) !important;
}

.field-block {
  background: linear-gradient(180deg, var(--surface-muted), var(--surface)) !important;
}

/* Buttons: consistent contrast (white text on accent) */
.btn-teal,
.contact-actions a.primary-contact {
  background: linear-gradient(135deg, var(--teal-600), #0f9f93) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700)) !important;
  color: #ffffff !important;
}
.btn-outline-dark {
  background: var(--surface) !important;
  border: 2px solid var(--navy-800) !important;
  color: var(--navy) !important;
}
.btn-outline-dark:hover {
  background: var(--navy) !important;
  color: #ffffff !important;
}

/* Contact list glass on navy only */
.contact-info,
.founder-card,
.cta-band,
.page-hero,
.hero {
  /* intentional dark brand bands — leave structure, unify inner chips */
}
.contact-list a,
.contact-list div {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Download unlock page alignment */
.unlock-card {
  max-width: 520px;
  margin: 2rem auto;
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.unlock-note {
  color: var(--text-body) !important;
  background: var(--surface-muted) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  text-align: center;
}
.unlock-note a { color: var(--accent) !important; font-weight: 600; }
.contact-actions a {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-soft);
  background: var(--surface) !important;
  color: var(--text-primary) !important;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-actions a:hover {
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}
.unlock-status.err {
  background: var(--danger-bg) !important;
  color: var(--danger-text) !important;
  border: 1px solid var(--danger-border) !important;
}
.unlock-status.ok {
  background: var(--ok-bg) !important;
  color: var(--ok-text) !important;
  border: 1px solid var(--ok-border) !important;
}

/* Section alternating surfaces — same family */
.section-alt {
  background: linear-gradient(180deg, #eef2f6 0%, #f4f6f9 100%) !important;
}

/* Work visual: single brand gradient (not multi-hue chaos) */
.work-visual {
  background: linear-gradient(135deg, #0c2240 0%, #0d9488 100%) !important;
}

/* Chat thread surface */
.zi-thread {
  background: var(--surface-muted) !important;
}
.zi-bot .zi-bubble {
  background: var(--surface) !important;
  border: 1px solid var(--border-soft) !important;
  color: var(--navy) !important;
}
.zi-user .zi-bubble {
  background: linear-gradient(135deg, var(--teal-600), #0f9f93) !important;
  color: #ffffff !important;
}

/* Prose lists (privacy/terms) */
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}
.prose li {
  margin-bottom: 0.45rem;
  color: var(--text-body);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose h2 {
  margin-top: 1.75rem;
}

/* Focus visibility for accessibility / compliance */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

/* Legal / compliance notice box */
.compliance-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--surface-muted);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.55;
}
.compliance-note strong { color: var(--navy); }

/* Footer legal links row */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}
.footer-legal a { color: rgba(255,255,255,0.72); }
.footer-legal a:hover { color: var(--teal-300); }

/* Ad slots: calm, non-clashing */
.ad-slot {
  background: transparent;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* Selection color brand-consistent */
::selection {
  background: rgba(13, 148, 136, 0.22);
  color: var(--navy);
}

/* Design system dark-surface exceptions */
.founder-card,
.contact-info,
.hero-card {
  /* keep dark brand panels */
}
.founder-card .award-inline {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}
.founder-card .award-inline strong { color: #fff !important; }
.founder-card .award-inline span { color: rgba(255,255,255,0.72) !important; }
.hero-card {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: var(--shadow-lg) !important;
  color: #fff !important;
}
.hero-card h3, .hero-card p { color: rgba(255,255,255,0.9) !important; }
.contact-info {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800)) !important;
  color: #fff !important;
  box-shadow: var(--shadow-lg) !important;
}
.contact-info h2, .contact-info strong { color: #fff !important; }
.contact-info > p { color: rgba(255,255,255,0.75) !important; }
