/* ============================================================
   CreatorSuite — Light theme landing page
   ============================================================ */

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

:root {
  --bg: #ffffff;
  --bg-soft: #fafbff;
  --bg-card: #ffffff;
  --line: #e8eaf3;
  --line-2: #d8dbe8;
  --text: #0e1020;
  --text-2: #4a4f63;
  --muted: #7c8194;
  --muted-2: #a3a8bb;
  --primary: #6366f1;
  --primary-2: #8b5cf6;
  --primary-3: #a855f7;
  --grad-purple: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --grad-purple-soft: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  --grad-bg: linear-gradient(180deg,
    #c8d4e8 0%,
    #dde3ef 18%,
    #efe8df 38%,
    #fff7eb 55%,
    #ffffff 75%);
  --shadow-card: 0 1px 2px rgba(15, 18, 36, 0.04), 0 1px 0 rgba(15, 18, 36, 0.03);
  --shadow-pop: 0 20px 50px -20px rgba(99, 102, 241, 0.45);
  --shadow-soft: 0 8px 30px -10px rgba(15, 18, 36, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --serif: 'Instrument Serif', Georgia, serif;
}

html[data-theme="dark"] {
  --bg: #0b0c14;
  --bg-soft: #0f111c;
  --bg-card: #14162280;
  --line: #21243a;
  --line-2: #2a2e48;
  --text: #f1f3ff;
  --text-2: #c2c6db;
  --muted: #8a8fa8;
  --muted-2: #5d6178;
  --grad-bg: linear-gradient(180deg, #1a1d35 0%, #14162a 25%, #0b0c14 60%);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, border-color .18s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--grad-purple);
  color: white;
  box-shadow: 0 8px 22px -8px rgba(99, 102, 241, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(99, 102, 241, 0.7); }
.btn-white {
  background: #fff;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-white:hover { border-color: var(--text); }
.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--text); }
.btn-light {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-light:hover { background: #f5f3ff; }
.btn-dark {
  background: #0e1020;
  color: white;
  font-weight: 600;
}
.btn-dark:hover { background: #1f2238; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 30px; font-size: 15.5px; }

.caret { font-size: 11px; opacity: 0.85; }

/* ============== NAV ============== */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(15, 18, 36, 0.06);
  border-radius: 999px;
  padding: 7px 8px 7px 22px;
  box-shadow:
    0 1px 2px rgba(15, 18, 36, 0.04),
    0 8px 30px -12px rgba(15, 18, 36, 0.12);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo-mark { width: 22px; height: 22px; display: inline-flex; }
.logo-mark svg { width: 100%; height: 100%; }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0 8px;
}
.nav-links a {
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.btn-google:hover { border-color: var(--text-2); box-shadow: 0 4px 12px -4px rgba(15, 18, 36, 0.15); }
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 130px 0 70px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-bg);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.loved-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 18, 36, 0.06);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(15, 18, 36, 0.04);
}
.loved-pill strong { color: var(--text); font-weight: 700; }
.lp-avs { display: inline-flex; }
.lp-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.lp-av:first-child { margin-left: 0; }
.lp-1 { background: linear-gradient(135deg, #f472b6, #8b5cf6); }
.lp-2 { background: linear-gradient(135deg, #22d3ee, #6366f1); }
.lp-3 { background: linear-gradient(135deg, #fbbf24, #f97316); }

.hero-title {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 26px;
  color: var(--text);
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 18, 36, 0.05);
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px -8px rgba(15, 18, 36, 0.1);
}
.hero-meta { color: var(--muted); font-size: 13px; }

/* ============== TRUSTED ============== */
.trusted { padding: 60px 0 40px; text-align: center; }
.trusted-title {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.trusted-title strong { color: var(--text); font-weight: 700; }
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  filter: grayscale(100%) opacity(0.55);
}
.logo-strip span {
  font-weight: 600;
  font-size: 17px;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

/* ============== SECTION HEAD ============== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 16px;
}
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.section-head p { color: var(--text-2); font-size: 15.5px; }

/* ============== WORKFLOW ============== */
.workflow { padding: 60px 0 90px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.sc-head { display: flex; justify-content: space-between; align-items: center; }
.sc-num { color: var(--muted-2); font-size: 13px; font-weight: 500; }
.sc-icon { font-size: 16px; opacity: 0.5; }
.step-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.step-card > p { color: var(--text-2); font-size: 14px; line-height: 1.55; flex-grow: 0; }
.sc-mock {
  margin-top: auto;
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.sc-row { display: flex; align-items: center; gap: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.d1 { background: #f472b6; } .d2 { background: #6366f1; } .d3 { background: #22d3ee; } .d4 { background: #fbbf24; }
.bar {
  flex: 1; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #f472b6, transparent);
}
.bar-2 { background: linear-gradient(90deg, #6366f1, transparent); width: 70%; }
.bar-3 { background: linear-gradient(90deg, #22d3ee, transparent); width: 48%; }
.bar-4 { background: linear-gradient(90deg, #fbbf24, transparent); width: 22%; }
.pct { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 30px; text-align: right; }

.create-mock { gap: 10px; }
.cm-line {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #ddd6fe, #ede9fe);
}
.cm-line.short { width: 60%; }
.cm-block {
  height: 28px; border-radius: 6px; margin-top: 6px;
  background: linear-gradient(90deg, #fef3c7, #fde68a);
}

.grow-mock { gap: 10px; }
.gm-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.gm-head .up { color: #10b981; font-weight: 700; }
.gm-bars { display: flex; align-items: end; gap: 6px; height: 60px; }
.gm-bars span { flex: 1; background: var(--text); border-radius: 3px 3px 0 0; min-height: 6px; }
.gm-stats { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--line); }
.gm-stats div { display: flex; flex-direction: column; }
.gm-stats strong { font-size: 14px; font-weight: 700; }
.gm-stats span { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============== TOOLS ============== */
.tools { padding: 90px 0; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: minmax(0, auto);
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tc-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f3f1ff;
  border-radius: 8px;
  font-size: 16px;
}
.tool-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.tool-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.5; }

/* feature card (Analytics) */
.tc-feature {
  grid-row: span 2;
  background: var(--grad-purple);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-pop);
}
.tc-feature h3 { color: white; font-size: 22px; }
.tc-feature p { color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.tc-feature .tc-icon-wrap {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.tc-feature .tc-icon { background: transparent; }
.tc-chart {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.tcc-label { font-size: 11px; opacity: 0.8; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.tcc-bars {
  display: flex; align-items: end; gap: 4px;
  height: 90px;
}
.tcc-bars span {
  flex: 1; background: rgba(255, 255, 255, 0.85);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  transition: opacity .15s;
}

/* small tool mock decorations */
.tc-mini-lines { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.tc-mini-lines span { height: 6px; border-radius: 3px; background: var(--line); }
.tc-mini-lines span.short { width: 60%; }
.tc-mini-bar { height: 8px; border-radius: 4px; background: var(--line); margin-top: auto; overflow: hidden; }
.tc-mini-bar .fill { display: block; height: 100%; background: var(--grad-purple); }
.tc-mini-pills { display: flex; gap: 4px; margin-top: auto; }
.tc-mini-pills span {
  flex: 1; height: 16px; border-radius: 8px;
  background: linear-gradient(90deg, #ddd6fe, #ede9fe);
}
.tc-mini-thumbs { display: flex; gap: 4px; margin-top: auto; }
.tc-mini-thumbs span {
  flex: 1; aspect-ratio: 16/9; border-radius: 6px;
  background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}
.tc-mini-thumbs span:nth-child(2) { background: linear-gradient(135deg, #c7d2fe, #ddd6fe); }
.tc-mini-thumbs span:nth-child(3) { background: linear-gradient(135deg, #bbf7d0, #a5f3fc); }
.tc-mini-kanban { display: flex; gap: 5px; margin-top: auto; height: 30px; }
.tc-mini-kanban span { flex: 1; border-radius: 4px; background: var(--line); }
.tc-mini-kanban span:nth-child(1) { background: #ddd6fe; }
.tc-mini-kanban span:nth-child(2) { background: #fef3c7; }
.tc-mini-kanban span:nth-child(3) { background: #d1fae5; }
.tc-mini-avs { display: flex; margin-top: auto; }
.tc-mini-avs span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -6px;
  background: var(--line);
}
.tc-mini-avs span:first-child { margin-left: 0; }
.tc-mini-avs span:nth-child(1) { background: linear-gradient(135deg, #f472b6, #8b5cf6); }
.tc-mini-avs span:nth-child(2) { background: linear-gradient(135deg, #22d3ee, #6366f1); }
.tc-mini-avs span:nth-child(3) { background: linear-gradient(135deg, #fbbf24, #f97316); }
.tc-mini-avs span:nth-child(4) { background: linear-gradient(135deg, #34d399, #22d3ee); }
.tc-mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: auto; }
.tc-mini-cal span {
  aspect-ratio: 1; border-radius: 3px; background: var(--line);
}
.tc-mini-cal span:nth-child(2),
.tc-mini-cal span:nth-child(4),
.tc-mini-cal span:nth-child(6) { background: var(--primary); opacity: 0.6; }
.tc-mini-nodes {
  position: relative; height: 40px; margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
}
.tc-mini-nodes span {
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--primary); opacity: 0.5;
}
.tc-mini-nodes::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 50%;
  height: 1px; background: var(--line-2); z-index: -1;
}

/* ============== TESTIMONIALS / RESULTS ============== */
.results { padding: 90px 0; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 14px; color: var(--text-2); }
.rating-row .stars { color: #fbbf24; letter-spacing: 1.5px; }
.rating-row strong { color: var(--text); font-weight: 700; }
.r-count { color: var(--muted); }

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.m-col { display: flex; flex-direction: column; gap: 14px; }
.t-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.t-card p { font-size: 13.5px; line-height: 1.55; color: var(--text-2); margin-bottom: 14px; }
.t-foot { display: flex; align-items: center; gap: 10px; }
.t-av {
  width: 32px; height: 32px; border-radius: 50%;
  flex-shrink: 0;
}
.t-1 { background: linear-gradient(135deg, #f472b6, #8b5cf6); }
.t-2 { background: linear-gradient(135deg, #22d3ee, #6366f1); }
.t-3 { background: linear-gradient(135deg, #fbbf24, #f97316); }
.t-4 { background: linear-gradient(135deg, #34d399, #22d3ee); }
.t-5 { background: linear-gradient(135deg, #fb7185, #f472b6); }
.t-6 { background: linear-gradient(135deg, #a78bfa, #6366f1); }
.t-7 { background: linear-gradient(135deg, #fbbf24, #fb7185); }
.t-8 { background: linear-gradient(135deg, #6366f1, #22d3ee); }
.t-9 { background: linear-gradient(135deg, #10b981, #fbbf24); }
.t-foot strong { display: block; font-size: 12.5px; font-weight: 700; }
.t-foot span { font-size: 11px; color: var(--muted); }

.t-feature {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-color: transparent;
  text-align: left;
  padding: 22px;
}
.t-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #6366f1;
  line-height: 1;
}

/* ============== INSIGHTS PANELS ============== */
.panels { padding: 60px 0; }
.panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.panel h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 24px;
}
.panel h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.map-mock { position: relative; }
.world-svg { width: 100%; height: auto; }
.map-tag {
  display: inline-block;
  background: white;
  border: 1px solid var(--line-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 8px;
}

.chat-mock { display: flex; flex-direction: column; gap: 10px; }
.chat-time { font-size: 11px; color: var(--muted); text-align: center; margin-bottom: 4px; }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 90%;
}
.chat-bubble.light {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-2);
}
.chat-bubble.dark {
  background: var(--grad-purple);
  color: white;
  align-self: flex-end;
}

/* ============== DATA SYNC ============== */
.data-sync { padding: 80px 0; }
.ds-head {
  text-align: center;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}
.ds-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.ds-panel h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-bottom: 28px;
  max-width: 540px;
}
.ds-panel h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.ds-chart { width: 100%; height: 220px; }
.ds-chart svg { width: 100%; height: 100%; }

/* ============== PRICING ============== */
.pricing { padding: 90px 0; }
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.pricing-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.pricing-head p { color: var(--text-2); font-size: 14.5px; max-width: 460px; }

.billing-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.bt-opt {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, color .15s;
}
.bt-opt.active {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.save-tag {
  background: #d1fae5;
  color: #047857;
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.plan-billed { font-size: 11px; color: var(--muted); text-transform: capitalize; }
.plan-billed.light { color: rgba(255, 255, 255, 0.7); }
.plan h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.price { display: flex; align-items: baseline; gap: 4px; }
.amt { font-size: 38px; font-weight: 700; letter-spacing: -0.025em; }
.per { color: var(--muted); font-size: 13px; }
.plan-desc { color: var(--text-2); font-size: 13px; line-height: 1.5; min-height: 38px; }
.plan-feat-head {
  font-size: 12px;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.4;
}
.feat-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.plan .btn { margin-top: auto; }

.plan-popular {
  background: var(--grad-purple);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-pop);
}
.plan-popular h3, .plan-popular .amt { color: white; }
.plan-popular .per, .plan-popular .plan-desc { color: rgba(255, 255, 255, 0.85); }
.plan-popular .plan-feat-head { color: white; border-top-color: rgba(255, 255, 255, 0.2); }
.plan-popular .feat-list li { color: rgba(255, 255, 255, 0.95); }
.plan-popular .feat-list li::before { color: white; }
.popular-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: white;
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============== FAQ ============== */
.faq { padding: 90px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  transition: border-radius .25s, box-shadow .15s;
  box-shadow: var(--shadow-card);
}
.faq-item[open] {
  border-radius: 22px;
  background: var(--bg-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  font-size: 16px;
  color: var(--muted);
  transition: transform .25s;
  font-weight: 300;
  margin-left: 14px;
}
.faq-item[open] .chev { transform: rotate(45deg); color: var(--primary); }
.faq-item p {
  padding: 0 24px 18px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ============== FINAL CTA ============== */
.final-cta {
  padding: 100px 0;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(99, 102, 241, 0.12), transparent 70%),
    radial-gradient(40% 60% at 50% 50%, rgba(244, 114, 182, 0.06), transparent 70%);
}
.final-inner { text-align: center; }
.final-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.final-inner h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.final-inner p { color: var(--text-2); font-size: 16px; margin-bottom: 28px; }
.cta-meta-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ============== FOOTER ============== */
.footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.f-brand .logo { margin-bottom: 14px; }
.f-tag { color: var(--text-2); font-size: 13.5px; margin-bottom: 14px; max-width: 240px; }
.f-yc { color: var(--muted); font-size: 13px; }
.f-yc strong { color: var(--text); font-weight: 600; }
.f-col h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.f-col a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 9px;
  transition: color .15s;
}
.f-col a:hover { color: var(--text); }

.f-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 12.5px;
}
.f-bot-l, .f-bot-r { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.f-theme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.th-opt {
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 12px;
  color: var(--text-2);
}
.th-opt.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}
.status { display: inline-flex; align-items: center; gap: 6px; }
.s-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.f-bot-r a {
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--text-2);
}
.f-bot-r .copy { width: 100%; text-align: right; margin-top: 6px; }

/* ============== TOAST ============== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--text);
  color: white;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 13.5px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform .35s cubic-bezier(0.65, 0, 0.35, 1);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .nav-links, .btn-google { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 24px;
    gap: 14px;
    box-shadow: var(--shadow-soft);
  }
  .steps, .tools-grid, .panels-grid, .plans, .footer-grid, .masonry { grid-template-columns: 1fr 1fr; }
  .tc-feature { grid-row: span 1; grid-column: span 2; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 50px; }
  .steps, .tools-grid, .panels-grid, .plans, .footer-grid, .masonry { grid-template-columns: 1fr; }
  .tc-feature { grid-column: span 1; }
  .hero-ctas { flex-direction: column; padding: 8px; gap: 8px; border-radius: 22px; }
  .hero-ctas .btn { width: 100%; }
  .pricing-head { flex-direction: column; align-items: stretch; }
  .billing-toggle { width: 100%; justify-content: center; }
  .logo-strip { gap: 28px; }
  .logo-strip span { font-size: 14px; }
  .f-bottom { flex-direction: column; align-items: flex-start; }
  .f-bot-r .copy { text-align: left; }
}
