/* ============================================================
   BuddyLog — Marketing Website Styles
   ============================================================ */

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

:root {
  --teal:        #009192;
  --teal-light:  #00b3b4;
  --teal-dark:   #007576;
  --teal-bg:     #f0fafa;
  --text:        #0f1923;
  --text-soft:   #4a5568;
  --text-muted:  #94a3b8;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, #00c9ca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ============================================================
   COMING SOON BANNER
   ============================================================ */

.coming-soon-banner {
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  letter-spacing: 0.01em;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.btn-nav:hover { opacity: 0.85 !important; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-large { padding: 18px 36px; font-size: 17px; }

.btn-android {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-android:hover {
  border-color: var(--text);
  background: #f8fafc;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  width: 100%;
}

.btn-outline:hover { border-color: var(--text); background: var(--teal-bg); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--teal-dark);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 100px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero-badge--subtle {
  color: var(--text-muted);
  border-color: var(--border);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* PHONE MOCKUP */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-main {
  position: relative;
  z-index: 2;
}

.phone-secondary {
  position: relative;
  z-index: 1;
  transform: translateX(48px) translateY(32px) scale(0.88);
  opacity: 0.85;
  margin-left: -160px;
}

.phone-frame {
  width: 280px;
  background: var(--text);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Real screenshot fills the frame */
.screen-shot {
  display: block;
  width: 100%;
  border-radius: 30px;
  min-height: 520px;
  object-fit: cover;
}

/* Placeholder shown when screenshot file is missing */
.phone-frame:not(:has(.screen-shot[src]:not([src=""]))) .screen-placeholder,
.screen-placeholder {
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 492px;
}

.screen-placeholder span {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Hide placeholder once real screenshot loads */
.screen-shot[src]:not([src=""]) + .screen-placeholder { display: none; }
.screen-shot[src]:not([src=""]) { display: block; }
.screen-shot:not([src]), .screen-shot[src=""] { display: none; }


/* ============================================================
   SOCIAL PROOF
   ============================================================ */

.social-proof {
  background: var(--teal-bg);
  padding: 48px 24px;
  text-align: center;
}

.proof-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

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

.features {
  padding: 100px 24px;
  text-align: center;
}

.features h2, .how-it-works h2, .pricing h2, .download h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--accent {
  background: linear-gradient(135deg, var(--teal) 0%, #00b3b4 100%);
  border-color: transparent;
  color: white;
}

.feature-card--accent h3,
.feature-card--accent p { color: white; }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-icon--white {
  background: rgba(255,255,255,0.2) !important;
  color: white !important;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 4px 10px;
  border-radius: 100px;
}

.feature-tags--white span {
  color: white;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   STATEMENT
   ============================================================ */

.statement {
  background: var(--teal-bg);
  padding: 88px 24px;
  text-align: center;
}

.statement-inner {
  max-width: 700px;
  margin: 0 auto;
}

.statement-text {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.statement-text em {
  font-style: normal;
  color: var(--teal);
}

.statement-sub {
  font-size: 17px;
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */

.stats-section {
  background: var(--text);
  padding: 100px 24px;
  text-align: center;
}

.stats-section-header {
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-label--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.stats-section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.stats-section-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.stats-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.stats-bullets li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stats-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

.stats-section-screens {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.stats-phone {
  flex: 1;
  max-width: 260px;
  background: #1c2b3a;
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.stats-phone img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.stats-phone--center { transform: translateY(-28px); }
.stats-phone--side   { transform: translateY(12px); }

@media (max-width: 700px) {
  .stats-section-screens { gap: 10px; }
  .stats-phone { border-radius: 28px; padding: 10px; }
  .stats-phone img { border-radius: 20px; }
  .stats-phone--center { transform: translateY(-16px); }
  .stats-phone--side   { transform: translateY(6px); }
}

@media (max-width: 500px) {
  .stats-section-screens { flex-direction: column; align-items: center; }
  .stats-phone { max-width: 240px; }
  .stats-phone--center, .stats-phone--side { transform: none; }
}

/* ============================================================
   SPOTLIGHT FEATURES
   ============================================================ */

.spotlight {
  padding: 80px 24px;
  background: #f8fafc;
}

.spotlight-header {
  text-align: center;
  margin-bottom: 72px;
}

.spotlight-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.spotlight-item {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.spotlight-item:last-child { margin-bottom: 0; }

.spotlight-item--reverse { flex-direction: row-reverse; }

.spotlight-content { flex: 1; }

.spotlight-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.spotlight-content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight-list li {
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spotlight-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

/* WHAT MAKES IT DIFFERENT: feature detail cards */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.diff-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.diff-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.diff-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.diff-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

.diff-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.diff-list li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.diff-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* SPOTLIGHT COMPONENT SHOTS */
.spotlight-visual {
  flex: 0 0 360px;
}

.component-shot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  background: #f8fafc;
}

.component-img {
  display: block;
  width: 100%;
  height: auto;
}

.component-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.component-placeholder span {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.component-img[src]:not([src=""]) + .component-placeholder { display: none; }
.component-img:not([src]), .component-img[src=""] { display: none; }

/* STATISTICS: side-by-side screenshots */
.stats-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* STATISTICS: graph grid */
.stats-graphs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.graph-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.graph-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 12px 0;
}

.graph-slot {
  position: relative;
}

.graph-img {
  display: block;
  width: 100%;
  height: auto;
}

.graph-placeholder {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #f8fafc;
  margin: 8px;
  border-radius: 8px;
  border: 1.5px dashed var(--border);
}

.graph-placeholder svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  opacity: 0.5;
}

.graph-placeholder span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.graph-img[src]:not([src=""]) + .graph-placeholder { display: none; }
.graph-img:not([src]), .graph-img[src=""] { display: none; }


@media (max-width: 860px) {
  .spotlight-item,
  .spotlight-item--reverse {
    flex-direction: column;
    gap: 36px;
  }

  .spotlight-visual { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .spotlight-content { text-align: center; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  padding: 100px 24px;
  background: #f8fafc;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 60px auto 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-line {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  margin-top: 28px;
  border-radius: 2px;
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  background: var(--teal-bg);
  border: 2px solid var(--teal);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.pricing {
  padding: 100px 24px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius);
  padding: 36px;
  text-align: left;
  position: relative;
}

.pricing-card--free {
  border: 1.5px solid var(--border);
  background: var(--white);
}

.pricing-card--premium {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  color: white;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card--premium .plan-name { color: rgba(255,255,255,0.7); }

.plan-price {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-price-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.plan-price-option {
  display: flex;
  align-items: center;
}

.price-tag {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 8px;
}

.plan-price-option--highlight .price-tag {
  background: rgba(255,255,255,0.3);
  color: white;
  font-weight: 800;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-card--premium .plan-desc { color: rgba(255,255,255,0.75); }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.plan-features li.muted { color: var(--text-muted); }

.pricing-card--premium .plan-features li { color: rgba(255,255,255,0.9); }

.check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.check--white { color: white !important; }

/* ============================================================
   DOWNLOAD
   ============================================================ */

.download {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}

.download-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.download h2 { margin-bottom: 16px; }

.download p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}

.download-note {
  margin-top: 16px !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

.indie-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
}

.indie-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.indie-note p {
  font-size: 13px !important;
  color: var(--text-soft) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

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

footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

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

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    min-height: unset;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--large { grid-column: span 2; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-line {
    width: 2px;
    height: 40px;
    flex: 0 0 auto;
  }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}


@media (max-width: 600px) {
  .nav-links a:not(.btn-nav) { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .proof-stats { gap: 24px; }
  .stat-divider { display: none; }

  .hero-visual .phone-frame { width: 240px; }
}

/* ============================================================
   COMING SOON MODAL
   ============================================================ */

.cs-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cs-backdrop.is-open {
  display: flex;
}

.cs-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  animation: cs-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cs-pop {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.cs-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cs-close:hover { background: #cbd5e1; }

.cs-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 20px;
  display: block;
}

.cs-badge {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.cs-modal h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cs-modal p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cs-notify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 12px;
}

.cs-notify:hover { opacity: 0.85; }

.cs-dismiss {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cs-dismiss:hover { color: var(--text-soft); }
