/* ==========================================================================
   FiveZen.io — Landing Page Stylesheet
   Design tokens: deep tech blue + clean white + dark slate grey
   Type: Bricolage Grotesque (display) / Manrope (body) / Space Mono (utility)
   ========================================================================== */

:root {
  /* ---- Color: named tokens ---- */
  --ink:        #0B1220;   /* near-black navy — headings, primary text   */
  --navy-deep:  #0A1330;   /* deepest navy — final CTA band              */
  --blue:       #0F52E8;   /* primary tech blue — brand, CTAs, links     */
  --blue-light: #4E8CFF;   /* lighter blue — gradients, glows            */
  --sky:        #EAF1FF;   /* pale blue tint — badges, alt backgrounds   */
  --mist:       #F6F8FB;   /* soft off-white — alternating section bg   */
  --grey-700:   #4B5468;   /* body text grey                             */
  --grey-400:   #6B7386;   /* muted / secondary text (AA on white)       */
  --line:       #E4E9F2;   /* borders & dividers                         */
  --white:      #FFFFFF;
  --gold:       #F5A524;   /* literal star-rating gold, used sparingly   */

  /* ---- Gradients ---- */
  --gradient-brand: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 65%, #0B3FC0 100%);
  --gradient-dark:  linear-gradient(135deg, var(--navy-deep) 0%, #123B9E 100%);

  /* ---- Type ---- */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', 'SFMono-Regular', Menlo, monospace;

  /* ---- Spacing scale (4px base) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* ---- Radius ---- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;

  /* ---- Shadows (blue-tinted, not flat black) ---- */
  --shadow-sm: 0 2px 10px rgba(15, 30, 70, 0.07);
  --shadow-md: 0 10px 28px rgba(15, 30, 70, 0.11);
  --shadow-lg: 0 30px 70px rgba(13, 45, 140, 0.20);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.8, 0.2, 1);
  --fast: 0.2s;
  --med: 0.35s;

  --header-h: 84px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-locked { overflow: hidden; }

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.5rem; top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top var(--fast) var(--ease);
}
.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 var(--space-4);
  display: inline-block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn:not(.btn-lg):not(.btn-sm) { padding: 0.85rem 1.5rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(15, 82, 232, 0.28);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 82, 232, 0.5), 0 0 25px rgba(78, 140, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}

.btn-invert {
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}

.btn-invert:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35), 0 0 35px rgba(78, 140, 255, 0.7);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { 
  height: 54px; 
  width: auto; 
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:not(.btn) { position: relative; padding: 0.3rem 0; }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transition: right var(--med) var(--ease);
}
.main-nav a:not(.btn):hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  padding: var(--space-9) 0 var(--space-9);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: var(--space-5);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: var(--space-7);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-700);
}
.hero-trust .icon { color: var(--blue); }

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-glow {
  position: absolute;
  inset: -15% -10%;
  background: radial-gradient(closest-side, rgba(15, 82, 232, 0.22), rgba(15, 82, 232, 0) 72%);
  filter: blur(30px);
  z-index: 0;
}

.photo-card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 82, 232, 0.28), var(--shadow-lg);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%; /* Reliable 3:2 aspect ratio guarantee across mobile */
  overflow: hidden;
}

@supports (aspect-ratio: 3 / 2) {
  .hero-slider {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 3 / 2;
  }
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  z-index: 1;
}

/* The active image sits on top at 100% opacity */
.hero-slider .slide.is-active {
  opacity: 1;
  transform: scale(1.03);
  z-index: 2;
}

/* The previous image stays at 100% underneath so you NEVER see through it */
.hero-slider .slide.is-prev {
  opacity: 1;
  z-index: 1;
}

