@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Syne:wght@700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #080808;
  --surface:  #111111;
  --surface2: #191919;
  --border:   #202020;
  --border2:  #2c2c2c;
  --text:     #f0ece5;
  --muted:    #666060;
  --muted2:   #999390;
  --accent:   #ff4b1f;
  --accent2:  #ffaa00;
  --gold:     #c9a96e;
  --green:    #22c55e;
  --glow:     rgba(255,75,31,0.08);
  --radius:   20px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NOISE ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; opacity: 0.7;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
#nav.scrolled {
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 16px 56px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted2);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.22s;
}
.nav-cta:hover { background: #e03d10; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,75,31,0.28); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE NAV ── */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 590;
  background: var(--bg);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 12px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'Instrument Serif', serif;
  font-size: 44px; line-height: 1.2;
  color: var(--text);
  transition: color 0.2s;
  text-align: center;
}
#mobile-nav a:hover { color: var(--accent); }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.heading {
  font-family: 'Instrument Serif', serif;
  line-height: 1.02; letter-spacing: -0.025em;
}
.h1 { font-size: clamp(52px, 7.5vw, 108px); }
.h2 { font-size: clamp(36px, 5vw, 68px); }
.h3 { font-size: clamp(28px, 3.5vw, 44px); }
.subtext {
  font-size: 17px; color: var(--muted2); line-height: 1.75; font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: all 0.22s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e03d10; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,75,31,0.3); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: #d4b57a; transform: translateY(-2px); }

/* ── PLAYSTORE BUTTON ── */
.playstore-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border2);
  padding: 14px 28px; border-radius: 16px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s;
}
.playstore-btn:hover { border-color: var(--accent); background: var(--surface2); transform: translateY(-2px); }
.playstore-btn .ps-icon { font-size: 28px; line-height: 1; }
.playstore-btn .ps-text small { display: block; font-size: 10px; color: var(--muted2); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.playstore-btn .ps-text strong { font-size: 17px; font-weight: 600; }

/* ── SECTION PADDING ── */
.section { padding: 120px 56px; }
.section-sm { padding: 80px 56px; }
.section-center { text-align: center; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  padding: 160px 56px 100px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(255,75,31,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(201,169,110,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--muted2);
  margin-bottom: 36px; width: fit-content;
  opacity: 0; animation: fadeUp 0.7s 0.1s forwards;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.hero-headline {
  opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
  max-width: 900px; margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  max-width: 500px; margin-bottom: 56px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}
.hero-social-proof {
  margin-top: 80px;
  display: flex; align-items: center; gap: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.social-proof-text { font-size: 13px; color: var(--muted2); line-height: 1.5; }
.social-proof-text strong { color: var(--text); font-weight: 600; }

/* FLOATING MATCH CARDS */
.hero-cards {
  position: absolute; right: 56px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px;
  opacity: 0; animation: fadeLeft 0.9s 0.8s forwards;
}
.match-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px; padding: 20px 24px; width: 290px;
  position: relative; overflow: hidden;
}
.match-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.mc-users { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mc-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.mc-avatar.overlap { margin-left: -10px; }
.mc-info { flex: 1; }
.mc-name { font-size: 13px; font-weight: 600; }
.mc-loc { font-size: 11px; color: var(--muted2); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.mc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,75,31,0.1); border: 1px solid rgba(255,75,31,0.2);
  color: var(--accent); font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
}
.mc-time { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* STATS STRIP */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text);
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 12px; color: var(--muted2); margin-top: 6px; letter-spacing: 0.04em; }

/* HOW IT WORKS */
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 72px;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.step-card {
  background: var(--surface); padding: 52px 44px;
  transition: background 0.3s; position: relative;
}
.step-card:hover { background: var(--surface2); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 80px; font-weight: 800;
  color: var(--border2); line-height: 1;
  margin-bottom: 24px; transition: color 0.3s;
  letter-spacing: -0.04em;
}
.step-card:hover .step-num { color: rgba(255,75,31,0.18); }
.step-emoji { font-size: 34px; margin-bottom: 16px; }
.step-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--muted2); line-height: 1.75; }

