/* =========================================================
   Gamu Journal — Landing Page
   Mobile-first. Tokens from Gamu Blocks DS (tokens.css).
   Studio palette stays monochrome; --accent reserved for
   one moment per screen (Journal violet).
   ========================================================= */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--char);
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  /* Journal violet as the single restrained accent */
  --accent: #8a5cf6;
  --accent-soft: #efe7ff;
  --accent-ink: #ffffff;
  --accent-deep: #6238d9;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--bone);
  padding: 12px 18px; border-radius: 8px;
  font: 600 14px/1 'Geist', system-ui;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

/* ===== Layout primitives ===== */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .wrap { padding: 0 32px; } }
@media (min-width: 1024px) { .wrap { padding: 0 48px; } }

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
}
.eyebrow.on-ink { color: var(--bone-3); }

h1, h2, h3, h4, h5 {
  font-family: 'Geist', system-ui, sans-serif;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--ink-3);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 17px/1 'Geist', system-ui;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-decoration: none;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink-3);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 32px; height: 32px; object-fit: cover; }
.brand small {
  font: 500 10px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  color: var(--bone-3);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}
.nav-links a {
  font: 500 14px/1 'Geist', system-ui;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 120ms;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 8px;
  font: 600 13px/1 'Geist', system-ui;
  text-decoration: none;
  border: 1.5px solid var(--bone);
  min-height: 44px;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; }
@media (max-width: 420px) {
  .nav-cta { display: none; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 10px;
  font: 600 15px/1 'Geist', system-ui;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 120ms var(--ease-out), box-shadow 120ms var(--ease-out), background 120ms;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
  box-shadow: 4px 4px 0 0 var(--accent);
}
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 0 var(--accent); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 0 0 0 0 var(--accent); }

.btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: var(--ink-4);
}
.btn-secondary:hover { background: var(--ink-2); border-color: var(--bone-3); }

.btn-ghost-ink {
  background: transparent;
  color: var(--char);
  border-color: var(--char);
}
.btn-ghost-ink:hover { background: var(--char); color: var(--paper); }

.btn-play {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  padding-left: 18px;
  padding-right: 22px;
  gap: 14px;
}
.btn-play .play-mark {
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.btn-play strong {
  font: 700 17px/1 'Geist', system-ui;
  display: block;
  margin-top: 2px;
}
.btn-play span {
  font: 500 10px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
}
.btn-play .copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn-apple {
  background: transparent;
  color: var(--bone);
  border: 1.5px dashed var(--ink-4);
  padding: 12px 18px;
  gap: 10px;
}
.btn-apple:hover { border-color: var(--bone-2); color: #fff; }
.btn-apple .copy { text-align: left; display: flex; flex-direction: column; gap: 4px; }
.btn-apple strong { font: 700 15px/1 'Geist', system-ui; }
.btn-apple span {
  font: 500 9px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ===== Hero ===== */
.hero {
  background: var(--ink);
  color: var(--bone);
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) { .hero { padding-top: 64px; } }
@media (min-width: 1024px) { .hero { padding-top: 80px; } }

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero .wrap { position: relative; }

.hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--ink-4);
  border-radius: 999px;
  font: 600 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0;
  overflow-wrap: normal;
}
@media (min-width: 480px) { .hero h1 { font-size: 48px; } }
@media (min-width: 768px) { .hero h1 { font-size: 64px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 78px; } }
@media (min-width: 1440px) { .hero h1 { font-size: 88px; } }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: inline;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 6px;
  background: var(--accent);
  transform: rotate(-3deg);
  border-radius: 2px;
}

.hero-sub {
  margin: 24px auto 0;
  max-width: 56ch;
  font: 400 17px/1.5 'Geist', system-ui;
  color: var(--bone-2);
}
@media (min-width: 768px) { .hero-sub { font-size: 19px; } }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 640px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ink-4);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font: 500 12px/1 'Geist', system-ui;
  color: var(--bone-2);
  letter-spacing: 0.01em;
}
.chip img { width: 14px; height: 14px; filter: invert(80%); opacity: 0.8; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px auto 0;
  max-width: 380px;
}
@media (min-width: 540px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 720px;
  }
}
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 120ms var(--ease-out), filter 120ms var(--ease-out);
}
.store-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.store-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.store-link img {
  width: auto;
  height: 54px;
  max-width: min(100%, 240px);
  object-fit: contain;
}
.hero-ctas .store-link { flex: 0 0 auto; }
@media (min-width: 540px) {
  .hero-ctas .store-link { flex: 0 1 240px; }
}

