:root {
  --ink: #1B1712;
  --cover-ink: #F5EFE6;
  --accent: #E8622C;
  --accent-bright: #FF6B00;
  --olive: #4B5D3A;
  --muted: #8C8374;
  --line: #E8E2D6;
  --panel: #FBF8F3;
  --paper: #FFFFFF;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
.display { font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27,23,18,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(245,239,230,0.1);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.brand-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark img { width: 32px; height: 32px; border-radius: 50%; }
.brand-mark .brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-mark .brand-name { color: var(--cover-ink); font-weight: 700; font-size: 15px; letter-spacing: 0.01em; }
.brand-mark .brand-tagline { color: var(--accent-bright); font-weight: 600; font-size: 10.5px; letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a {
  color: rgba(245,239,230,0.8); text-decoration: none; font-size: 13.5px; font-weight: 600;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cover-ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-bright); color: #fff; text-decoration: none;
  font-size: 13.5px; font-weight: 700; padding: 8px 16px; border-radius: 999px;
  transition: filter 0.15s ease;
}
.nav-cta:hover { filter: brightness(1.08); }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: var(--cover-ink); padding: 72px 0 88px; }
.hero-kicker {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-bright); font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 400; line-height: 1.1;
  margin: 0 0 20px; max-width: 15ch; text-wrap: balance;
}
.hero-sub {
  font-size: 18px; color: rgba(245,239,230,0.78); max-width: 46ch; margin: 0 0 32px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: filter 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent-bright); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border: 1px solid rgba(245,239,230,0.3); color: var(--cover-ink); }
.btn-ghost:hover { background: rgba(245,239,230,0.08); }

.proof-strip {
  display: flex; gap: 14px; flex-wrap: wrap;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3);
  border-radius: 12px; padding: 16px 20px; max-width: 640px;
}
.proof-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; }
.proof-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); flex-shrink: 0; }
.proof-item b { color: var(--accent-bright); }

/* ---------- page hero (secondary pages) ---------- */
.page-hero { background: var(--ink); color: var(--cover-ink); padding: 56px 0 60px; }
.page-hero .eyebrow { color: var(--accent-bright); }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 400; margin: 0 0 14px; text-wrap: balance; }
.page-hero p { font-size: 16.5px; color: rgba(245,239,230,0.78); max-width: 56ch; margin: 0; line-height: 1.6; }

/* ---------- section shared ---------- */
section { padding: 76px 0; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 10px;
}
.sec-head h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 400; margin: 0 0 14px; text-wrap: balance; }
.sec-lede { font-size: 16px; color: #5A5248; max-width: 62ch; margin: 0 0 44px; line-height: 1.65; }
.sec-lede b { color: var(--ink); }
.alt { background: var(--panel); }

/* ---------- feature banner carousel ---------- */
.fcarousel { position: relative; background: var(--ink); overflow: hidden; }
.fcarousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.65,0,0.35,1); }
.fslide {
  min-width: 100%; padding: 46px 24px; display: flex; align-items: center; justify-content: center;
  gap: 22px; text-align: left;
}
.fslide .ficon {
  font-size: 44px; flex-shrink: 0; width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
}
.fslide .ftext { max-width: 480px; }
.fslide h3 { color: var(--cover-ink); font-size: 19px; margin: 0 0 6px; font-weight: 700; }
.fslide p { color: rgba(245,239,230,0.7); font-size: 14px; margin: 0; line-height: 1.55; }
.fdots { display: flex; gap: 8px; justify-content: center; padding: 0 0 22px; background: var(--ink); }
.fdots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(245,239,230,0.25); transition: background 0.2s ease, transform 0.2s ease;
}
.fdots button.active { background: var(--accent-bright); transform: scale(1.25); }
@media (max-width: 640px) {
  .fslide { flex-direction: column; text-align: center; gap: 14px; padding: 40px 20px; }
  .fslide .ftext { max-width: 100%; }
}

