/* ============================================
   DUUTHA — Global Stylesheet
   File: css/duutha.css
   Fonts: Syne (headings) + Inter (body)
   ============================================ */

:root {
  --orange:       #E8440A;
  --orange-light: #FF5A1F;
  --orange-dark:  #C43308;
  --white:        #FFFFFF;
  --grey-50:      #F8F8F8;
  --grey-100:     #F0F0F0;
  --grey-200:     #E2E2E2;
  --grey-400:     #AAAAAA;
  --grey-500:     #888888;
  --grey-700:     #444444;
  --grey-900:     #1A1A1A;
  --black:        #0A0A0A;
  --header-h:     72px;
  --max-w:        1280px;
  --radius:       10px;
  --radius-lg:    18px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--grey-900); background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

/* Cursor: default browser */
.cursor, .cursor-follower { display: none; }

/* ── Typography ── */
/* Syne: brand moments only (logo, eyebrow, CTA labels, app names) */
/* Inter: all headings + body — clean, readable, professional */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--grey-900); font-weight: 700;
}
p { line-height: 1.75; color: var(--grey-500); font-weight: 400; }

/* ── Header ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-100); transition: height 0.3s, box-shadow 0.3s;
}
#site-header.scrolled { height: 60px; box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 56px; width: auto; object-fit: contain; }
.logo-name {
  font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.01em; text-transform: none; color: var(--orange);
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-size: 0.925rem; font-weight: 500; color: var(--grey-700);
  letter-spacing: 0.01em; transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--orange); }

.header-socials { display: flex; align-items: center; gap: 1rem; }
.header-socials a { display: flex; align-items: center; color: var(--grey-600, #666); transition: color 0.2s; }
.header-socials a:hover { color: var(--orange); }

/* ── Hamburger (mobile) ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--grey-700);
  border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-100); z-index: 99;
  flex-direction: column; padding: 1.5rem 6vw 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 500; color: var(--grey-700);
  padding: 0.85rem 0; border-bottom: 1px solid var(--grey-100);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); }

/* ── Footer ── */
#site-footer {
  background: #fff8f4;
  padding: 64px 6vw 40px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(232,68,10,0.12);
}
#site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232,68,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 3rem; padding-bottom: 3rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(232,68,10,0.12);
}
.footer-brand .logo-name { color: var(--orange); font-size: 1.5rem; }
.footer-tagline { font-size: 0.82rem; color: var(--grey-500); margin-top: 0.5rem; max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; gap: 3.5rem; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem; opacity: 0.7;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--grey-600, #555);
  margin-bottom: 0.55rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-socials { display: flex; gap: 0.75rem; align-items: center; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(232,68,10,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--grey-500); transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,68,10,0.06); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--grey-400);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 600;
  padding: 13px 24px; border-radius: var(--radius);
  letter-spacing: 0.03em; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,68,10,0.28);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--grey-700);
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 13px 24px; border-radius: var(--radius);
  border: 1.5px solid var(--grey-200); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.25rem;
}
.eyebrow::after { content: ''; display: inline-block; width: 32px; height: 1.5px; background: var(--orange); }
.eyebrow.no-line::after { display: none; }

/* ── Split Section ── */
/* Full viewport: left text, right image — the core layout pattern */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.split-section.flip { direction: rtl; }
.split-section.flip > * { direction: ltr; }

.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 7vw 80px; background: var(--white);
}
.split-section.alt .split-text { background: var(--grey-50); }
.split-section.dark .split-text { background: var(--grey-900); }
.split-section.dark h2 { color: var(--white); }
.split-section.dark p { color: rgba(255,255,255,0.55); }

.split-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; margin-bottom: 1.25rem; line-height: 1.15;
}
.split-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; max-width: 460px; }
.split-text .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.split-image { position: relative; overflow: hidden; background: transparent; border-radius: 20px 0 0 20px; padding: 2rem 0 2rem 2rem; }
.split-image img { position: absolute; inset: 2rem 0 2rem 2rem; width: calc(100% - 2rem); height: calc(100% - 4rem); object-fit: cover; object-position: top center; border-radius: 16px 0 0 16px; }
.split-section.flip .split-image { border-radius: 0 20px 20px 0; padding: 2rem 2rem 2rem 0; }
.split-section.flip .split-image img { inset: 2rem 2rem 2rem 0; width: calc(100% - 2rem); border-radius: 0 16px 16px 0; }

