@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:       #FF6B4A;
  --primary-soft:  #FF8A80;
  --primary-light: #FFB199;
  --primary-pale:  #FFF0EC;
  --bg:            #F5F5F5;
  --surface:       #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #9E9E9E;
  --border:        #E5E7EB;
  --radius:        12px;
  --radius-lg:     24px;
  --radius-pill:   100px;
  --transition:    0.2s ease;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 4px 24px rgba(255,107,74,0.14);
  --shadow-lg:     0 12px 48px rgba(255,107,74,0.2);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a  { color: var(--primary); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }
img { display: block; max-width: 100%; height: auto; }

/* ─── NAVBAR ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img { width: 44px; height: 44px; }
.nav-logo .oo { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
  display: inline-block;
}
.nav-cta:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,74,0.38);
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,74,0.48);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  opacity: 1;
}

/* ─── LAYOUT ───────────────────────────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 100px 0; }
.section-sm  { padding: 64px 0; }

/* ─── SECTION HEADINGS ────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  max-width: 560px;
}
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(145deg, #FF6B4A 0%, #FF8A80 55%, #FFB199 100%);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
/* Organic blob shapes — mimics the Flutter WaveBackgroundPainter */
.hero::before {
  content: '';
  position: absolute;
  width: 820px; height: 820px;
  border-radius: 42% 58% 62% 38% / 46% 44% 56% 54%;
  background: rgba(255,255,255,0.08);
  top: -280px; right: -180px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 64% 36% 40% 60% / 60% 44% 56% 40%;
  background: rgba(255,255,255,0.07);
  bottom: -60px; left: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  flex: 1;
}
.hero-wordmark {
  font-size: 80px;
  font-weight: 800;
  color: white;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.hero-wordmark .oo { color: rgba(255,255,255,0.38); }
.hero-tagline {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap {
  position: relative;
  width: 260px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.22));
}
.phone-frame {
  width: 260px; height: 520px;
  background: rgba(255,255,255,0.16);
  border-radius: 44px;
  border: 3px solid rgba(255,255,255,0.45);
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 88px; height: 26px;
  background: rgba(255,255,255,0.22);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.phone-line {
  flex: 1; height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
}
.phone-line.short { flex: 0.6; }
.phone-post {
  width: 100%; height: 110px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
}
.phone-like-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.phone-like-pill {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.22);
}

/* Hero wave divider */
.hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg { display: block; width: 100%; }

/* ─── PROOF STRIP ──────────────────────────────────────────────── */
.strip {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 18px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.strip strong { color: var(--primary-soft); font-weight: 700; }

/* ─── FEATURES ─────────────────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: #555; line-height: 1.7; }

/* ─── MISSION ──────────────────────────────────────────────────── */
.mission { background: var(--surface); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}
.mission-text .pull-quote {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 4px solid var(--primary);
  margin-top: 32px;
}
.mission-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  /* Fallback if image doesn't load */
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--primary-light) 100%);
}
.mission-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── FOR-WHO SECTION ──────────────────────────────────────────── */
.for-who { background: var(--primary-pale); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.who-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.who-card:hover { transform: translateY(-3px); }
.who-emoji { font-size: 36px; margin-bottom: 14px; }
.who-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.who-card p  { font-size: 14px; color: #555; line-height: 1.65; }

/* ─── DOWNLOAD CTA ─────────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(160deg, #1A1A1A 0%, #2a2a2a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,0.18) 0%, transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.download-cta .section-title { color: white; position: relative; z-index: 1; }
.download-cta .section-sub   { color: rgba(255,255,255,0.65); position: relative; z-index: 1; }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 28px;
  color: white;
  transition: all 0.2s ease;
  min-width: 190px;
  cursor: pointer;
}
.store-badge:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,138,128,0.5);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.store-badge svg { flex-shrink: 0; }
.badge-text { text-align: left; }
.badge-sub  {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.badge-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.coming-soon-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.footer-logo .oo { color: var(--primary-soft); }
.footer-tagline  { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 6px; }
.footer-links    { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a  { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: white; opacity: 1; }
.footer-bottom   { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* ─── LEGAL PAGES ──────────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, #FF6B4A 0%, #FF8A80 100%);
  padding: 80px 24px 72px;
  text-align: center;
}
.legal-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.legal-hero p { font-size: 15px; color: rgba(255,255,255,0.8); }
.legal-content {
  max-width: 800px;
  margin: 64px auto 96px;
  padding: 0 24px;
  background: transparent;
}
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.legal-section:first-child h2 { border-top: none; padding-top: 0; }
.legal-section p, .legal-section li {
  font-size: 15px; color: #444; line-height: 1.8;
}
.legal-section ul, .legal-section ol { padding-left: 22px; margin-top: 10px; }
.legal-section li { margin-bottom: 6px; }
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}

/* ─── DOWNLOAD PAGE ────────────────────────────────────────────── */
.dl-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #FF6B4A 0%, #FF8A80 60%, #FFB199 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dl-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -250px; right: -150px;
}
.dl-hero::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -150px; left: -80px;
}
.dl-wordmark {
  font-size: 72px;
  font-weight: 800;
  color: white;
  letter-spacing: -2.5px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.dl-wordmark .oo { color: rgba(255,255,255,0.38); }
.dl-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin: 16px auto 56px;
  max-width: 400px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.dl-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 18px;
  padding: 16px 32px;
  color: white;
  transition: all 0.2s ease;
  min-width: 200px;
  backdrop-filter: blur(8px);
}
.dl-badge:hover {
  background: rgba(255,255,255,0.22);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}