.hero-micro {
  margin: 24px auto 0;
  font: 500 12px/1.5 'Geist Mono', ui-monospace, monospace;
  color: var(--bone-3);
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
}
.hero-micro span { display: inline-flex; align-items: center; gap: 8px; }
.hero-micro .sep { color: var(--ink-4); }

.see-privacy {
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1 'Geist', system-ui;
  color: var(--bone-2);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.see-privacy:hover { color: var(--bone); text-decoration-thickness: 3px; }

/* ===== Hero phones ===== */
.hero-phones {
  position: relative;
  margin: 56px auto 0;
  height: clamp(420px, 88vw, 720px);
  max-width: 1100px;
  padding: 0 10px;
}
.phone {
  position: absolute;
  border-radius: 36px;
  border: 8px solid #1a1a1a;
  background: #000;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 2px 0 rgba(255,255,255,0.04) inset;
  transition: transform 200ms var(--ease-out);
}
.phone picture,
.showcase-phone picture,
.feat-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}
.phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}

.phone-center {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(220px, 55%, 320px);
  aspect-ratio: 9 / 19.5;
  z-index: 3;
}
.phone-left, .phone-right {
  bottom: 40px;
  width: clamp(150px, 35%, 220px);
  aspect-ratio: 9 / 19.5;
  z-index: 1;
  opacity: 0.96;
}
.phone-left {
  left: 0;
  transform: rotate(-6deg);
}
.phone-right {
  right: 0;
  transform: rotate(6deg);
}
@media (min-width: 640px) {
  .phone-left  { left: 4%;  transform: rotate(-8deg); }
  .phone-right { right: 4%; transform: rotate(8deg); }
}
@media (min-width: 1024px) {
  .phone-left  { left: 10%; transform: rotate(-8deg) translateY(-10px); }
  .phone-right { right: 10%; transform: rotate(8deg) translateY(-10px); }
}

.hero-tag {
  position: absolute;
  font: 500 11px/1.3 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-3);
  display: none;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 8px;
}
@media (min-width: 900px) {
  .hero-tag { display: block; }
  .hero-tag.tl { top: 56px; left: 8px; }
  .hero-tag.tr { top: 56px; right: 8px; text-align: right; }
  .hero-tag.tr::before { margin-left: auto; }
  .hero-tag.bl { bottom: 56px; left: 8px; }
  .hero-tag.br { bottom: 56px; right: 8px; text-align: right; }
  .hero-tag.br::before { margin-left: auto; }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--ink-2);
  color: var(--bone-2);
  border-top: 1px solid var(--ink-3);
  padding: 20px 0;
}
.trust-strip .wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
}
.trust-strip .wrap::-webkit-scrollbar { display: none; }
.trust-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font: 500 13px/1 'Geist', system-ui;
  color: var(--bone-2);
  white-space: nowrap;
}
.trust-item img { width: 16px; height: 16px; filter: invert(80%); }
.trust-item + .trust-item { border-left: 1px solid var(--ink-3); }

/* ===== Section frame ===== */
.section {
  padding: 64px 0;
}
@media (min-width: 768px) { .section { padding: 96px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 720px;
}
.section-header h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.024em;
  color: var(--char);
}
.section-header p {
  font: 400 17px/1.55 'Geist', system-ui;
  color: var(--char-2);
  margin: 0;
  max-width: 56ch;
}
.section-header.on-ink h2 { color: var(--bone); }
.section-header.on-ink p { color: var(--bone-2); }
@media (min-width: 768px) {
  .section-header { gap: 20px; margin-bottom: 64px; }
}

