/* FamCove marketing site — design system + responsive layout.
   Loaded via <link> in app/+html.tsx so it lands on every static page. */

:root {
  --ink: #102033;
  --ink-muted: #5a6a82;
  --ink-soft: #8a96a8;
  --surface: #ffffff;
  --surface-soft: #fcf6ea;
  --surface-tint: #fff5ed;
  --surface-warm: #ffe9dc;
  --line: rgba(16, 32, 51, 0.09);
  --line-strong: rgba(16, 32, 51, 0.16);
  --accent: #e36f54;
  --accent-strong: #c8553a;
  --accent-soft: #ffd9cf;
  --accent-ink: #ffffff;
  --secondary: #6b5bc7;
  --secondary-soft: #e7e2ff;
  --success: #1f8f4f;
  --success-soft: #d6f5e3;
  --warning: #b46900;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 32, 51, 0.05);
  --shadow-sm: 0 4px 14px rgba(16, 32, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 32, 51, 0.10);
  --shadow-lg: 0 25px 70px rgba(16, 32, 51, 0.13);
  --shadow-glow: 0 30px 80px -20px rgba(227, 111, 84, 0.45);

  --max-narrow: 720px;
  --max-medium: 960px;
  --max-wide: 1180px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth scroll for anchor links + tabs */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Animations ──────────────────────────────────────── */

@keyframes fc-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fc-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fc-float {
  0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(227, 111, 84, 0.25); }
  50% { box-shadow: 0 4px 28px rgba(227, 111, 84, 0.45); }
}
@keyframes fc-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fc-anim-fade-up { animation: fc-fade-up 700ms var(--ease-out) both; }
.fc-anim-fade-up-d1 { animation: fc-fade-up 700ms var(--ease-out) 100ms both; }
.fc-anim-fade-up-d2 { animation: fc-fade-up 700ms var(--ease-out) 200ms both; }
.fc-anim-fade-up-d3 { animation: fc-fade-up 700ms var(--ease-out) 300ms both; }
.fc-anim-fade-in { animation: fc-fade-in 800ms var(--ease-out) both; }

* { box-sizing: border-box; }

html { color-scheme: light; }
html, body {
  margin: 0;
  padding: 0;
  background: #fff !important;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Text", "Inter", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Defensive: undo any RN-style overflow reset another framework might
     inject. The marketing site needs the document itself to scroll. */
  overflow-y: auto !important;
  overflow-x: hidden;
  height: auto !important;
  min-height: 100%;
}
#root { height: auto !important; min-height: 100vh; display: block !important; }

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── Layout primitives ────────────────────────────────────────── */

.fc-container { max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; }
.fc-container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
.fc-container-medium { max-width: var(--max-medium); margin: 0 auto; padding: 0 24px; }
.fc-section { padding: 80px 0; background: #fff; }
.fc-section-tight { padding: 56px 0; background: #fff; }
.fc-section-tinted { background: var(--surface-soft); }
.fc-section-warm {
  background: linear-gradient(180deg, #fff7ee 0%, #ffe9dc 100%);
}

@media (max-width: 640px) {
  .fc-section { padding: 56px 0; }
  .fc-section-tight { padding: 40px 0; }
}

/* ─── Header ────────────────────────────────────────────────── */

.fc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.fc-header-row {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.fc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.fc-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-block;
  object-fit: contain;
}

.fc-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fc-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color 120ms var(--ease), background 120ms var(--ease);
}
.fc-nav a:hover { color: var(--ink); background: var(--surface-soft); }

.fc-header-cta { display: inline-flex; gap: 8px; align-items: center; }

@media (max-width: 760px) {
  .fc-nav { display: none; }
}

/* ─── Buttons ────────────────────────────────────────────────── */

.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 120ms var(--ease), background 120ms var(--ease), border-color 120ms var(--ease), box-shadow 120ms var(--ease);
  white-space: nowrap;
}
.fc-btn:hover { transform: translateY(-1px); }
.fc-btn:active { transform: translateY(0); }

.fc-btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.fc-btn-primary:hover { background: #1c2f48; box-shadow: var(--shadow-md); }

.fc-btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm);
}
.fc-btn-accent:hover { background: var(--accent-strong); box-shadow: var(--shadow-glow); }