.dl-badge svg { flex-shrink: 0; }
.dl-badge .badge-text { text-align: left; }
.dl-badge .badge-sub  {
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.6px;
  display: block; margin-bottom: 3px; line-height: 1;
}
.dl-badge .badge-name {
  font-size: 20px; font-weight: 800; display: block; line-height: 1;
}
.dl-note {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

/* ─── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #FF6B4A 0%, #FF8A80 100%);
  padding: 80px 24px 96px;
  text-align: center;
  position: relative;
}
.contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.contact-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}
.contact-wrap {
  max-width: 640px;
  margin: -48px auto 0;
  padding: 0 24px 96px;
  position: relative;
  z-index: 2;
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Honeypot — hide from humans */
.form-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 16px; }
.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-msg.success {
  background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; display: block;
}
.form-msg.error {
  background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block;
}

/* ─── 404 ──────────────────────────────────────────────────────── */
.not-found {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.not-found .code    { font-size: 96px; font-weight: 800; color: var(--primary); letter-spacing: -4px; line-height: 1; }
.not-found h2       { font-size: 24px; font-weight: 700; margin: 12px 0 8px; }
.not-found p        { color: #555; margin-bottom: 32px; }

/* ─── OO WORDMARK GAP FIX ─────────────────────────────────────── */
/* Pulls coloured "oo" tight against "circ" on every wordmark       */
.nav-logo .oo,
.footer-logo .oo,
.hero-wordmark .oo,
.dl-wordmark .oo { margin-left: -2px; }

/* ─── HERO PHONE (app mockup) ──────────────────────────────────── */
.phone-hero {
  position: relative;
  width: 310px;
  flex-shrink: 0;
}
/* Floating notification pills (kept for future use) */
.ph-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  white-space: nowrap;
  z-index: 3;
  animation: ph-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
.ph-float-top    { top: 24px;  right: -58px; animation-delay: 0.4s; }
.ph-float-bottom { bottom: 72px; left: -58px; animation-delay: 0.65s; }
@keyframes ph-pop {
  from { opacity: 0; transform: scale(0.8) translateY(8px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);   }
}
.ph-float-icon { font-size: 16px; }
/* Phone hardware shell */
.phone-3d {
  width: 310px;
  background: #181818;
  border-radius: 44px;
  border: 10px solid #242424;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.35),
    0 12px 32px rgba(0,0,0,0.20),
    0  4px 12px rgba(255,107,74,0.18),
    inset 0 0 0 1px #3c3c3c,
    inset 0 1px 0 0 #555;
  overflow: hidden;
  position: relative;
}
.phone-btn {
  position: absolute;
  background: #2c2c2c;
  border-radius: 3px;
}
.phone-btn-v1 { width: 3px; height: 30px; top: 94px;  left: -3px; }
.phone-btn-v2 { width: 3px; height: 30px; top: 134px; left: -3px; }
.phone-btn-pw { width: 3px; height: 54px; top: 112px; right: -3px; }
/* Screen */
.ph-screen {
  background: #181818;
}
/* Real app screenshot fills the screen */
.ph-screenshot {
  width: 100%;
  height: auto;
  display: block;
}
/* Dynamic Island */
.ph-island {
  width: 100px; height: 28px;
  background: #181818;
  border-radius: 100px;
  margin: 10px auto 0;
  flex-shrink: 0;
}
/* Status bar */
.ph-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  background: white;
  flex-shrink: 0;
}
/* App header */
.ph-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 10px;
  border-bottom: 1px solid #ebebeb;
  background: white;
  flex-shrink: 0;
}
.ph-wordmark {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1;
}
.ph-wordmark .oo { color: var(--primary); margin-left: -1px; }
.ph-hdr-icons    { display: flex; gap: 12px; font-size: 16px; }
/* Stories */
.ph-stories {
  display: flex;
  gap: 14px;
  padding: 10px 16px;
  background: white;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
  flex-shrink: 0;
}
.ph-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ph-ring-wrap {
  padding: 2.5px;
  border-radius: 50%;
}
.ph-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
}
.ph-story-name {
  font-size: 8px;
  color: #888;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Feed */
.ph-feed {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  gap: 8px;
  padding: 8px;
}
/* Post card */
.ph-post {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ph-post-header { display: flex; align-items: center; gap: 8px; padding: 8px 10px 6px; }
.ph-av-sm {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.ph-post-meta  { display: flex; flex-direction: column; gap: 1px; }
.ph-username   { font-size: 11px; font-weight: 700; color: #1A1A1A; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.ph-circle-tag { font-size: 9px;  color: #9E9E9E;  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.ph-post-img {
  width: 100%; height: 114px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ph-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  font-size: 9px; font-weight: 600; color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.38), transparent);
  padding: 18px 8px 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ph-post-footer {
  display: flex;
  gap: 10px;
  padding: 6px 10px 8px;
  font-size: 10px;
  color: #666;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ph-post-footer b { color: #1A1A1A; font-weight: 700; }
/* Bottom nav */
.ph-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 8px 14px;
  background: white;
  border-top: 1px solid #ebebeb;
  flex-shrink: 0;
}
.ph-nav-icon { font-size: 18px; }
.ph-nav-icon.active { position: relative; }
.ph-nav-icon.active::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  margin: 2px auto 0;
}
.ph-nav-fab {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  box-shadow: 0 4px 12px rgba(255,107,74,0.4);
  color: white; font-weight: 300;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content          { grid-template-columns: 1fr; padding: 80px 24px 56px; text-align: center; }
  .hero-wordmark         { font-size: 64px; }
  .hero-tagline          { font-size: 24px; }
  .hero-sub              { margin-left: auto; margin-right: auto; }
  .hero-actions          { justify-content: center; }
  .hero-visual           { display: none; }
  .features-grid         { grid-template-columns: 1fr; }
  .mission-grid          { grid-template-columns: 1fr; gap: 40px; }
  .mission-photo         { order: -1; aspect-ratio: 16/9; }
  .who-grid              { grid-template-columns: 1fr 1fr; }
  .section-title         { font-size: 32px; }
  .nav-links             { display: none; }
  .contact-card          { padding: 32px 24px; }
  .form-row              { grid-template-columns: 1fr; }
  .footer-top            { flex-direction: column; gap: 24px; }
}
@media (max-width: 520px) {
  .hero-wordmark         { font-size: 52px; }
  .dl-wordmark           { font-size: 52px; }
  .who-grid              { grid-template-columns: 1fr; }
  .store-badges, .dl-badges { flex-direction: column; align-items: center; }
  .section-title         { font-size: 28px; }
}
