/* ==========================================================================
   Nimzey landing page — design system
   Black / white / light gray + soft pink accent
   ========================================================================== */

:root {
  --bg: #f7f6f4;
  --bg-card: #ffffff;
  --bg-dark: #0e0e0e;

  --text: #0a0a0a;
  --text-secondary: #5b5b5b;
  --text-muted: #8a8a8a;
  --text-on-dark: #f7f6f4;
  --text-on-dark-muted: #b5b5b5;

  --border: #e6e4e0;
  --border-strong: #1a1a1a;

  --accent-pink: #ff69b4;
  --accent-pink-soft: #ffd6ea;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Wider container so the 5 Capture/Reflect/Create cards (and
     every other section) get more horizontal real estate. Was 1240. */
  --container: 1700px;
  --section-pad: clamp(72px, 9vw, 128px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

section { padding: var(--section-pad) 0; position: relative; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
h1.display { font-size: clamp(46px, 6.4vw, 92px); }
h2.display { font-size: clamp(34px, 4.6vw, 60px); }
h3.display { font-size: clamp(26px, 3.2vw, 40px); }

p { color: var(--text-secondary); }
.lead { font-size: 17px; line-height: 1.6; max-width: 56ch; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-pink);
}
.eyebrow--dark {
  color: var(--text);
  background: var(--text);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #1d1d1d; box-shadow: var(--shadow-md); }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--secondary:hover { border-color: var(--text); background: var(--bg-card); }

.btn--ghost-light {
  background: var(--bg-card);
  color: var(--text);
}
.btn--ghost-light:hover { background: #fff; box-shadow: var(--shadow-md); }

.btn--inverse {
  background: var(--bg-card);
  color: var(--text);
}
.btn--inverse:hover { background: #fff; }

.btn--link-light {
  background: transparent;
  color: var(--bg);
  padding: 14px 6px;
}
.btn--link-light:hover { opacity: 0.85; transform: translateY(0); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-pink); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 244, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav__logo svg { height: 24px; width: auto; }
.nav__logo svg path { fill: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav__link:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__actions .btn { padding: 10px 18px; font-size: 13.5px; }

.nav__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav__menu-btn svg { width: 22px; height: 22px; stroke: var(--text); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .nav__login { display: none; }
  .nav__menu-btn { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer__top {
  display: flex; justify-content: space-between; align-items: center; padding: 4px 0 24px;
}
.mobile-drawer__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__link {
  font-family: var(--font-display);
  font-size: 36px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-drawer__cta { margin-top: auto; padding: 24px 0; display: flex; flex-direction: column; gap: 10px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(60px, 7vw, 100px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__title {
  margin: 18px 0 22px;
  text-transform: none;
}
.hero__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--text);
  display: inline-block;
}
.hero__title em::after {
  content: "";
  display: inline-block;
  width: 0;
}
.hero__lead { font-size: 18px; max-width: 50ch; }
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}
.hero__social {
  display: flex; align-items: center; gap: 16px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
  background: linear-gradient(135deg, #ffd6ea, #c8b8ff);
}
.avatar-stack img:first-child { margin-left: 0; }
.hero__rating { display: flex; flex-direction: column; gap: 2px; }
.hero__stars { display: flex; gap: 2px; align-items: center; font-weight: 600; font-size: 13px; color: var(--text); }
.hero__stars span { letter-spacing: -1px; }
.hero__rating-text { font-size: 13px; color: var(--text-secondary); }

.hero__visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
}

/* Floating doodles */
.doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
}
.doodle--rotate-1 { transform: rotate(-12deg); }
.doodle--rotate-2 { transform: rotate(8deg); }
.doodle--pink path { fill: var(--accent-pink); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-6px) rotate(var(--r, 0deg)); }
}
.doodle--float { animation: float 5s ease-in-out infinite; }

/* App mockup */
.app-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.app-mockup__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafaf8;
}
.app-mockup__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #e8e6e2;
}
.app-mockup__dot--red { background: #ff6259; }
.app-mockup__dot--yellow { background: #ffbd2e; }
.app-mockup__dot--green { background: #28c93f; }
.app-mockup__title {
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.app-mockup__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: calc(100% - 45px);
  background:
    radial-gradient(circle at 20% 20%, #fff 0%, transparent 50%),
    #fafaf8;
}
.app-mockup__doodle {
  width: 70%;
  max-width: 380px;
  height: auto;
}

/* Floating capture widget */
.capture-widget {
  position: absolute;
  right: -12px;
  bottom: 26%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  width: 188px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(3deg);
}
.capture-widget__row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.capture-widget__title { font-weight: 600; }
.capture-widget__close { color: var(--text-muted); font-size: 16px; line-height: 1; }
.capture-widget__time {
  display: flex; align-items: center; gap: 8px;
  font-family: 'SF Mono', 'Menlo', ui-monospace, monospace;
  font-size: 14px;
  color: var(--text-secondary);
}
.capture-widget__rec {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
.capture-widget__bars {
  display: flex; align-items: end; gap: 3px; height: 14px;
}
.capture-widget__bars span {
  display: block; width: 3px;
  background: var(--text);
  border-radius: 2px;
  animation: bar 1.2s ease-in-out infinite;
}
.capture-widget__bars span:nth-child(1) { height: 60%; animation-delay: 0s; }
.capture-widget__bars span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.capture-widget__bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.capture-widget__bars span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

.hero__quiet-line {
  position: absolute;
  right: 6%;
  bottom: -42px;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero__quiet-line img { width: 28px; height: auto; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 1.1 / 1; max-width: 540px; margin: 0 auto; width: 100%; }
  .hero__quiet-line { position: static; margin-top: 24px; justify-content: center; }
}

/* ==========================================================================
   Feature cards
   ========================================================================== */
.section-intro { text-align: center; margin-bottom: 56px; }
.section-intro .eyebrow { margin-bottom: 12px; }
.section-intro h2 { max-width: 14ch; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  /* Center the icon + text vertically within each card and align
     them to the card's horizontal center. The previous layout was
     flush-left under the icon; users wanted the new illustrations
     visually anchored. */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d6d4d0;
}
.feature-card__icon {
  /* Larger illustrations now that the container is wider — the new
     SVGs are detailed enough to warrant ~96px. */
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon img,
.feature-card__icon svg { width: 100%; height: 100%; object-fit: contain; }
.feature-card__title { font-size: 16px; font-weight: 700; color: var(--text); }
.feature-card__copy { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(4), .feature-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 22px 18px; }
}
@media (max-width: 460px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how-it-works__grid {
  display: grid;
  /* Steps column gets ~2× the headline column instead of 1.4× and
     the gap is tighter — the wider container left a lot of empty
     space between "3 simple steps" and "Install Nimzey". The steps
     now fill the remaining horizontal space so the icons / labels
     read bigger and the arrows breathe more. */
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.how-it-works__head .eyebrow--dark {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.how-it-works__doodle {
  margin-top: 36px;
  width: 130px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.step__icon {
  /* Bumped along with the wider steps column so the illustrations
     don't look swamped by the now-larger label/copy. */
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon svg,
.step__icon img { width: 100%; height: 100%; object-fit: contain; }
.step__title { font-size: 19px; font-weight: 600; }
.step__copy { font-size: 14px; color: var(--text-secondary); }
.step-arrow {
  align-self: center;
  margin-top: 22px;
  color: var(--text-muted);
}
.step-arrow svg { width: 52px; }
.step-arrow svg path { stroke: currentColor; }

@media (max-width: 900px) {
  .how-it-works__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step-arrow { display: none; }
}

/* ==========================================================================
   Recap showcase
   ========================================================================== */
.recap__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  /* Top-align so the "Your week, visually told" copy starts at the
     same vertical position as the stats mock on the right — the
     previous `center` alignment dropped the copy ~70px below the
     mock's top edge, which read as misaligned. */
  align-items: start;
}
.recap__list {
  display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0 32px;
}
.recap__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
}
.recap__list li::before {
  content: "";
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5L9.5 17L19 7' stroke='%230a0a0a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ─── Stats mockup — mirrors the real StatsPage in the app ─── */
.stats-mock {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 3px solid #0a0a0a;
  border-radius: 20px;
  padding: 18px 18px 22px;
  box-shadow: 12px 12px 0 #0a0a0a;
}
.stats-mock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 4px 4px 14px;
  gap: 12px;
}
.stats-mock__title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(20px, 2vw, 28px);
}
.stats-mock__tabs {
  display: inline-flex;
  gap: 2px;
  background: #fff;
  border: 2px solid #0a0a0a;
  border-radius: 999px;
  padding: 2px;
}
.stats-mock__tab {
  background: transparent;
  border: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
.stats-mock__tab--active {
  background: #0a0a0a;
  color: #fff;
}
.stats-mock__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  position: relative;
  background: #fff;
  border: 3px solid #0a0a0a;
  border-radius: 14px;
  padding: 14px 14px 42px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: #0a0a0a;
}
.stat-card__value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 0.9;
  margin-top: 2px;
}
.stat-card__big {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.stat-card__unit {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding-top: 8px;
  text-transform: uppercase;
}
.stat-card__title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-card__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 2px solid #0a0a0a;
}
.stat-card__doodle {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 64px;
  height: 64px;
  pointer-events: none;
}
.stat-card__doodle img { width: 100%; height: 100%; object-fit: contain; }
.stat-card__doodle--tilt img { transform: rotate(20deg); }

/* Tool split bar inside the mock */
.stats-mock__split {
  margin-top: 12px;
  padding: 14px;
  background: #fff;
  border: 3px solid #0a0a0a;
  border-radius: 14px;
}
.stats-mock__split-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stats-mock__split-row {
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.stats-mock__split-row:last-child { margin-bottom: 0; }
.stats-mock__split-name {
  font-size: 11px;
  font-weight: 700;
}
.stats-mock__split-track {
  height: 10px;
  background: #f2f2f2;
  border: 2px solid #0a0a0a;
  border-radius: 999px;
  overflow: hidden;
}
.stats-mock__split-fill {
  height: 100%;
  background: #0a0a0a;
}
.stats-mock__split-pct {
  font-size: 10.5px;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.sticky-note {
  position: absolute;
  top: -22px;
  right: 22px;
  background: var(--accent-pink-soft);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transform: rotate(6deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  line-height: 1.15;
  z-index: 2;
  letter-spacing: -0.01em;
}
.sticky-note::after {
  content: ":)";
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: var(--text-secondary);
  font-weight: 600;
}
.recap-doodle {
  /* Tucked behind the stats mock and bumped to ~3x its prior size
     (140 → 420), nudged 40px further left and 130px upward so the
     character peeks out of the stats card's left edge rather than
     sitting under it. z-index sits BELOW the stats-mock card so
     the doodle reads as part of the same composition. */
  position: absolute;
  bottom: 74px;
  left: -16px;
  width: 420px;
  transform: rotate(-8deg);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .recap__grid { grid-template-columns: 1fr; }
  .recap-card__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Captures section
   ========================================================================== */
.captures__head { text-align: left; margin-bottom: 32px; }
.captures__head h2 { max-width: 18ch; }
.captures__head p { max-width: 50ch; margin-top: 14px; }

.filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.chip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: 0.8;
}

/* ─── App project cards — mirror real home grid in the app ─── */
.captures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.app-card {
  position: relative;
  border-radius: 26px;
  aspect-ratio: 406 / 440;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  border: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-ui);
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.app-card__arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
  opacity: 0.55;
}
.app-card__arrow svg { width: 100%; height: 100%; }
.app-card__icon {
  /* App-brand icons (Ps/Ai/Fi/Ae) bumped ~50% from 84px so the
     captures-grid cards read with the brand glyph as their primary
     anchor rather than the text below. Font-size + radius scaled
     proportionally so the rounded-square chip stays balanced. */
  width: 126px;
  height: 126px;
  border-radius: 22%;
  display: grid;
  place-items: center;
  font-size: 57px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
}
.app-card__icon--solid { background: var(--icon-bg, rgba(0, 0, 0, 0.4)); color: var(--icon-fg, #fff); }

/* SVG variant — drop the chip background so the inline brand logo
   (e.g. the multi-color Figma quadrants) fills the icon box edge-to-
   edge instead of sitting inside a frosted square. */
.app-card__icon--svg {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  overflow: hidden;
}
.app-card__icon--svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.app-card__name {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 12px;
  text-transform: capitalize;
  color: #fff;
}
.app-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.app-card__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.app-card__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 4px 10px 4px 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  align-self: flex-start;
  color: #fff;
}
.app-card__status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.app-card__status--rec .app-card__status-dot {
  background: #2fe270;
  box-shadow: 0 0 0 3px rgba(47, 226, 112, 0.3);
}

.captures__cta {
  display: flex; justify-content: center;
  margin-top: 36px;
}

@media (max-width: 1080px) {
  .captures-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .captures-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 56px;
}
.testimonials__head h2 { max-width: 14ch; }
.testimonials__doodle { margin-top: 28px; width: 140px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}
.testimonial__user {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd6ea, #c8b8ff);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial__name { font-size: 14px; font-weight: 600; }
.testimonial__title { font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .testimonials__top { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

.logo-row {
  margin-top: 64px;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-row__item {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--text);
  opacity: 0.55;
  transition: opacity 0.2s ease;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-row__item:hover { opacity: 1; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-block {
  margin: 0 auto;
  max-width: 1240px;
}
.cta-block__inner {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-block h2 { color: var(--text-on-dark); max-width: 14ch; }
.cta-block p { color: var(--text-on-dark-muted); margin-top: 18px; max-width: 48ch; font-size: 16px; }
.cta-block__actions { margin-top: 28px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.cta-block__doodles {
  position: relative;
  height: 240px;
}
.cta-block__doodles svg { filter: brightness(0) invert(1); }
.cta-block__doodles .doodle--pink { filter: none; }
.cta-block__doodles .doodle--pink path { fill: var(--accent-pink); }

@media (max-width: 900px) {
  .cta-block__inner { grid-template-columns: 1fr; }
  .cta-block__doodles { height: 160px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 80px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
.footer__brand .nav__logo svg { height: 22px; }
.footer__tag { color: var(--text-secondary); margin-top: 12px; font-size: 14px; }
.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s ease;
}
.footer__list a:hover { color: var(--accent-pink); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}
.footer__socials a:hover { color: var(--text); border-color: var(--text); }
.footer__socials svg { width: 14px; height: 14px; }

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 460px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ---------- Utility doodles (positioning helpers per section) ---------- */
.deco { position: absolute; pointer-events: none; }

/* hero specific positions */
.hero .deco--star-1 { top: -6%; left: 38%; width: 36px; }
.hero .deco--star-2 { top: 38%; left: 50%; width: 26px; }
.hero .deco--swiggle-1 { top: 48%; right: 42%; width: 70px; }
.hero .deco--burst { top: 18%; right: -2%; width: 60px; }

/* recap pink scribble */
.recap .deco--swiggle-pink {
  position: absolute;
  bottom: -40px;
  right: 30%;
  width: 80px;
}
.recap .deco--swiggle-pink path { fill: var(--accent-pink); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d6d4d0;
}

.pricing-card--founders {
  background: var(--bg);
  border: 3px solid #0a0a0a;
  border-radius: 22px;
  box-shadow: 12px 12px 0 #0a0a0a;
  padding: 38px 32px 30px;
}
.pricing-card--founders:hover {
  transform: translateY(-3px);
  box-shadow: 12px 12px 0 #0a0a0a;
  border-color: #0a0a0a;
}

.pricing-card__sticker {
  position: absolute;
  top: -22px;
  right: 22px;
  background: var(--accent-pink-soft);
  padding: 12px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transform: rotate(6deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  line-height: 1.15;
  z-index: 2;
  text-align: center;
}
.pricing-card__sticker--trial {
  background: #d4ff00;
  transform: rotate(-6deg);
  left: 18px;
  right: auto;
}

.pricing-card__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pricing-card--founders .pricing-card__head {
  border-bottom-color: #0a0a0a;
  border-bottom-width: 2px;
}
.pricing-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-card--founders .pricing-card__name {
  color: var(--accent-pink);
}
.pricing-card__tag {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 6px;
  line-height: 1;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.pricing-card__period {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 26px;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
}
.pricing-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5L9.5 17L19 7' stroke='%230a0a0a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-card--founders .pricing-card__list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5L9.5 17L19 7' stroke='%23ff69b4' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-card__list strong { font-weight: 700; }

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  padding: 16px 22px;
  font-size: 15px;
}

.pricing-card__fine {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.pricing__footnote {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing__footnote a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.15s ease;
}
.pricing__footnote a:hover { border-color: var(--text); }

.pricing-card__cta.is-sold-out {
  background: var(--text-muted);
  color: var(--bg);
  cursor: not-allowed;
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 980px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 36px; max-width: 460px; }
  .pricing-card--founders { box-shadow: 8px 8px 0 #0a0a0a; }
}

/* ==========================================================================
   Auth pages (login / account)
   ========================================================================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.auth-page__header {
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-page__home {
  font-size: 13px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.auth-page__home:hover { color: var(--text); }

.auth-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.auth-card__doodle {
  position: absolute;
  top: -36px;
  right: -28px;
  width: 88px;
  transform: rotate(12deg);
  pointer-events: none;
}
.auth-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.auth-card__subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.auth-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-form__input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}
.auth-form__submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  margin-top: 4px;
}

.auth-form__hint {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.auth-form__hint a { color: var(--text); font-weight: 600; }
.auth-form__hint a:hover { color: var(--accent-pink); }

.auth-form__sent {
  display: none;
  background: var(--accent-pink-soft);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.auth-form.is-sent .auth-form__sent { display: block; }
.auth-form.is-sent .auth-form__fields { display: none; }

/* Account page */
.account-banner {
  background: var(--accent-pink-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 22px;
}
.account-banner strong { font-weight: 700; }

.account-card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-md);
}
.account-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.account-card__hello {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.account-card__email {
  font-size: 13.5px;
  color: var(--text-secondary);
}
.account-card__plan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.account-card__plan--founders {
  background: var(--accent-pink-soft);
  color: var(--text);
}
.account-card__plan--trial {
  background: #d4ff00;
  color: var(--text);
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.account-row:last-of-type { border-bottom: none; }
.account-row__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.account-row__value {
  font-size: 14px;
  color: var(--text);
  font-family: 'SF Mono', 'Menlo', ui-monospace, monospace;
  font-weight: 500;
}

.account-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-actions .btn { width: 100%; padding: 14px 22px; }

.account-signout {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.account-signout a { color: var(--text); font-weight: 600; }
.account-signout a:hover { color: var(--accent-pink); }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11.5px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  transition: all 0.15s ease;
}
.copy-btn:hover { color: var(--text); border-color: var(--text); }
.copy-btn.is-copied { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ==========================================================================
   Tighter section padding for how-it-works + recap (Seso request).
   Override the default 72-128px section padding with a narrower band.
   ========================================================================== */
.how-it-works,
.recap {
  padding: clamp(48px, 6vw, 88px) 0;
}

/* ==========================================================================
   Supported programs (sits below pricing). Pill row of brand chips.
   ========================================================================== */
.supported {
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
}
.supported__head {
  text-align: center;
  margin-bottom: 28px;
}
.supported__head .eyebrow { margin-bottom: 10px; }
.supported__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto;
}
.supported__row {
  /* Force a 4-per-row grid (was a free-wrapping flex that packed up
     to 6 across at the wider container width). Now 7 chips → 4 on
     the first row, 3 centered on the second. */
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.program-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.program-chip:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.program-chip__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--icon-bg, #1e1e1e);
  color: var(--icon-fg, #ffffff);
  overflow: hidden;
}

/* When the chip icon contains an inline SVG (e.g. the multi-color
   Figma logo) instead of a 2-letter text glyph, drop the chip
   background and let the SVG fill the box edge-to-edge. */
.program-chip__icon--svg {
  background: transparent;
  padding: 0;
}
.program-chip__icon--svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.program-chip__name {
  letter-spacing: -0.005em;
}

/* ===========================================================
   Content pages (About, Terms, Privacy, Help)
   =========================================================== */
.content-page {
  background: var(--bg);
}

.content-page__hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(32px, 5vw, 56px);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.content-page__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.content-page__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.content-page__subtitle {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.content-page__updated {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.content-page__body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 120px);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.content-page__body h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}

.content-page__body h2:first-child {
  margin-top: 0;
}

.content-page__body h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.content-page__body p {
  margin-bottom: 16px;
}

.content-page__body ul,
.content-page__body ol {
  margin: 8px 0 20px;
  padding-left: 22px;
}

.content-page__body li {
  margin-bottom: 8px;
}

.content-page__body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-page__body a:hover {
  opacity: 0.75;
}

.content-page__body strong {
  font-weight: 600;
  color: var(--text);
}

.content-page__body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* FAQ accordion-style cards on Help page */
.faq-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 24px;
}

.faq-item {
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
}

.faq-item__q {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.faq-item__a {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item__a p { margin-bottom: 10px; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ---------- Contact form ---------- */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 120px);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
}

.contact-form__hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-form__input {
  font-family: inherit;
  font-size: 15.5px;
  line-height: 1.4;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface, #fff);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(214, 92, 44, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

/* Honeypot — visually hidden but accessible only to bots */
.contact-form__honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-form__submit {
  padding: 13px 26px;
  font-size: 15.5px;
}

.contact-form__submit:disabled {
  opacity: 0.55;
  cursor: default;
}

.contact-form__status {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form__status[data-kind="err"] {
  color: #c4351c;
}

.contact-form__success {
  display: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  background: var(--surface, #fff);
  text-align: center;
}

.contact-form__success.is-visible { display: block; }

.contact-form__success h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.contact-form__success p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-alt {
  margin-top: 28px;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-alt a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hide placeholder Instagram so it looks like an icon but isn't clickable */
.footer__social-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: inherit;
  opacity: 0.5;
  cursor: default;
}
.footer__social-placeholder svg {
  width: 18px;
  height: 18px;
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