/* ---------- verticals ---------- */
.vgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 16px 24px; text-align: center; transition: border-color 0.2s ease, transform 0.2s ease;
}
.vcard:hover { transform: translateY(-3px); }
.vcard.live { border-color: rgba(232,98,44,0.4); background: rgba(255,107,0,0.04); }
.vcard .vicon { font-size: 30px; margin-bottom: 10px; }
.vcard h4 { margin: 0 0 5px; font-size: 14.5px; }
.vcard p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.45; min-height: 34px; }
.badge {
  display: inline-block; margin-top: 10px; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.badge.live { background: var(--accent-bright); color: #fff; }
.badge.ready { border: 1px solid var(--line); color: var(--muted); }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; margin-bottom: 40px; }
.pillar { border-left: 3px solid var(--accent); padding-left: 18px; }
.pillar .num { font-size: 26px; color: var(--accent); margin-bottom: 6px; }
.pillar h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; }
.pillar p { font-size: 14px; color: #5A5248; margin: 0; }
.commission-callout {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 24px; display: flex; gap: 20px; align-items: center;
}
.commission-callout .big { font-size: 34px; color: var(--olive); white-space: nowrap; }
.commission-callout p { font-size: 14.5px; color: #4A4238; margin: 0; }

/* ---------- showcase ---------- */
.showcase-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 56px; }
.phone-shot { width: 150px; text-align: center; }
.phone-frame { border-radius: 18px; border: 2px solid var(--ink); overflow: hidden; box-shadow: 0 10px 26px rgba(27,23,18,0.14); }
.shot-caption { margin-top: 12px; font-size: 13px; font-weight: 700; }
.shot-caption span { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 1px; }

.browser-shot { max-width: 640px; margin: 0 auto 36px; }
.browser-frame { border-radius: 10px; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 12px 30px rgba(27,23,18,0.12); }
.browser-chrome { background: #EDE8DD; padding: 8px 12px; display: flex; gap: 6px; }
.browser-chrome .dot { width: 8px; height: 8px; border-radius: 50%; background: #D6CFC0; }
.browser-caption { text-align: center; margin-top: 12px; font-size: 14px; font-weight: 700; }
.browser-caption span { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }

/* ---------- feature list page ---------- */
.feat-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.feat-group h3 { font-size: 18px; margin: 0 0 20px; }
.feat-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.feat-item .fi-icon {
  font-size: 20px; width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.feat-item h4 { margin: 0 0 4px; font-size: 14.5px; }
.feat-item p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 760px) { .feat-groups { grid-template-columns: 1fr; } }

/* ---------- about page ---------- */
.about-grid { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
.about-avatar {
  width: 140px; height: 140px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 700;
  color: var(--accent); font-family: Georgia, serif; overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-role { font-size: 13.5px; color: var(--accent); font-weight: 700; margin: 14px 0 0; }
.about-body p { font-size: 15.5px; color: #3A342C; margin: 0 0 18px; line-height: 1.7; }
.vision-callout {
  background: var(--panel); border-left: 3px solid var(--accent-bright); border-radius: 0 12px 12px 0;
  padding: 18px 22px; margin-top: 10px;
}
.vision-callout p { margin: 0; font-size: 15px; font-style: italic; color: var(--ink); }
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } .about-avatar { margin: 0 auto; } }

/* ---------- contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; text-align: center;
  text-decoration: none; color: var(--ink); transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(232,98,44,0.4); }
.contact-card .cc-icon { font-size: 26px; margin-bottom: 12px; }
.contact-card .cc-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.contact-card .cc-value { font-size: 15px; font-weight: 700; word-break: break-word; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---------- legal prose page ---------- */
.legal-body h2 { font-size: 19px; margin: 34px 0 10px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 14.5px; color: #3A342C; line-height: 1.75; }
.legal-body ul { padding-left: 22px; margin: 8px 0 18px; }
.legal-updated { font-size: 12.5px; color: var(--muted); margin-bottom: 30px; }

/* ---------- pricing ---------- */
.setup-callout {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 26px; display: flex; gap: 20px; align-items: center; margin-bottom: 32px; flex-wrap: wrap;
}
.setup-callout .amt { font-size: 32px; color: var(--olive); white-space: nowrap; }
.setup-callout p { font-size: 14.5px; color: #4A4238; margin: 0; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.price-card { border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; background: var(--paper); }
.price-card.featured { border-color: rgba(232,98,44,0.4); background: rgba(255,107,0,0.04); }
.price-card .tier-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.price-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.price-card .amount { font-size: 30px; color: var(--accent-bright); margin-bottom: 14px; }
.price-card .amount .per { font-size: 13px; color: var(--muted); font-family: inherit; }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card li { font-size: 13.5px; padding: 5px 0 5px 18px; position: relative; color: #3A342C; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
.addon-strip { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; color: #4A4238; }
.addon-strip .row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.addon-strip .row span:first-child { min-width: 0; flex: 1; }
.addon-strip .row span:last-child { color: var(--muted); white-space: nowrap; flex-shrink: 0; }

/* ---------- closing ---------- */
.closing { background: var(--ink); color: var(--cover-ink); text-align: center; }
.closing .eyebrow { color: var(--accent-bright); }
.closing h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 400; max-width: 24ch; margin: 0 auto 16px; line-height: 1.25; }
.closing p.lede { color: rgba(245,239,230,0.78); max-width: 56ch; margin: 0 auto 40px; font-size: 15.5px; }
.value-row { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-bottom: 48px; }
.value-item { max-width: 190px; }
.value-item .mark { font-size: 22px; color: var(--accent-bright); margin-bottom: 8px; }
.value-item h4 { font-size: 13.5px; margin: 0 0 5px; }
.value-item p { font-size: 12.5px; color: rgba(245,239,230,0.6); margin: 0; }
.contact-block {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  width: 100%; max-width: 400px; margin: 0 auto 20px; box-sizing: border-box;
  background: rgba(245,239,230,0.05); border: 1px solid rgba(245,239,230,0.15);
  border-radius: 16px; padding: 30px 24px;
}
.contact-row { display: flex; gap: 10px; align-items: baseline; font-size: 15px; flex-wrap: wrap; justify-content: center; min-width: 0; }
.contact-row .label { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-bright); font-weight: 700; width: 70px; text-align: right; flex-shrink: 0; }
.closing .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

footer { padding: 26px 0; text-align: center; font-size: 12px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: underline; }
.footer-links { display: flex; gap: 16px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .hero { padding: 52px 0 60px; }
}