.photo-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 0.65rem 1.1rem;
  background: rgba(10, 19, 48, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tap-fx {
  position: absolute;
  right: -6%;
  bottom: -9%;
  width: 60px;
  height: 60px;
  z-index: 2;
}
.tap-fx .ripple {
  position: absolute;
  left: 50%; top: 50%;
  width: 54px; height: 54px;
  margin-left: -27px; margin-top: -27px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: rippleScale 2.6s ease-out infinite;
}
.tap-fx .r2 { animation-delay: 0.7s; }
.tap-fx .r3 { animation-delay: 1.4s; }

.tap-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 54px; height: 54px;
  margin-left: -27px; margin-top: -27px;
  border-radius: 16px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tap-dot-icon {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes rippleScale {
  0%   { transform: scale(0.9); opacity: 0.55; }
  100% { transform: scale(2.5); opacity: 0; }
}

.review-toast {
  position: absolute;
  left: -6%;
  top: 6%;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  animation: floatToast 6s ease-in-out infinite;
}
.toast-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.06em; }
.toast-copy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2CC77A;
  box-shadow: 0 0 0 rgba(44,199,122,0.5);
  animation: pulseDot 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes floatToast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(44,199,122,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(44,199,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,199,122,0); }
}

/* ==========================================================================
   Section shells
   ========================================================================== */

.section { padding: var(--space-9) 0; }
.section-alt { background: var(--mist); }

.section-head {
  max-width: 62ch;
  margin-bottom: var(--space-8);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: var(--space-4);
}
.section-lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--grey-700);
}

/* ==========================================================================
   Advantage — comparison table
   ========================================================================== */

.table-scroll { 
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch; 
  padding: 1rem 0 2rem;
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.94rem;
}

.compare-table th, .compare-table td {
  text-align: left;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  transition: all var(--fast) var(--ease);
}

.compare-table thead th {
  border-bottom: 2px solid var(--line);
  padding-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.compare-table tbody th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  width: 22%;
}

.compare-basic {
  color: var(--grey-400);
  opacity: 0.65;
}

.compare-fivezen {
  background: rgba(15, 82, 232, 0.03);
  font-weight: 600;
  color: var(--ink);
  position: relative;
  width: 42%;
}

.compare-fivezen img { 
  height: 30px; 
  width: auto; 
}

.compare-table thead .compare-fivezen {
  background: rgba(15, 82, 232, 0.03);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  border-top: 3px solid var(--blue);
  border-left: 1px solid rgba(15, 82, 232, 0.1);
  border-right: 1px solid rgba(15, 82, 232, 0.1);
  box-shadow: 0 -10px 30px rgba(15, 82, 232, 0.05);
}

.compare-table tbody tr .compare-fivezen {
  border-left: 1px solid rgba(15, 82, 232, 0.1);
  border-right: 1px solid rgba(15, 82, 232, 0.1);
}

.compare-table tbody tr:last-child .compare-fivezen {
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  border-bottom: 1px solid rgba(15, 82, 232, 0.1);
  box-shadow: 0 10px 30px rgba(15, 82, 232, 0.05);
}

.compare-table tbody tr:hover th,
.compare-table tbody tr:hover .compare-basic {
  background: var(--mist);
  color: var(--ink);
  opacity: 1;
}

.compare-table tbody tr:hover .compare-fivezen {
  background: var(--sky);
  box-shadow: inset 0 0 0 1.5px var(--blue-light), 0 0 20px rgba(15, 82, 232, 0.15);
  border-left-color: transparent;
  border-right-color: transparent;
}

.cmp-icon {
  display: inline-flex;
  margin-right: 0.8rem;
  vertical-align: -4px;
}
.cmp-icon svg {
  width: 20px; 
  height: 20px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--fast) var(--ease);
}

.cmp-no svg { 
  stroke: #A0AABF;
}

.cmp-yes svg { 
  stroke: var(--blue); 
  filter: drop-shadow(0 2px 5px rgba(15, 82, 232, 0.45));
}

.compare-table tbody tr:hover .cmp-yes svg {
  transform: scale(1.15) translateY(-1px);
}

.table-hint {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 0.75rem;
}