/* Placeholder */
.img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--grey-50); gap: 0.75rem; padding: 2.5rem; text-align: center;
  border-left: 1px solid var(--grey-100);
}
.placeholder-label {
  font-family: 'Syne', sans-serif; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-400);
}
.placeholder-filename {
  font-family: 'Inter', monospace; font-size: 0.78rem; color: var(--orange);
  background: rgba(232,68,10,0.07); padding: 5px 12px; border-radius: 6px;
  border: 1px solid rgba(232,68,10,0.18);
}
.placeholder-hint {
  font-size: 0.78rem; color: var(--grey-400); line-height: 1.5; max-width: 240px;
}

/* ── Feature card wrapper (product preview container) ── */
.feature-card {
  position: absolute; inset: 0;
  background: var(--grey-50);
  border-top: 3px solid var(--orange);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  overflow-y: auto;
}
.feature-card-watermark {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  display: block;
}

/* ── Product Preview Panels (homepage) ── */
.product-preview { display: flex; flex-direction: column; gap: 1.25rem; width: 100%; }

/* Shared skeleton lines */
.preview-line { height: 10px; border-radius: 4px; background: var(--grey-200); }
.preview-line--h2 { height: 14px; width: 70%; background: var(--grey-300, #d0d0d0); margin-bottom: 0.75rem; }
.preview-line--p { width: 100%; }
.preview-line--p.short { width: 60%; }

/* Doc preview (SUTRA) */
.preview-doc { background: var(--white); border: 1px solid var(--grey-200); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.preview-doc-header { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--grey-100); background: var(--grey-50); }
.preview-doc-title { font-size: 0.78rem; font-weight: 600; color: var(--grey-700); }
.preview-doc-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #2d9e5a; background: rgba(45,158,90,0.1); padding: 3px 8px; border-radius: 100px; }
.preview-doc-body { padding: 1.1rem; }
.preview-steps { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.85rem; }
.preview-step { display: flex; align-items: center; gap: 0.75rem; }
.preview-step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.preview-doc-footer { padding: 0.85rem 1.1rem; border-top: 1px solid var(--grey-100); display: flex; flex-wrap: wrap; gap: 0.4rem; }
.preview-tag { font-size: 0.65rem; font-weight: 600; color: var(--orange); background: rgba(232,68,10,0.08); border: 1px solid rgba(232,68,10,0.15); padding: 3px 8px; border-radius: 100px; }

/* Search preview (VAANI) */
.preview-search { background: var(--white); border: 1px solid var(--grey-200); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.preview-search-bar { display: flex; align-items: center; gap: 8px; padding: 0.75rem 1rem; background: var(--grey-50); border-bottom: 1px solid var(--grey-100); }
.preview-search-text { font-size: 0.78rem; color: var(--grey-500); font-style: italic; }
.preview-search-result { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--grey-100); transition: background 0.2s; }
.preview-search-result:last-child { border-bottom: none; }
.preview-search-result.rank1 { background: rgba(232,68,10,0.03); }
.preview-result-rank { font-size: 0.72rem; font-weight: 700; color: var(--orange); width: 16px; flex-shrink: 0; padding-top: 2px; }
.preview-result-rank.dim { color: var(--grey-400); }
.preview-result-body.dim .preview-result-title, .preview-result-body.dim .preview-result-url { opacity: 0.45; }
.preview-result-title { font-size: 0.8rem; font-weight: 600; color: var(--grey-800, #333); margin-bottom: 2px; }
.preview-result-url { font-size: 0.7rem; color: #1a7f4b; margin-bottom: 3px; }
.preview-result-stars { font-size: 0.7rem; color: #f5a623; }
.preview-result-stars span { color: var(--grey-500); font-size: 0.68rem; }
.preview-ai-badge { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--orange); background: rgba(232,68,10,0.07); border: 1px solid rgba(232,68,10,0.15); padding: 6px 12px; border-radius: 100px; }

/* Pitch preview (KATHA) */
.preview-pitch { background: var(--white); border: 1px solid var(--grey-200); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.preview-pitch-header { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.1rem; background: var(--grey-50); border-bottom: 1px solid var(--grey-100); }
.preview-pitch-label { font-size: 0.72rem; color: var(--grey-500); }
.preview-pitch-headline { font-size: 0.85rem; font-weight: 700; color: var(--grey-900); padding: 1rem 1.1rem 0.5rem; line-height: 1.35; }
.preview-pitch-sections { display: flex; gap: 0; border-bottom: 1px solid var(--grey-100); }
.preview-pitch-section { font-size: 0.7rem; font-weight: 500; color: var(--grey-500); padding: 0.5rem 1rem; border-bottom: 2px solid transparent; cursor: default; }
.preview-pitch-section.active { color: var(--orange); border-bottom-color: var(--orange); }
.preview-pitch-body { padding: 0.85rem 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.preview-pitch-outcomes { display: flex; flex-direction: column; gap: 0.4rem; padding: 0.75rem 1.1rem; border-top: 1px solid var(--grey-100); background: var(--grey-50); }
.preview-outcome { font-size: 0.75rem; color: var(--grey-600, #555); display: flex; align-items: center; gap: 6px; }
.preview-outcome-icon { color: #2d9e5a; font-weight: 700; }

/* Shared stat row */
.preview-stat-row { display: flex; gap: 1rem; }
.preview-stat { flex: 1; background: var(--grey-50); border: 1px solid var(--grey-100); border-radius: 8px; padding: 0.75rem; text-align: center; }
.preview-stat-val { display: block; font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--orange); line-height: 1; font-style: normal; }
.preview-stat-lbl { display: block; font-size: 0.65rem; color: var(--grey-500); margin-top: 3px; font-family: 'Inter', sans-serif; }



/* ── Hero (index) ── */
.hero-section {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: var(--header-h);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 7vw 60px 6vw; position: relative; overflow: hidden;
}
.hero-text::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at -10% 50%, rgba(232,68,10,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,68,10,0.08); border: 1px solid rgba(232,68,10,0.18);
  color: var(--orange); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 2rem; width: fit-content;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.6s 0.4s forwards; line-height: 1.05;
}
.hero-text h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1rem; line-height: 1.8; color: var(--grey-500); max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.6s 0.6s forwards;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s 0.7s forwards; }
.hero-image { position: relative; overflow: hidden; background: var(--grey-100); clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%); }
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ── Situations strip ── */
.situations-section {
  padding: 100px 6vw; background: var(--grey-900); position: relative; overflow: hidden;
}
.situations-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,68,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.situations-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 2; }
.situations-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; text-align: center; margin-bottom: 3rem; line-height: 1.1;
}
.situations-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden;
}
.situation-row {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem;
  padding: 1.2rem 1.75rem; background: rgba(255,255,255,0.02);
  align-items: center; transition: background 0.2s;
}
.situation-row:hover { background: rgba(232,68,10,0.07); }
.situation-text { font-size: 0.93rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.situation-app {
  font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
  background: rgba(232,68,10,0.12); padding: 4px 12px;
  border-radius: 100px; border: 1px solid rgba(232,68,10,0.25); white-space: nowrap;
}

/* ── About teaser (index) ── */
.about-teaser {
  padding: 100px 6vw; max-width: 820px; margin: 0 auto; text-align: center;
}
.about-teaser h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; margin-bottom: 1.75rem; line-height: 1.15; }
.about-teaser h2 em { color: var(--orange); font-style: normal; }
.about-teaser p { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.about-teaser .cta-row { margin-top: 2.5rem; justify-content: center; display: flex; }

/* ── Product page hero ── */
.product-hero {
  min-height: 60vh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 6vw 60px;
  background: var(--grey-50); position: relative; overflow: hidden;
}
.product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 100%, rgba(232,68,10,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.product-hero-inner { max-width: 780px; position: relative; z-index: 2; }
.app-label {
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.25rem; display: block;
}
.product-hero-inner h1 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.product-hero-inner p {
  font-size: 1.05rem; color: var(--grey-500); line-height: 1.75;
  max-width: 580px; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.6s 0.4s forwards;
}
.hero-cta-wrap { opacity: 0; animation: fadeUp 0.6s 0.6s forwards; }

/* ── CTA Strip ── */
.cta-strip { padding: 100px 6vw; background: var(--grey-900); text-align: center; }
.cta-strip h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.cta-strip p { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
.cta-strip .btn-primary { font-size: 1rem; padding: 16px 36px; }

/* ── About page ── */
.about-hero {
  padding: calc(var(--header-h) + 80px) 6vw 60px;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.about-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.6s 0.2s forwards; }
.about-hero h1 em { color: var(--orange); font-style: normal; }
.about-body { padding: 60px 6vw; max-width: 720px; margin: 0 auto; }
.about-body p { font-size: 1.08rem; color: var(--grey-500); line-height: 1.9; margin-bottom: 1.5rem; }
.about-body p strong { color: var(--grey-900); font-weight: 600; }
.apps-overview { padding: 80px 6vw; background: var(--grey-50); }
.apps-overview-inner { max-width: 900px; margin: 0 auto; }
.apps-overview h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 2.5rem; line-height: 1.1; }
.app-row {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--grey-200); align-items: start;
}
.app-row:last-child { border-bottom: none; }
.app-row-name { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--orange); }
.app-row-type { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-400); margin-top: 4px; }
.app-row-desc { font-size: 0.95rem; color: var(--grey-500); line-height: 1.75; }
.app-row-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 0.85rem; font-weight: 500; margin-top: 0.75rem; transition: gap 0.2s; }
.app-row-link:hover { gap: 10px; }

/* ── Founder ── */
.founder-section { padding: 80px 6vw; }
.founder-inner { max-width: 900px; margin: 0 auto; }
.founder-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); padding: 3rem; box-shadow: 0 4px 32px rgba(0,0,0,0.05); }
.founder-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2rem; margin-bottom: 2.5rem; }
.founder-stat { border-left: 3px solid var(--orange); padding-left: 1rem; }
.founder-stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--grey-900); line-height: 1; }
.founder-stat-label { font-size: 0.82rem; color: var(--grey-500); margin-top: 0.25rem; line-height: 1.4; }
.founder-story { font-size: 0.95rem; color: var(--grey-500); line-height: 1.8; border-top: 1px solid var(--grey-100); padding-top: 2rem; margin-top: 0.5rem; }