/* ===== Showcase ===== */
.showcase {
  background: var(--paper);
}
.showcase-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 20px 32px;
  margin: 0 -20px;
}
.showcase-rail::-webkit-scrollbar { display: none; }
.showcase-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-phone {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  border: 1.5px solid var(--char);
  background: #000;
  overflow: hidden;
  position: relative;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.showcase-card:hover .showcase-phone {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 0 var(--char);
}
.showcase-phone img { width: 100%; height: 100%; object-fit: cover; }

.showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.showcase-meta .num {
  font: 600 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  color: var(--char-3);
}
.showcase-meta h4 {
  font: 600 17px/1.25 'Geist', system-ui;
  letter-spacing: -0.01em;
  color: var(--char);
  margin: 0;
}
.showcase-meta p {
  font: 400 14px/1.45 'Geist', system-ui;
  color: var(--char-2);
  margin: 0;
}

@media (min-width: 768px) {
  .showcase-rail {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0;
  }
  .showcase-card { width: auto; }
  .showcase-card:nth-child(even) { transform: translateY(40px); }
}
@media (min-width: 1024px) {
  .showcase-card:nth-child(even) { transform: translateY(56px); }
}

/* ===== Features ===== */
.features {
  background: var(--paper-2);
  border-top: 1.5px solid var(--paper-3);
  border-bottom: 1.5px solid var(--paper-3);
}
.feature-grid {
  display: grid;
  gap: 24px;
}
.feature {
  display: grid;
  gap: 24px;
  background: var(--paper);
  border: 1.5px solid var(--char);
  border-radius: 20px;
  padding: 28px;
}
.feature .feat-copy h3 {
  font: 700 26px/1.15 'Geist', system-ui;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  color: var(--char);
}
.feature .feat-copy p {
  font: 400 16px/1.5 'Geist', system-ui;
  color: var(--char-2);
  margin: 0 0 20px;
  max-width: 48ch;
}
.feat-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 500 14px/1.45 'Geist', system-ui;
  color: var(--char);
}
.feat-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  border: 1.5px solid var(--char);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 45%, var(--accent) 45% 55%, transparent 55%);
  margin-top: 2px;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font: 600 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feat-shot {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  border: 8px solid #111;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.feat-shot img { width: 100%; height: 100%; object-fit: cover; }

.feature.flip { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.feature.flip .feat-copy h3 { color: var(--bone); }
.feature.flip .feat-copy p { color: var(--bone-2); }
.feature.flip .feat-bullets li { color: var(--bone); }
.feature.flip .feat-bullets li::before { border-color: var(--bone); }
.feature.flip .feat-tag { background: rgba(139,92,246,0.18); color: #c9b3ff; }

@media (min-width: 768px) {
  .feature { grid-template-columns: 1fr 1fr; padding: 40px; gap: 40px; align-items: center; }
  .feature.reverse .feat-shot { order: -1; }
}
@media (min-width: 1024px) {
  .feature { padding: 56px; gap: 64px; }
  .feature .feat-copy h3 { font-size: 36px; }
}

/* ===== Privacy section ===== */
.privacy {
  background: var(--ink);
  color: var(--bone);
}
.privacy .section-header h2 em {
  font-style: normal;
  color: var(--accent);
}
.privacy-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .privacy-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.priv-card {
  background: var(--ink-2);
  border: 1.5px solid var(--ink-3);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.priv-ic {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--bone);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.priv-ic img { width: 22px; height: 22px; filter: invert(95%); }
.priv-card h4 {
  font: 600 18px/1.2 'Geist', system-ui;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.01em;
}
.priv-card p {
  font: 400 14px/1.5 'Geist', system-ui;
  color: var(--bone-2);
  margin: 0;
}
.priv-card .label {
  font: 600 10px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-3);
}

.privacy-note {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1.5px dashed var(--ink-4);
  border-radius: 12px;
  font: 400 14px/1.55 'Geist', system-ui;
  color: var(--bone-2);
  max-width: 720px;
}
.privacy-note strong { color: var(--bone); font-weight: 600; }

/* ===== Pricing ===== */
.pricing { background: var(--paper); }
.price-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

.price-card {
  background: var(--paper);
  border: 1.5px solid var(--char);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card.pro {
  background: var(--char);
  color: var(--paper);
  box-shadow: 8px 8px 0 0 var(--accent);
}
.price-card.pro .price-head h3,
.price-card.pro .price-head .price { color: var(--paper); }
.price-card.pro ul li { color: var(--paper-2); }
.price-card.pro ul li::before { border-color: var(--paper); }
.price-card.pro .price-foot small { color: var(--paper-3); }

.price-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid currentColor;
  position: relative;
}
.price-head .tier {
  font: 600 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-3);
}
.price-card.pro .price-head .tier { color: var(--accent); }
.price-head h3 {
  font: 700 32px/1.05 'Geist', system-ui;
  letter-spacing: -0.018em;
  color: var(--char);
  margin: 0;
}
.price-head .price {
  font: 700 48px/1 'Geist', system-ui;
  letter-spacing: -0.022em;
  color: var(--char);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-head .price small {
  font: 500 14px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  opacity: 0.7;
  font-weight: 500;
}
.price-head .note {
  font: 500 12px/1.4 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--char-3);
}
.price-card.pro .price-head .note { color: var(--accent); }

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-card ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font: 400 15px/1.4 'Geist', system-ui;
  color: var(--char);
}
.price-card ul li::before {
  content: '';
  width: 16px; height: 16px;
  border: 1.5px solid var(--char);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  background:
    linear-gradient(135deg, transparent 45%, var(--accent) 45% 55%, transparent 55%);
}

.price-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-foot small {
  font: 400 12px/1.4 'Geist', system-ui;
  color: var(--char-3);
}

.btn-full {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font: 600 15px/1 'Geist', system-ui;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1.5px solid currentColor;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.price-card .btn-full.solid {
  background: var(--char);
  color: var(--paper);
  border-color: var(--char);
}
.price-card.pro .btn-full.solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.price-card.pro .btn-full.solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ===== FAQ ===== */
.faq { background: var(--paper-2); border-top: 1.5px solid var(--paper-3); }
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1.5px solid var(--paper-3);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1.5px solid var(--paper-3); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font: 600 18px/1.35 'Geist', system-ui;
  letter-spacing: -0.01em;
  color: var(--char);
  text-align: left;
  cursor: pointer;
  min-height: 56px;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--char);
  display: grid;
  place-items: center;
  transition: transform 200ms var(--ease-out), background 120ms;
}
.faq-q .chev img { width: 14px; height: 14px; }
.faq-q[aria-expanded="true"] .chev {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq-q[aria-expanded="true"] .chev img { filter: invert(100%); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease-in-out);
}
.faq-a-inner {
  padding: 0 4px 24px;
  font: 400 16px/1.55 'Geist', system-ui;
  color: var(--char-2);
  max-width: 64ch;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}
