/* =====================================================
   StitchWIP Studio — Shared Stylesheet
   ===================================================== */

:root {
  --teal: #2EB9CF;
  --teal-2: #3DD4C4;
  --teal-dark: #1A8FA3;
  --teal-deep: #0F6B7A;
  --teal-bg: #EFF9FB;
  --teal-border: #C8E9EE;

  --white: #FFFFFF;
  --cream: #FAFAF8;
  --text: #0F172A;
  --muted: #64748B;
  --light: #94A3B8;
  --surface: #F8FAFC;
  --border: #E2E8F0;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --shadow: 0 4px 24px rgba(46, 185, 207, 0.12);
  --shadow-md: 0 8px 40px rgba(46, 185, 207, 0.18);
  --shadow-card: 0 2px 12px rgba(15, 23, 42, 0.06);

  --max-w: 1160px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 4px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: 12px;
  color: var(--text);
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-spacer { flex: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(46, 185, 207, 0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(46, 185, 207, 0.4);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-bg);
}
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text);
  margin-left: 8px;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 16px; font-size: 0.95rem; }
.nav-mobile .btn { width: 100%; margin-top: 8px; justify-content: center; padding: 13px; }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--teal-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(46,185,207,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(46, 185, 207, 0.1);
  border: 1px solid rgba(46, 185, 207, 0.22);
  border-radius: 99px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.0;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text) 20%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  background: var(--text);
  color: white;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-align: left;
}
.store-btn:hover { background: #1e293b; transform: translateY(-1px); }
.store-btn-icon { font-size: 1.5rem; line-height: 1; }
.store-btn-sub { font-size: 0.68rem; font-weight: 500; opacity: 0.7; display: block; line-height: 1; margin-bottom: 2px; }
.store-btn-main { font-size: 0.95rem; font-weight: 700; display: block; line-height: 1; }
.android-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-screenshots {
  max-width: 800px;
  margin: 0 auto;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.screenshot-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-bg) 0%, rgba(61,212,196,0.12) 100%);
  border: 2px dashed var(--teal-border);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
}
.screenshot-placeholder .ph-icon { font-size: 3rem; }
.screenshot-placeholder .ph-text { font-size: 0.9rem; font-weight: 500; }
.screenshot-placeholder .ph-sub { font-size: 0.8rem; color: var(--light); }

/* =====================================================
   STRIP
   ===================================================== */

.strip {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light);
}
.strip-item span { font-size: 1.1rem; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   FEATURE SHOWCASE
   ===================================================== */

.showcases { border-top: 1px solid var(--border); }
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.feature-showcase.reverse .showcase-visual { order: -1; }
.showcase-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.showcase-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.showcase-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.showcase-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 30px;
}
.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.showcase-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.5;
}
.bullet-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--teal-dark);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.showcase-visual {
  display: flex;
  justify-content: center;
}
.showcase-img-placeholder {
  width: 280px;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, var(--teal-bg) 0%, rgba(61,212,196,0.1) 100%);
  border: 2px dashed var(--teal-border);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.showcase-img-placeholder .ph-icon { font-size: 2.5rem; }
.showcase-img-placeholder .ph-text { font-size: 0.82rem; font-weight: 500; }

/* =====================================================
   FEATURE GRID
   ===================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 14px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-bg), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--teal-border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card:hover::after { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }
.feature-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.feature-card-title {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.62;
}
.pro-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 2px 9px;
  background: rgba(46, 185, 207, 0.1);
  color: var(--teal-dark);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =====================================================
   PRICING
   ===================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-best-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  padding: 4px 18px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1.3rem; font-weight: 600; vertical-align: super; }
.pricing-note {
  font-size: 0.8rem;
  color: var(--light);
  margin-bottom: 24px;
}
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}
.pcheck {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  color: var(--teal-dark);
}
.pcheck.pro { background: var(--teal); border-color: var(--teal); color: white; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
}
.pricing-cta.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(46,185,207,0.3);
}
.pricing-cta.primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.pricing-cta.secondary { border: 1.5px solid var(--border); color: var(--text); }
.pricing-cta.secondary:hover { border-color: var(--teal); color: var(--teal); }
.pricing-footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--light);
}

/* =====================================================
   EMAIL SIGNUP
   ===================================================== */

.email-section {
  background: var(--teal-bg);
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--teal-border);
}
.email-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.email-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.email-inner p { color: var(--muted); margin-bottom: 28px; }
.email-form {
  display: flex;
  gap: 8px;
}
.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--teal-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--teal); }
.email-input::placeholder { color: var(--light); }
.email-note { font-size: 0.78rem; color: var(--light); margin-top: 12px; }

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  padding: 88px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner .store-btn {
  background: white;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-banner .store-btn:hover { background: var(--cream); }
.cta-banner .android-pill {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; font-size: 1rem; }
.footer-brand .nav-logo img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.72; max-width: 240px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */

.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--teal-bg) 0%, var(--white) 100%);
}
.page-hero .section-label { display: block; margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   FEATURES PAGE
   ===================================================== */

.feature-group { margin-bottom: 56px; }
.feature-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--teal-border);
}
.feature-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  font-size: 0.875rem;
  color: var(--muted);
  border: 1px solid var(--border);
  line-height: 1.5;
}
.feature-row .f-check { color: var(--teal); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }
.feature-row .pro-tag {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(46,185,207,0.1);
  color: var(--teal-dark);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--teal); text-decoration: underline; }

/* =====================================================
   CONTACT
   ===================================================== */

.contact-card {
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
}
.contact-card .contact-icon { font-size: 2.5rem; margin-bottom: 18px; }
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.contact-card p { color: var(--muted); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.7; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
}
.contact-email:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* =====================================================
   PROSE (privacy policy)
   ===================================================== */

.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text);
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { font-size: 0.95rem; color: var(--muted); line-height: 1.78; margin-bottom: 16px; }
.prose ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.prose li { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }
.prose a { color: var(--teal); text-decoration: underline; }
.prose .effective-date {
  display: inline-block;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 32px;
}

/* =====================================================
   BLOG / COMING SOON
   ===================================================== */

.coming-soon-card {
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.coming-soon-card .cs-icon { font-size: 3rem; margin-bottom: 20px; }
.coming-soon-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.coming-soon-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* =====================================================
   FEATURE REQUESTS
   ===================================================== */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.roadmap-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.status-planned { background: rgba(46,185,207,0.1); color: var(--teal-dark); }
.status-soon { background: rgba(61,212,196,0.15); color: #0f7a6e; }
.status-considering { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.roadmap-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.roadmap-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 960px) {
  .feature-showcase { grid-template-columns: 1fr; gap: 44px; }
  .feature-showcase.reverse .showcase-visual { order: 0; }
  .showcase-img-placeholder { width: 100%; max-width: 320px; aspect-ratio: 4/3; border-radius: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-table { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-link { display: none; }
  .nav-toggle { display: flex; }
  .hero-screenshots { height: 300px; }
  .contact-card { padding: 28px 20px; }
}