/* ── Contact ── */
.contact-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; padding-top: var(--header-h); }
.contact-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 6vw; background: var(--grey-50); position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 0% 50%, rgba(232,68,10,0.05) 0%, transparent 65%); pointer-events: none; }
.contact-left h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; opacity: 0; animation: fadeUp 0.6s 0.2s forwards; position: relative; }
.contact-left > p { font-size: 0.95rem; color: var(--grey-500); line-height: 1.75; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.6s 0.4s forwards; position: relative; }
.contact-info { opacity: 0; animation: fadeUp 0.6s 0.5s forwards; position: relative; }
.contact-info-item { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; }
.contact-info-icon { width: 38px; height: 38px; background: rgba(232,68,10,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-info-text { font-size: 0.88rem; color: var(--grey-700); }
.contact-info-text a { color: var(--orange); font-weight: 500; }
.app-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; }
.app-chip { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(232,68,10,0.08); border: 1px solid rgba(232,68,10,0.2); padding: 5px 12px; border-radius: 100px; transition: all 0.2s; }
.app-chip:hover { background: var(--orange); color: var(--white); }
.contact-right { display: flex; align-items: center; justify-content: center; padding: 80px 6vw; background: var(--white); }
.contact-form-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.06); width: 100%; max-width: 480px; opacity: 0; animation: fadeUp 0.6s 0.3s forwards; }
.contact-form-card--tally { padding: 1.5rem; max-width: 520px; }
.contact-form-card--tally iframe { display: block; border: none; width: 100%; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.78rem; font-weight: 500; color: var(--grey-700); }
.form-field input, .form-field textarea, .form-field select { padding: 11px 14px; border: 1.5px solid var(--grey-200); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--grey-900); background: var(--white); outline: none; resize: none; transition: border-color 0.2s; appearance: none; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,68,10,0.08); }
.form-field textarea { min-height: 110px; }
.form-submit { display: flex; justify-content: flex-end; margin-top: 0.25rem; }
.success-msg { display: none; text-align: center; padding: 1.5rem; color: #2d9e5a; font-weight: 500; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split-section, .hero-section, .contact-page { grid-template-columns: 1fr; }
  .split-section.flip { direction: ltr; }
  .split-image, .hero-image { min-height: 55vw; }
  .split-text { padding: 60px 6vw; }
  .hero-text { padding: 60px 6vw 40px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-socials { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .app-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .situations-grid { font-size: 0.85rem; }
  .situation-row { padding: 1rem 1.25rem; gap: 1rem; }
}

/* ── 404 Page ── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: var(--header-h) 5vw 5vw;
}
.error-inner { text-align: center; max-width: 520px; }
.error-code {
  font-family: 'Syne', sans-serif; font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800; color: var(--grey-100); line-height: 1; margin-bottom: 1rem;
}
.error-inner h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.error-inner p { color: var(--grey-500); margin-bottom: 2.5rem; }
.error-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.error-nav { display: flex; gap: 1.25rem; align-items: center; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: var(--grey-400); }
.error-nav a { color: var(--grey-700); text-decoration: none; font-weight: 500; }
.error-nav a:hover { color: var(--orange); }

/* ── FAQ Accordion (product pages + pricing) ── */
.pricing-faq, section.pricing-faq {
  max-width: 780px; margin: 0 auto; padding: 0 6vw 100px;
  text-align: center;
}
.pricing-faq h2 { display: none; }
.faq-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 2.5rem; display: block;
}
.faq-item { border-bottom: 1px solid var(--grey-100); padding: 1.5rem 0; text-align: left; }
.faq-item:first-of-type { border-top: 1px solid var(--grey-100); }
.faq-q {
  font-size: 0.975rem; font-weight: 600; color: var(--grey-900);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; user-select: none;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; color: var(--orange); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: 0.9rem; color: var(--grey-500); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding-top: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 0.85rem; }