.footer-brand p {
  font: 400 14px/1.55 'Geist', system-ui;
  color: var(--bone-2);
  max-width: 36ch;
  margin: 14px 0 0;
}
.footer-col h4 {
  font: 600 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font: 500 14px/1.3 'Geist', system-ui;
  color: var(--bone-2);
  text-decoration: none;
}
.footer-col a:hover { color: var(--bone); text-decoration: underline; text-underline-offset: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--ink-3);
  font: 400 12px/1.5 'Geist', system-ui;
  color: var(--bone-3);
}
.footer-bottom .copy {
  font: 500 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
}
.footer-bottom a { color: var(--bone-2); text-decoration: underline; text-underline-offset: 3px; }
.credits {
  flex: 1 1 100%;
  font: 400 11px/1.5 'Geist', system-ui;
  color: var(--bone-3);
  max-width: 70ch;
}
.credits a { color: var(--bone-2); }

/* ===== Sticky bottom CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform 240ms var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .small-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ink-3);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.sticky-cta .small-mark img { width: 38px; height: 38px; }
.sticky-cta .copy { flex: 1; min-width: 0; }
.sticky-cta strong {
  display: block;
  font: 600 13px/1.2 'Geist', system-ui;
  color: var(--bone);
}
.sticky-cta span {
  display: block;
  font: 500 11px/1 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  color: var(--bone-3);
  margin-top: 4px;
  text-transform: uppercase;
}
.sticky-cta .btn-mini {
  padding: 10px 14px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 8px;
  font: 600 13px/1 'Geist', system-ui;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ===== Section reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .phone-left, .phone-right { transform: none; }
}

/* Body offset so sticky CTA doesn't cover footer */
body { padding-bottom: 0; }
@media (max-width: 899px) {
  body.with-sticky { padding-bottom: 88px; }
}

/* Helpers */
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.center { text-align: center; }