.fc-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.fc-btn-ghost:hover { background: var(--surface-soft); border-color: var(--ink); }

.fc-btn-lg { padding: 15px 28px; font-size: 16px; }

/* ─── Typography ─────────────────────────────────────────────── */

.fc-eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fc-h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.fc-h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.fc-h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.fc-lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}
.fc-body { font-size: 16px; line-height: 1.6; color: var(--ink-muted); margin: 0 0 14px; }
.fc-body strong { color: var(--ink); }
.fc-body em { color: var(--ink); font-style: normal; background: linear-gradient(transparent 60%, var(--accent-soft) 60%); padding: 0 2px; }

.fc-link { color: var(--accent-strong); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.fc-link:hover { color: var(--accent); }

/* ─── Hero ───────────────────────────────────────────────────── */

.fc-hero {
  position: relative;
  padding: 96px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #fff7ee 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}
.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(227, 111, 84, 0.10), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(107, 91, 199, 0.08), transparent 45%);
  pointer-events: none;
}

.fc-hero-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .fc-hero-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.fc-hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.fc-hero-meta { color: var(--ink-soft); font-size: 13px; margin-top: 16px; }
.fc-hero-meta span { display: inline-block; margin: 0 4px; }

.fc-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--ink-muted);
  font-size: 13px;
}
.fc-stars { color: #f5b701; letter-spacing: 2px; font-size: 16px; }

@media (max-width: 880px) { .fc-hero-cta, .fc-trust { justify-content: center; } }

/* ─── Hero illustration (calendar mockup) ─────────────────── */

.fc-mockup {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 600ms var(--ease);
  animation: fc-float 6s ease-in-out infinite;
}
.fc-mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
  animation-play-state: paused;
}