/* CATEGORIES */
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 72px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 100%, var(--glow), transparent 65%);
  opacity: 0; transition: opacity 0.35s;
}
.cat-card:hover { border-color: rgba(255,75,31,0.25); transform: translateY(-4px); }
.cat-card:hover::after { opacity: 1; }
.cat-emoji { font-size: 38px; margin-bottom: 16px; }
.cat-name { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.cat-desc { font-size: 13px; color: var(--muted2); line-height: 1.65; }
.cat-tag {
  display: inline-block; margin-top: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-soft);
  padding: 3px 10px; border-radius: 100px;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 72px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.testi-stars { color: var(--accent2); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-text {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 20px; line-height: 1.55;
  color: var(--text); margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.testi-name { font-size: 15px; font-weight: 600; }
.testi-city { font-size: 12px; color: var(--muted2); }

/* WAITLIST SECTION */
.waitlist-section {
  padding: 120px 56px;
  background: var(--surface);
  text-align: center; position: relative; overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,75,31,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.waitlist-form {
  display: flex; gap: 0; max-width: 480px; margin: 48px auto 0;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 100px; padding: 6px 6px 6px 24px;
  position: relative;
}
.waitlist-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form button {
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.waitlist-form button:hover { background: #e03d10; }
.waitlist-count { font-size: 13px; color: var(--muted2); margin-top: 16px; }
.waitlist-count strong { color: var(--text); }

/* ═══════════════════════════════════════
   FEATURES PAGE
═══════════════════════════════════════ */
.features-page-hero {
  padding: 160px 56px 80px;
  border-bottom: 1px solid var(--border);
}
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 2px;
  background: var(--border);
  margin: 0;
}
.feat-block {
  background: var(--bg);
  padding: 56px 48px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feat-block:hover { background: var(--surface); }
.feat-block.wide { grid-column: span 2; }
.feat-block.tall { grid-row: span 2; }
.feat-block::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.4s ease;
}
.feat-block:hover::after { width: 100%; }
.feat-icon {
  width: 56px; height: 56px;
  background: rgba(255,75,31,0.1);
  border: 1px solid rgba(255,75,31,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 28px;
}
.feat-title { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.feat-desc { font-size: 15px; color: var(--muted2); line-height: 1.75; }
.feat-badge {
  display: inline-block; margin-top: 18px;
  background: var(--gold-soft);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}

/* COMPARE TABLE */
.compare-wrap { padding: 100px 56px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  margin-top: 60px;
}
.compare-table thead { background: var(--surface); }
.compare-table th {
  padding: 22px 28px; text-align: left;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
}
.compare-table th.hl { background: rgba(255,75,31,0.07); color: var(--accent); }
.compare-table td {
  padding: 18px 28px; font-size: 14px; color: var(--muted2);
  border-bottom: 1px solid var(--border);
}
.compare-table td.hl { background: rgba(255,75,31,0.04); color: var(--text); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.ck { color: var(--green); font-size: 18px; }
.cx { color: #ef4444; font-size: 18px; }

/* ═══════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════ */
.pricing-page-hero {
  padding: 160px 56px 80px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-cards-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 880px; margin: 0 auto;
  padding: 80px 56px 100px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px; padding: 48px 40px;
  position: relative; transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(255,75,31,0.06), var(--surface));
}
.price-card.featured::before {
  content: '⭐ Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 6px 18px; border-radius: 100px; white-space: nowrap;
}
.plan-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted2); margin-bottom: 20px;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 68px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.plan-price small { font-size: 28px; font-weight: 400; }
.plan-period { font-size: 14px; color: var(--muted2); margin-bottom: 36px; }
.plan-feats { margin-bottom: 40px; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.plan-feats li:last-child { border-bottom: none; }
.plan-feats li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-feats li.off { color: var(--muted); }
.plan-feats li.off::before { content: '○'; color: var(--border2); }
.plan-btn-wrap { width: 100%; }
.plan-btn-wrap .btn { width: 100%; justify-content: center; }
.payment-note { text-align: center; padding: 0 56px 80px; color: var(--muted2); font-size: 14px; }
.payment-note strong { color: var(--text); }
.pay-logos { display: flex; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.pay-logo {
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 500; color: var(--muted2);
}

/* FAQ */
.faq-wrap { padding: 80px 56px 120px; max-width: 760px; margin: 0 auto; }
.faq-wrap .section-center { margin-bottom: 60px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 24px 0;
  font-size: 17px; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s; user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after { content: '+'; font-size: 24px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--muted2); line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  padding: 160px 56px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.about-text p {
  font-size: 17px; color: var(--muted2); line-height: 1.85;
  margin-bottom: 22px; font-weight: 300;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,75,31,0.12), transparent 60%);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.value-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
}
.value-card:hover { background: var(--surface); border-color: rgba(255,75,31,0.2); }
.value-num {
  font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--border2); margin-bottom: 20px; letter-spacing: -0.04em;
}
.value-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted2); line-height: 1.75; }

/* FOUNDER */
.founder-section { padding: 100px 56px; background: var(--surface); }
.founder-card {
  max-width: 640px; margin: 60px auto 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 28px; padding: 56px;
  text-align: center;
}
.founder-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--accent);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.founder-name { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.founder-role { font-size: 13px; color: var(--muted2); letter-spacing: 0.06em; margin-bottom: 20px; }
.founder-bio { font-size: 16px; color: var(--muted2); line-height: 1.75; }

/* ═══════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════ */
.blog-page-hero {
  padding: 160px 56px 80px;
  border-bottom: 1px solid var(--border);
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 60px 56px 120px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.blog-card:hover { border-color: rgba(255,75,31,0.25); transform: translateY(-5px); }
.blog-thumb {
  height: 200px; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative;
}
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.85));
}
.blog-body { padding: 28px 28px 32px; }
.blog-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.blog-title { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--muted2); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  min-height: calc(100vh - 80px);
}
.contact-left {
  padding: 100px 56px;
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.contact-left .subtext { margin-bottom: 52px; max-width: 380px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.c-link {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; transition: all 0.25s;
}
.c-link:hover { border-color: var(--accent); background: rgba(255,75,31,0.04); }
.c-link-icon { font-size: 22px; flex-shrink: 0; }
.c-link-label { font-size: 12px; color: var(--muted2); margin-bottom: 2px; }
.c-link-val { font-size: 15px; font-weight: 500; }
.contact-right { padding: 100px 56px; }
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 700; margin-bottom: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--muted2); margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--surface2); }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success .fs-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--muted2); font-size: 16px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 72px 56px 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--muted2); line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 14px; color: var(--muted2); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 56px;
  padding: 24px 56px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted2);
}
.footer-bottom a { color: var(--muted2); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 24px; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
@keyframes float { 0%,100%{transform:translateY(-50%) translateY(0);} 50%{transform:translateY(-50%) translateY(-10px);} }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1100px){
  .hero-cards{display:none;}
  .cats-grid{grid-template-columns:repeat(2,1fr);}
  footer{grid-template-columns:1fr 1fr;}
  .features-bento{grid-template-columns:1fr 1fr;}
  .feat-block.wide{grid-column:span 1;}
}
@media(max-width:768px){
  #nav{padding:18px 24px;}
  #nav.scrolled{padding:14px 24px;}
  .nav-links,.nav-cta{display:none;}
  .hamburger{display:flex;}
  .section{padding:80px 24px;}
  .section-sm{padding:60px 24px;}
  .hero{padding:120px 24px 80px;}
  .stats-strip{grid-template-columns:repeat(2,1fr);}
  .stat-item:nth-child(2){border-right:none;}
  .steps-row{grid-template-columns:1fr;}
  .cats-grid{grid-template-columns:1fr 1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .waitlist-section{padding:80px 24px;}
  .waitlist-form{flex-direction:column;border-radius:16px;padding:12px;}
  .waitlist-form button{border-radius:12px;padding:14px;}
  .features-page-hero{padding:120px 24px 60px;}
  .features-bento{grid-template-columns:1fr;}
  .feat-block.wide,.feat-block.tall{grid-column:auto;grid-row:auto;}
  .compare-wrap{padding:60px 24px;}
  .compare-table{min-width:560px;}
  .compare-wrap .table-scroll{overflow-x:auto;}
  .pricing-page-hero{padding:120px 24px 60px;}
  .pricing-cards-wrap{grid-template-columns:1fr;padding:40px 24px 80px;}
  .payment-note{padding:0 24px 60px;}
  .faq-wrap{padding:60px 24px 80px;}
  .about-hero{grid-template-columns:1fr;padding:120px 24px 60px;gap:40px;}
  .about-visual{display:none;}
  .values-grid{grid-template-columns:1fr;}
  .founder-section{padding:80px 24px;}
  .blog-page-hero{padding:120px 24px 60px;}
  .blog-grid{grid-template-columns:1fr;padding:40px 24px 80px;}
  .contact-layout{grid-template-columns:1fr;}
  .contact-left{border-right:none;border-bottom:1px solid var(--border);padding:80px 24px 60px;}
  .contact-right{padding:60px 24px 80px;}
  .form-row{grid-template-columns:1fr;}
  footer{grid-template-columns:1fr;padding:60px 24px 0;}
  .footer-bottom{flex-direction:column;gap:16px;padding:24px;text-align:center;}
  .hero-social-proof{flex-direction:column;align-items:flex-start;gap:12px;}
}