/* ==========================================================================
   How it works — steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5) var(--space-5);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: 0 14px 35px rgba(15, 82, 232, 0.2), 0 0 25px rgba(78, 140, 255, 0.22);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(-4deg);
}

.step-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: transform var(--med) var(--ease);
}

.step-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 { 
  font-size: 1.25rem; 
  margin-bottom: var(--space-2); 
  letter-spacing: -0.02em; 
}

.step p { 
  line-height: 1.65; 
  font-size: 0.98rem; 
}

/* ==========================================================================
   Packages / Pricing
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5) var(--space-5);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 40px rgba(15, 82, 232, 0.22), 0 0 25px rgba(78, 140, 255, 0.25);
}

.package-card.is-popular {
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(15, 82, 232, 0.12);
}

.package-card.is-popular:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 48px rgba(15, 82, 232, 0.35), 0 0 35px rgba(78, 140, 255, 0.4);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: var(--space-5);
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.package-name {
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: var(--space-5);
}
.package-price .amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--grey-700);
  line-height: 1.5;
}
.package-features .cmp-icon { margin-top: 0.15rem; }

.package-card > .btn { width: 100%; }

.package-addon {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-7);
  align-items: center;
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-8);
}
.package-addon-copy h3 { font-size: 1.35rem; margin-bottom: var(--space-3); }
.package-addon-copy p { line-height: 1.65; }

.package-addon-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.package-addon-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(15, 82, 232, 0.22);
}

.package-addon-price .period {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--grey-400);
  margin-left: 2px;
}

.pricing-subtext {
  font-size: 0.88rem;
  color: var(--grey-400);
  margin: 0.35rem 0 1.25rem;
  line-height: 1.4;
  text-align: right;
}

.pricing-subtext .bundle-val {
  color: var(--blue);
  font-weight: 800;
}

/* ==========================================================================
   Proof — stats + founding partners
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: 0 14px 35px rgba(15, 82, 232, 0.2), 0 0 25px rgba(78, 140, 255, 0.25);
}

.stat-card-text:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 45px rgba(15, 82, 232, 0.35), 0 0 35px rgba(78, 140, 255, 0.35);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.stat-number-sm { font-size: 1.6rem; line-height: 1.2; }

.stat-label { font-size: 0.98rem; color: var(--ink); font-weight: 600; line-height: 1.5; margin-bottom: var(--space-3); }

.stat-source { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-400); }

.stat-card-text { background: var(--ink); border-color: var(--ink); }
.stat-card-text .stat-label { color: rgba(255,255,255,0.82); font-weight: 500; }
.stat-card-text .stat-number { color: var(--white); }

.founding {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.founding-copy h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}
.founding-copy p:not(.eyebrow) { margin-bottom: var(--space-5); line-height: 1.6; }

.founding-slots {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.founding-slot {
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sky);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.founding-slot p { color: var(--grey-400); font-style: italic; font-size: 0.95rem; margin-bottom: 0.5rem; }
.founding-slot-attr {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--grey-400);
  opacity: 0.75;
}

/* ==========================================================================
   Founder
   ========================================================================== */

.founder {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-8);
  align-items: center;
}

.founder-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.founder-badge svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: var(--space-4);
}
.founder-copy p {
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-size: 1.02rem;
}
.founder-sig {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-bottom: 0 !important;
}

.founder-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.founder-point {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}

.founder-point:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: 0 14px 35px rgba(15, 82, 232, 0.2), 0 0 25px rgba(78, 140, 255, 0.22);
}

.founder-point-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-point-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.founder-point h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.founder-point p {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FAQ | accordion
   ========================================================================== */

.faq-item[open] .faq-answer {
  animation: faqSlideDown var(--med) var(--ease) forwards;
  transform-origin: top;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--fast) var(--ease);
}
.faq-item[open],
.faq-item:hover { border-color: var(--blue); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--med) var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey-700);
}

.faq-note {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 0.92rem;
  color: var(--grey-400);
}
.faq-note a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */

.final-cta {
  background: var(--gradient-dark);
  padding: var(--space-9) 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
}

.eyebrow-light { color: var(--blue-light); }

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: var(--space-4);
}

.final-cta-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.final-cta-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: var(--space-5);
}
.final-cta-note a { text-decoration: underline; color: var(--white); }

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

.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: var(--space-8) 0 var(--space-5); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { padding-right: var(--space-6); }
.footer-logo { height: 54px; width: auto; margin-bottom: var(--space-4); filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
  font-weight: 700;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.92rem;
  margin-bottom: var(--space-3);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--white); }
