/* ===========================================================================
 * Cronote shared styles — used by all 2026 marketing pages.
 *
 * Hybrid visual pattern: dark+glass for hero / final-CTA / Syncros showcase,
 * cream+editorial for use cases / pricing / FAQ / blog.
 *
 * Mirrors the Flutter app:
 *   - Glass: 16px blur + black @ 0.28 + 1px white @ 0.12 border (GlassPanel)
 *   - Text shadow over photos: 0 2px 8px rgba(0,0,0,0.6) + 0 4px 16px rgba(0,0,0,0.4) (kSyncTextShadows)
 *   - Fonts: Poppins (display) + Inter (body) + DM Serif Display (editorial cream H2/H3)
 *   - Sync icons + per-type colors mirror Flutter's Icons.* + _syncAccentColor
 * =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@40,400,0..1,0&display=block');

/* ===== Tokens ===== */
:root {
  /* Brand */
  --cn-purple: #7B5CB8;
  --cn-purple-dark: #5a3d8e;
  --cn-purple-light: #c4abf0;
  --cn-cyan: #5BC8D6;
  --cn-gradient: linear-gradient(135deg, #7B5CB8 0%, #5BC8D6 100%);
  --cn-gradient-soft: linear-gradient(135deg, rgba(123,92,184,0.85) 0%, rgba(91,200,214,0.75) 100%);

  /* Glass (parity with flutter/lib/widgets/glass_panel.dart) */
  --cn-glass-bg: rgba(0, 0, 0, 0.28);
  --cn-glass-bg-strong: rgba(0, 0, 0, 0.45);
  --cn-glass-border: rgba(255, 255, 255, 0.12);
  --cn-glass-blur: 16px;

  /* Surfaces */
  --cn-black: #000;
  --cn-navy: #1B1A17;
  --cn-charcoal: #2D2B28;
  --cn-cream: #F8F6F1;
  --cn-cream-2: #EFEADF;
  --cn-warm-gray: #6B6560;
  --cn-text-dark: #3D3A35;
  --cn-text-on-dark: rgba(255, 255, 255, 0.92);
  --cn-text-on-dark-mute: rgba(255, 255, 255, 0.72);

  /* Typography */
  --cn-font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --cn-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --cn-font-editorial: 'DM Serif Display', Georgia, serif;
  --cn-font-brand: 'Raleway', var(--cn-font-display);

  /* Shadow */
  --cn-shadow-text: 0 2px 8px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --cn-shadow-card: 0 8px 32px rgba(0,0,0,0.08);
  --cn-shadow-glass: 0 12px 40px rgba(0,0,0,0.35);

  /* Layout */
  --cn-section-pad: 96px;
  --cn-section-pad-mobile: 64px;
  --cn-radius: 16px;

  /* Sync type colors — mirror flutter/lib/create_cronote_screen.dart::_syncAccentColor */
  --cn-sync-moment: #7B5CB8;     /* kCronoteAccent (purple) */
  --cn-sync-decision: #2196F3;   /* Material Colors.blue */
  --cn-sync-inspire: #FFEB3B;    /* Material Colors.yellow */
  --cn-sync-snap: #4CAF50;       /* Material Colors.green */
  --cn-sync-location: #F44336;   /* Material Colors.red */
  --cn-sync-ticker: #4CAF50;     /* default branch == green */
  --cn-sync-ball: #FF9800;       /* Material Colors.orange */
  --cn-sync-pong: #4CAF50;       /* default branch == green */
  --cn-sync-chain: #c4abf0;      /* purple-light, neutral connector */
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cn-cream);
  color: var(--cn-text-dark);
  font-family: var(--cn-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; }
a { color: var(--cn-purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cn-purple-dark); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
.h-display { font-family: var(--cn-font-display); letter-spacing: -0.01em; }
.h-editorial { font-family: var(--cn-font-editorial); font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: var(--cn-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cn-purple);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--cn-purple-light); }

.gradient-text {
  background: var(--cn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-shadow-sync { text-shadow: var(--cn-shadow-text); }

/* ===== Container ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ===== Sections ===== */
.section { padding: var(--cn-section-pad) 0; }
@media (max-width: 720px) { .section { padding: var(--cn-section-pad-mobile) 0; } }

.section--cream { background: var(--cn-cream); color: var(--cn-text-dark); }
.section--cream-2 { background: var(--cn-cream-2); color: var(--cn-text-dark); }
.section--cream h2,
.section--cream-2 h2 { font-family: var(--cn-font-editorial); font-weight: 400; color: var(--cn-navy); font-size: 42px; }
.section--cream h3,
.section--cream-2 h3 { font-family: var(--cn-font-editorial); font-weight: 400; color: var(--cn-navy); font-size: 26px; }

.section--dark {
  position: relative;
  background: #050507;
  color: var(--cn-text-on-dark);
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 0%, rgba(123,92,184,0.32) 0%, transparent 60%),
    radial-gradient(40% 50% at 90% 100%, rgba(91,200,214,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { font-family: var(--cn-font-display); color: #fff; }
.section--dark h2 { font-size: 44px; }
.section--dark h3 { font-size: 22px; }
.section--dark p { color: var(--cn-text-on-dark-mute); }

@media (max-width: 720px) {
  .section--dark h2, .section--cream h2, .section--cream-2 h2 { font-size: 32px; }
  .section--dark h3 { font-size: 20px; }
}

/* ===== Hero ===== */
.hero--app-style {
  position: relative;
  padding: 120px 0 96px;
  background: #050507;
  color: #fff;
  overflow: hidden;
}
.hero--app-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 15% 10%, rgba(123,92,184,0.55) 0%, transparent 55%),
    radial-gradient(60% 50% at 95% 90%, rgba(91,200,214,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.hero--app-style > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--cn-font-display);
  font-size: 60px;
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-copy h1 .line-2 {
  display: block;
  font-weight: 500;
}
.hero-copy .lede {
  font-family: var(--cn-font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--cn-text-on-dark);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-trust {
  font-size: 14px;
  color: var(--cn-text-on-dark-mute);
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .hero--app-style { padding: 88px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy .lede { font-size: 17px; }
}
@media (max-width: 480px) {
  .hero-copy h1 { font-size: 36px; }
}

/* ===== Buttons ===== */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-base:hover { transform: translateY(-1px); }

.btn-gradient {
  composes: btn-base;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cn-font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--cn-gradient);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(123,92,184,0.35);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(123,92,184,0.45);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  text-decoration: none;
  backdrop-filter: blur(var(--cn-glass-blur));
  -webkit-backdrop-filter: blur(var(--cn-glass-blur));
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
  white-space: nowrap;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--cn-purple);
  color: #fff;
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--cn-purple-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(123,92,184,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--cn-purple);
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(123,92,184,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(123,92,184,0.08); border-color: var(--cn-purple); }

.btn-lg { font-size: 17px; padding: 16px 30px; }

/* App Store badge */
.app-store-badge {
  position: relative;
  display: inline-block;
  transition: transform 0.18s ease, opacity 0.2s;
  line-height: 0;
}
.app-store-badge:hover { transform: translateY(-1px); }
.app-store-badge img { height: 52px; width: auto; }
.app-store-badge::after {
  content: "Coming soon";
  position: absolute;
  top: -8px;
  right: -10px;
  font-family: var(--cn-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--cn-gradient);
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
@media (max-width: 480px) {
  .app-store-badge img { height: 46px; }
  .app-store-badge::after { font-size: 8px; padding: 3px 7px; top: -6px; right: -8px; }
}

/* ===== Glass panel ===== */
.glass-panel {
  background: var(--cn-glass-bg);
  border: 1px solid var(--cn-glass-border);
  border-radius: var(--cn-radius);
  backdrop-filter: blur(var(--cn-glass-blur));
  -webkit-backdrop-filter: blur(var(--cn-glass-blur));
  box-shadow: var(--cn-shadow-glass);
}
.glass-panel--strong {
  background: var(--cn-glass-bg-strong);
}

/* ===== Header ===== */
.cn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cn-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.cn-header .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cn-header .logo-area img { height: 32px; width: auto; }
.cn-header .brand {
  font-family: var(--cn-font-brand);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.cn-header .brand-sub {
  font-family: var(--cn-font-brand);
  font-size: 24px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-left: -2px;
}
.cn-header nav { flex: 1; display: flex; justify-content: center; }
.cn-header nav ul { display: flex; gap: 4px; }
.cn-header nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--cn-font-display);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.cn-header nav a:hover,
.cn-header nav li.active a {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.cn-header .header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cn-header .header-legacy-link,
a.header-legacy-link {
  font-family: var(--cn-font-display);
  font-size: 13px;
  font-weight: 500;
  color: #b8b8b8;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.cn-header .header-legacy-link:hover,
a.header-legacy-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 720px) {
  .cn-header .header-legacy-link { display: none; }
}
.cn-header .header-signin-link {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.cn-header .header-signin-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cn-header .header-signup-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 999px;
  background: var(--cn-gradient);
  color: #fff;
  font-family: var(--cn-font-display);
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.2s;
}
.cn-header .header-signup-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(123,92,184,0.45);
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .cn-header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,12,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 0; }
  .cn-header nav.open { display: flex; }
  .cn-header nav ul { flex-direction: column; gap: 0; padding: 0 16px; width: 100%; }
  .cn-header nav a { padding: 12px 14px; }
  .cn-header .header-cta .header-signin-link { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
  .cn-header .brand-sub { display: none; }
}

/* ===== Footer ===== */
.cn-footer {
  background: #050507;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cn-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-family: var(--cn-font-body);
}
.cn-footer a {
  color: rgba(255,255,255,0.7);
  margin-left: 16px;
  font-family: var(--cn-font-display);
  font-weight: 500;
}
.cn-footer a:hover { color: #fff; }
.cn-footer .footer-brand {
  font-family: var(--cn-font-brand);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

/* ===== Screenshot frame (iPhone bezel) ===== */
.screenshot-frame {
  position: relative;
  display: inline-block;
  border-radius: 38px;
  padding: 8px;
  background: linear-gradient(160deg, #2a2a2e 0%, #0d0d10 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 8px 18px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.screenshot-frame img {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: auto;
}
.screenshot-frame--sm { border-radius: 28px; padding: 6px; }
.screenshot-frame--sm img { border-radius: 22px; }

/* ===== Phone fan (3-up hero) ===== */
.phone-fan {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
  margin: 0 auto;
}
.phone-fan .screenshot-frame {
  position: absolute;
  width: 56%;
  transition: transform 0.3s ease;
}
.phone-fan .ph-1 { left: 0; top: 6%; transform: rotate(-7deg); z-index: 1; }
.phone-fan .ph-2 { left: 22%; top: 0; transform: translateY(-4%); z-index: 3; }
.phone-fan .ph-3 { right: 0; top: 8%; transform: rotate(7deg); z-index: 1; }
.phone-fan:hover .ph-1 { transform: rotate(-9deg) translateX(-4%); }
.phone-fan:hover .ph-3 { transform: rotate(9deg) translateX(4%); }

@media (max-width: 720px) {
  .phone-fan { max-width: 360px; }
}

/* ===== Card grid (Syncros showcase, feature gallery) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--cn-radius);
  background: var(--cn-glass-bg);
  border: 1px solid var(--cn-glass-border);
  backdrop-filter: blur(var(--cn-glass-blur));
  -webkit-backdrop-filter: blur(var(--cn-glass-blur));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.36);
}
.feature-card .icon-wrap {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--cn-gradient);
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

/* ===== Sync type icons (Material Symbols, color-matched to Flutter app) ===== */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
}
.material-symbols-outlined.outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 40; }

.sync-icon {
  font-size: 44px;
  display: inline-block;
  margin-bottom: 16px;
  height: 44px;
  line-height: 1;
}
.sync-icon--moment   { color: var(--cn-sync-moment); }

/* Moment Sync uses the purple Cronote logo (matches Flutter's
 * `assets/cronote_icon_purple.png` rendering in sync_picker_screen.dart).
 * Use <img class="sync-logo"> in place of a Material Symbol span.
 * Sized to match the visual footprint of the 44px Material icon glyphs
 * (raster icons fill their bounding box; Material glyphs have inner padding). */
.sync-logo {
  width: 44px;
  height: 44px;
  display: inline-block;
  margin-bottom: 16px;
  object-fit: contain;
}
.sync-icon--decision { color: var(--cn-sync-decision); transform: rotate(45deg); }
.sync-icon--inspire  { color: var(--cn-sync-inspire); }
.sync-icon--snap     { color: var(--cn-sync-snap); }
.sync-icon--location { color: var(--cn-sync-location); }
.sync-icon--ticker   { color: var(--cn-sync-ticker); }
.sync-icon--ball     { color: var(--cn-sync-ball); }
.sync-icon--pong     { color: var(--cn-sync-pong); }
.sync-icon--chain    { color: var(--cn-sync-chain); }
/* On cream sections, sub yellow for darker variant since pure yellow is hard to read */
.section--cream .sync-icon--inspire,
.section--cream-2 .sync-icon--inspire { color: #C9A227; }
.feature-card h3 {
  font-family: var(--cn-font-display);
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.use-case-card {
  background: #fff;
  border: 1px solid rgba(27,26,23,0.08);
  border-radius: var(--cn-radius);
  padding: 32px;
  box-shadow: var(--cn-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27,26,23,0.10);
  color: inherit;
}
.use-case-card .icon-wrap {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(123,92,184,0.12);
  color: var(--cn-purple);
  font-size: 20px;
  margin-bottom: 16px;
}
.use-case-card h3 {
  font-family: var(--cn-font-editorial);
  font-weight: 400;
  font-size: 24px;
  color: var(--cn-navy);
  margin-bottom: 10px;
}
.use-case-card p { font-size: 15px; color: var(--cn-warm-gray); line-height: 1.55; }
.use-case-card .arrow { color: var(--cn-purple); font-weight: 600; margin-top: 14px; display: inline-block; }

/* ===== Pricing cards ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: #fff;
  border: 1px solid rgba(27,26,23,0.08);
  border-radius: var(--cn-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--cn-purple);
  box-shadow: 0 12px 36px rgba(123,92,184,0.18);
  position: relative;
}
.pricing-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cn-gradient);
  color: #fff;
  font-family: var(--cn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pricing-card h3 {
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cn-navy);
  margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--cn-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--cn-navy);
  margin-bottom: 4px;
}
.pricing-price .per { font-size: 14px; font-weight: 500; color: var(--cn-warm-gray); }
.pricing-card .reminders {
  font-size: 13px;
  color: var(--cn-warm-gray);
  margin-bottom: 18px;
}
.pricing-card ul { font-size: 14px; color: var(--cn-text-dark); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.pricing-card ul li::before { content: "✓"; color: var(--cn-purple); font-weight: 700; margin-right: 8px; }
.pricing-card .btn-primary { width: 100%; }

/* ===== Step row ===== */
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.step {
  text-align: left;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cn-gradient);
  color: #fff;
  font-family: var(--cn-font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--cn-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cn-navy);
  margin-bottom: 6px;
}
.step p { font-size: 15px; color: var(--cn-warm-gray); }
@media (max-width: 720px) { .step-row { grid-template-columns: 1fr; } }

/* ===== Trust strip ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: var(--cn-warm-gray);
  font-family: var(--cn-font-display);
  font-weight: 500;
}
.trust-strip span::before { content: "·"; margin-right: 28px; color: rgba(0,0,0,0.18); }
.trust-strip span:first-child::before { content: ""; margin: 0; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ===== Section heading center pattern ===== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head p { font-size: 18px; color: var(--cn-warm-gray); }
.section--dark .section-head p { color: rgba(255,255,255,0.78); }
@media (max-width: 720px) { .section-head { margin-bottom: 36px; } .section-head p { font-size: 16px; } }

/* ===== Carousel (App Store screenshots) ===== */
.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
}
.scroll-row > * {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 240px;
}
@media (max-width: 480px) {
  .scroll-row > * { width: 200px; }
}

/* ===== Misc ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
hr.cn-divider { border: 0; border-top: 1px solid rgba(0,0,0,0.08); margin: 48px 0; }