/* iPhone frame — wraps any node so it looks like a device screenshot. */
.fc-iphone {
  position: relative;
  margin: 0 auto;
  padding: 12px;
  background: #1a1a1f;
  border-radius: 44px;
  box-shadow:
    0 0 0 2px #2a2a32,
    0 60px 90px -30px rgba(16, 32, 51, 0.35),
    0 30px 60px -20px rgba(16, 32, 51, 0.25);
  width: 100%;
  max-width: 360px;
}
.fc-iphone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #1a1a1f;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.fc-iphone-screen {
  background: linear-gradient(180deg, #fff 0%, #fff7ee 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
}
.fc-iphone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.fc-iphone-statusbar .icons { display: flex; gap: 5px; }
.fc-iphone-screen-title {
  font-size: 22px;
  font-weight: 800;
  padding: 12px 24px 6px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.fc-iphone-screen-sub {
  padding: 0 24px 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}
.fc-iphone-events { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fc-iphone-event {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-xs);
  transition: transform 200ms var(--ease);
}
.fc-iphone-event:hover { transform: scale(1.02); }
.fc-iphone-event .swatch { width: 6px; align-self: stretch; border-radius: 3px; }
.fc-iphone-event .body { flex: 1; }
.fc-iphone-event strong { font-size: 13px; color: var(--ink); display: block; line-height: 1.2; }
.fc-iphone-event small { color: var(--ink-soft); font-size: 11px; font-weight: 500; }
.fc-iphone-event .who {
  font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 999px;
  background: var(--surface-soft); color: var(--ink-muted); white-space: nowrap;
}
.fc-iphone-event .who.is-anand { background: #ffd9cf; color: #c8553a; }
.fc-iphone-event .who.is-priya { background: #e7e2ff; color: #4f3fb6; }
.fc-iphone-event .who.is-both { background: #d6f5e3; color: #1f8f4f; }
.fc-iphone-event .who.is-needs { background: #fff5cf; color: #b46900; }

.fc-iphone-coverage {
  position: absolute;
  bottom: -28px;
  right: -22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex; gap: 10px; align-items: center;
  z-index: 3;
  max-width: 220px;
  animation: fc-fade-up 700ms var(--ease-out) 600ms both;
}
.fc-iphone-coverage .dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9b7c);
  display: inline-block;
  flex-shrink: 0;
  animation: fc-pulse 2.4s ease-in-out infinite;
}
.fc-iphone-coverage small { display: block; color: var(--ink-soft); font-weight: 500; font-size: 11px; }

.fc-mockup-bar {
  display: flex; align-items: center; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.fc-mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.fc-mockup-dot.is-red { background: #ff6058; }
.fc-mockup-dot.is-amber { background: #ffbd2e; }
.fc-mockup-dot.is-green { background: #28c941; }
.fc-mockup-title { margin-left: 12px; font-weight: 700; font-size: 13px; color: var(--ink); }
.fc-mockup-week {
  display: grid; grid-template-columns: 64px repeat(5, 1fr); gap: 6px; margin-top: 14px;
  font-size: 11px; color: var(--ink-soft); font-weight: 600;
}
.fc-mockup-grid {
  display: grid; grid-template-columns: 64px repeat(5, 1fr); grid-auto-rows: 38px; gap: 6px; margin-top: 6px;
  position: relative;
}
.fc-mockup-time { color: var(--ink-soft); font-size: 11px; padding-top: 2px; font-weight: 600; }
.fc-mockup-cell { background: var(--surface-soft); border-radius: 6px; }
.fc-mockup-event {
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  box-shadow: var(--shadow-xs);
  align-self: stretch;
}
.fc-mockup-event small { display: block; opacity: 0.75; font-weight: 500; margin-top: 2px; }
.fc-event-pink { background: linear-gradient(135deg, #ff7676, #ff4f8a); }
.fc-event-blue { background: linear-gradient(135deg, #4f8cff, #2a6cf6); }
.fc-event-green { background: linear-gradient(135deg, #2bc78b, #21a778); }
.fc-event-purple { background: linear-gradient(135deg, #8a6dff, #5a3dd1); }
.fc-event-orange { background: linear-gradient(135deg, #ff9550, #e36f54); }

.fc-mockup-coverage {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex; gap: 10px; align-items: center;
}
.fc-mockup-coverage .dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff9b7c); display: inline-block; }
.fc-mockup-coverage small { display: block; color: var(--ink-soft); font-weight: 500; font-size: 11px; }

/* ─── Logo strip ─────────────────────────────────────────────── */

.fc-logos {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.fc-logos-row {
  display: flex; gap: 36px; align-items: center; justify-content: center; flex-wrap: wrap;
  color: var(--ink-soft); font-size: 13px;
}
.fc-logos-row strong { color: var(--ink-muted); font-weight: 700; }

/* ─── Feature grid ─────────────────────────────────────────── */

.fc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .fc-grid-3 { grid-template-columns: 1fr; } .fc-grid-2 { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 880px) { .fc-grid-3 { grid-template-columns: repeat(2, 1fr); } }

.fc-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.fc-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.fc-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.fc-feature-icon svg { width: 22px; height: 22px; }
.fc-feature p { color: var(--ink-muted); font-size: 15px; line-height: 1.55; margin: 0; }
.fc-feature .fc-feature-link { color: var(--accent-strong); font-weight: 600; font-size: 13px; margin-top: auto; padding-top: 10px; }

/* ─── Stats row ──────────────────────────────────────────── */

.fc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 40px 0 0;
}
@media (max-width: 720px) { .fc-stats { grid-template-columns: repeat(2, 1fr); } }
.fc-stat-num { font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.fc-stat-label { color: var(--ink-muted); font-size: 13px; margin-top: 6px; font-weight: 500; }

/* ─── Two-column feature explainer ───────────────────────── */

.fc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .fc-split { grid-template-columns: 1fr; gap: 32px; } }

.fc-explainer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.fc-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.fc-bullet:first-child { border-top: 0; padding-top: 0; }
.fc-bullet-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 1px;
}
.fc-bullet-content strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 700; font-size: 16px; }
.fc-bullet-content span { color: var(--ink-muted); font-size: 14px; line-height: 1.55; }

/* ─── Quote / testimonial ──────────────────────────────── */

.fc-quote {
  background: linear-gradient(135deg, var(--surface-warm) 0%, #fff5ed 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  position: relative;
  border: 1px solid var(--accent-soft);
}
.fc-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 32px;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, serif;
}
.fc-quote-text { font-size: 22px; line-height: 1.45; color: var(--ink); font-weight: 500; margin: 0 0 16px; }
.fc-quote-author { color: var(--ink-muted); font-size: 14px; }
.fc-quote-author strong { color: var(--ink); display: block; }

/* ─── FAQ ─────────────────────────────────────────────── */

.fc-faq { display: flex; flex-direction: column; gap: 8px; }
.fc-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color 120ms var(--ease), box-shadow 120ms var(--ease);
}
.fc-faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.fc-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fc-faq summary::-webkit-details-marker { display: none; }
.fc-faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform 200ms var(--ease);
  line-height: 1;
}
.fc-faq details[open] summary::after { content: "−"; }
.fc-faq-answer { padding: 0 24px 22px; color: var(--ink-muted); line-height: 1.6; font-size: 15px; }

/* ─── Big CTA ─────────────────────────────────────────── */

.fc-bigcta {
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 111, 84, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(107, 91, 199, 0.10), transparent 50%),
    linear-gradient(135deg, #fff7ee 0%, #ffe9dc 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  text-align: center;
  border: 1px solid var(--accent-soft);
  box-shadow: var(--shadow-md);
}
.fc-bigcta h2 { color: var(--ink); margin: 0 0 12px; }
.fc-bigcta p { color: var(--ink-muted); font-size: 18px; margin: 0 0 28px; line-height: 1.55; }
.fc-bigcta-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.fc-bigcta-cta .fc-btn-primary { background: var(--ink); color: #fff; }
.fc-bigcta-cta .fc-btn-primary:hover { background: #1c2f48; }
.fc-bigcta-cta .fc-btn-ghost { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,0.6); }
.fc-bigcta-cta .fc-btn-ghost:hover { background: #fff; border-color: var(--ink); }

/* ─── Footer ─────────────────────────────────────────── */

.fc-footer {
  border-top: 1px solid var(--line);
  background: #fafafa;
  padding: 56px 0 32px;
  margin-top: 64px;
}
.fc-footer-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .fc-footer-grid { grid-template-columns: 1fr 1fr; }
  .fc-footer-brand { grid-column: 1 / -1; }
}
.fc-footer-heading { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 14px; font-weight: 700; }
.fc-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fc-footer a { color: var(--ink-muted); text-decoration: none; font-size: 14px; }
.fc-footer a:hover { color: var(--ink); }
.fc-footer-baseline {
  max-width: var(--max-wide);
  margin: 32px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Hero photo (real iPhone product shot) ────────── */

.fc-hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.fc-hero-photo {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(16, 32, 51, 0.18));
  animation: fc-float-soft 8s ease-in-out infinite, fc-fade-in 1000ms var(--ease-out) both;
}
@keyframes fc-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  animation: fc-fade-up 700ms var(--ease-out) 800ms both;
}
.fc-hero-badge .badge-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9b7c);
  flex-shrink: 0;
  animation: fc-pulse 2.4s ease-in-out infinite;
}
.fc-hero-badge.is-top { top: 24px; left: -12px; }
.fc-hero-badge.is-bottom { bottom: 32px; right: -16px; }
.fc-hero-badge small { display: block; color: var(--ink-soft); font-weight: 500; font-size: 11px; line-height: 1.3; }
@media (max-width: 620px) {
  .fc-hero-badge.is-top { left: 8px; top: 8px; }
  .fc-hero-badge.is-bottom { right: 8px; bottom: 8px; }
}

/* ─── Image-driven feature row ─────────────────────── */

.fc-imgrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fc-imgrow.is-reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .fc-imgrow { grid-template-columns: 1fr; gap: 32px; }
  .fc-imgrow.is-reverse > :first-child { order: 0; }
}
.fc-imgrow-image {
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--surface-tint) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-imgrow-image img {
  width: 100%;
  height: auto;
  max-width: 360px;
  display: block;
}

/* Feature card thumbnail (small illustration above title) */
.fc-feature-thumb {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--surface-tint) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.fc-feature-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ─── Comparison table ──────────────────────────────── */

.fc-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 14px;
}
.fc-compare th, .fc-compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.fc-compare th { background: var(--surface-soft); font-weight: 700; color: var(--ink); }
.fc-compare tr:last-child td { border-bottom: 0; }
.fc-compare td.fc-col-us { background: rgba(227, 111, 84, 0.06); color: var(--ink); font-weight: 600; }
.fc-yes { color: var(--success); font-weight: 800; }
.fc-no { color: var(--ink-soft); }