.footer-lang { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: var(--space-2); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-5);
  font-size: 0.82rem;
}
.footer-disclaimer { max-width: 55ch; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto var(--space-6); order: -1; }
  .hero-copy { order: 1; }
  .founding { grid-template-columns: 1fr; }
  .founding-slots { order: -1; }
  .founder { grid-template-columns: 1fr; }
  .package-addon { grid-template-columns: 1fr; }
  .package-addon-price { align-items: flex-start; text-align: left; margin-top: var(--space-2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; margin-bottom: var(--space-4); }
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
    justify-content: center;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .nav-toggle { 
    display: flex; 
    position: absolute;
    right: 1.5rem;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease), visibility 0s linear var(--fast);
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
  }
  .main-nav a:not(.btn) { padding: 0.9rem 0.1rem; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 1rem; align-self: flex-start; }
}

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .table-hint { display: block; }
  .hero { padding: var(--space-7) 0; }
  .section, .final-cta { padding: var(--space-8) 0; }
  .founding { padding: var(--space-6); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-addon { padding: var(--space-6); }
  .faq-item summary { padding: var(--space-4); font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 var(--space-4) var(--space-4); }

  /* Hero adjustments for mobile screens */
  .hero-visual {
    max-width: 100%;
    margin-bottom: var(--space-6);
  }
  .tap-fx {
    right: 2%;
    bottom: -15px;
    transform: scale(0.85);
  }
  .review-toast {
    left: 2%;
    top: 10px;
    transform: scale(0.9);
  }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  
  /* Footer Mobile Centering */
  .footer-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  
  .footer-logo {
    margin: 0 auto var(--space-4) auto;
  }
  
  .footer-bottom { 
    flex-direction: column; 
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.setup-form {
  max-width: 540px;
  margin: var(--space-6) auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.setup-form input,
.setup-form select,
.setup-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}

.setup-form input::placeholder,
.setup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Subtle glow when hovering over an input field */
.setup-form input:hover,
.setup-form select:hover,
.setup-form textarea:hover {
  border-color: rgba(78, 140, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 16px rgba(78, 140, 255, 0.2);
}

/* Radiant glow when actively typing or focused */
.setup-form input:focus,
.setup-form select:focus,
.setup-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px rgba(78, 140, 255, 0.45), inset 0 0 8px rgba(78, 140, 255, 0.2);
}

/* Fix text color for dropdown options in standard browsers */
.setup-form select option {
  color: var(--ink);
  background-color: var(--white);
}
.setup-form .btn {
  width: 100%;
  margin-top: var(--space-2);
}

@media (max-width: 560px) {
  .form-row { 
    grid-template-columns: 1fr; 
    gap: 0;
  }
}

/* ==========================================================================
   Photography Feature Section (Glow & Swap Animation)
   ========================================================================== */
.photo-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  background: var(--mist);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
}

.photo-feature-images {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.photo-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(15, 82, 232, 0.5) 0%, rgba(78, 140, 255, 0.25) 45%, rgba(15, 82, 232, 0) 75%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.img-swap {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 75%;
  border-radius: var(--radius-md);
  border: 3px solid var(--white);
  box-shadow: 0 12px 35px rgba(15, 82, 232, 0.22), var(--shadow-lg);
  animation: photoSwap 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.img-1 { animation-delay: 0s; }
.img-2 { animation-delay: -5s; }

@keyframes photoSwap {
  0%, 35% {
    transform: translate(0, 0) scale(1);
    z-index: 2;
  }
  45% {
    transform: translate(35%, -10%) scale(0.9);
    z-index: 1;
  }
  50%, 85% {
    transform: translate(25%, 25%) scale(0.85);
    z-index: 1;
  }
  95% {
    transform: translate(-10%, 25%) scale(0.9);
    z-index: 2;
  }
  100% {
    transform: translate(0, 0) scale(1);
    z-index: 2;
  }
}

@media (max-width: 980px) {
  .photo-feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-6);
  }
  .photo-feature-images {
    max-width: 480px;
    margin: 0 auto;
  }
}