/* FoundGuru.com — site stylesheet (layout + components) */

@import url("tokens.css");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400..700&display=swap");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--ink); background: #fff; }

/* ----- Layout primitives ----- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 720px) { .container { padding: 0 24px; } }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-700);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-title .gx { color: var(--green); }

.section-lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 640px;
  text-wrap: pretty;
}

section.section { padding: 96px 0; }
section.section.tight { padding: 64px 0; }
section.section.stone { background: var(--stone); }
section.section.stone-50 { background: var(--stone-50); }
section.section.navy  { background: var(--navy); color: #fff; }
section.section.navy .section-title { color: #fff; }
section.section.navy .section-lede { color: var(--ink-on-dark-2); }
section.section.navy .eyebrow { color: var(--green); }

/* ----- Buttons ----- */
.btn {
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px; line-height: 1;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 180ms cubic-bezier(0.2,0.8,0.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--navy); border-color: var(--green); }
.btn-primary:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy-100); }
.btn-ghost:hover { background: var(--stone); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.06); }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ----- Pills ----- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--green-100); color: var(--green-800);
}
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

/* ----- Card base ----- */
.card-base {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 180ms cubic-bezier(0.2,0.8,0.2,1);
}
.card-base.hoverable:hover {
  box-shadow: 0 8px 24px -8px rgba(14,34,68,0.12), 0 2px 6px rgba(14,34,68,0.06);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav-inner { height: 72px; display: flex; align-items: center; gap: 32px; }
.nav-brand { border: 0; }
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: 12px; flex: 1; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none; border: 0;
  position: relative; padding: 6px 0;
  transition: color 180ms;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a.is-current { color: var(--green-700); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--green); transform: scaleX(0);
  transform-origin: left; transition: transform 180ms cubic-bezier(0.2,0.8,0.2,1);
}
.nav-links a:hover::after,
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none; border: 0;
}
.nav-signin:hover { color: var(--green-700); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; gap: 4px; flex-direction: column; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .nav-signin { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { padding: 64px 0 96px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.025em; line-height: 1;
  margin: 0 0 20px; color: var(--ink);
  text-wrap: balance;
}
.hero-title .gx { color: var(--green); }
.hero-lede {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  max-width: 480px; margin: 0 0 28px;
}
.hero-lede b { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

.hero-proof {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--stone);
  border-radius: 999px;
  margin-bottom: 28px;
  border: 0;
  text-decoration: none;
}
.hero-proof:hover { border: 0; }
.hero-proof-mark {
  width: 32px; height: 32px; border-radius: 999px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--stone-200);
}
.hero-proof-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-proof-lbl { font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.02em; }
.hero-proof-name { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink); letter-spacing: -0.01em; }

.hero-meta {
  display: flex; align-items: stretch; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--border); max-width: 580px;
}
.hero-meta-cap { display: flex; gap: 10px; align-items: flex-start; flex: 1; min-width: 0; }
.cap-icon { width: 22px; height: 22px; color: var(--green-700); flex-shrink: 0; margin-top: 1px; }
.cap-t { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink); }
.cap-s { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; line-height: 1.3; }

.hero-visual { position: relative; }
.hero-stage {
  background: var(--stone);
  border-radius: 28px;
  height: 540px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-product {
  height: 80%; width: auto;
  filter: drop-shadow(0 24px 32px rgba(14,34,68,0.18));
  transition: opacity 240ms;
}
.hero-vertical-switch {
  position: absolute; left: 24px; top: 24px; z-index: 3;
  display: inline-flex; padding: 4px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(14,34,68,0.06);
}
.hero-vertical-switch button {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  padding: 8px 16px; border: 0; background: transparent;
  color: var(--ink-3); border-radius: 999px; cursor: pointer;
  letter-spacing: 0.02em; transition: all 180ms;
}
.hero-vertical-switch button.on { background: var(--navy); color: #fff; }
.hero-vertical-switch button:not(.on):hover { color: var(--ink); }
.hero-stage-cap {
  position: absolute; right: 24px; bottom: 24px; z-index: 2;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 1px;
  border: 1px solid rgba(14,34,68,0.06);
}
.hero-stage-cap-lbl { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.hero-stage-cap-val { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { height: 380px; }
  .hero-meta { flex-direction: column; gap: 16px; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding: 72px 0 56px; }
.page-hero .container { max-width: 880px; }
.page-hero-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--green-700);
  margin: 0 0 16px;
}
.page-hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px);
  letter-spacing: -0.022em; line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}
.page-hero-title .gx { color: var(--green); }
.page-hero-lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  margin: 0; max-width: 680px;
}

/* ============================================================
   VERTICALS (home)
   ============================================================ */
.vert { padding-top: 120px; }
.vert-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.vert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vert-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px; padding: 28px;
}
.vert-card-head { display: flex; flex-direction: column; gap: 4px; }
.vert-card-tag {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--green-700);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.vert-card-title {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.018em; color: var(--ink); margin: 0;
}
.vert-card-copy { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.vert-card-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.vert-card-bullets li {
  font-size: 13px; color: var(--ink); display: flex; gap: 8px; align-items: center;
}
.vert-card-bullets .check {
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--green-100); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.vert-card-foot { margin-top: auto; padding-top: 16px; }
.vert-card-link {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--green); padding-bottom: 2px;
}
.vert-card-link:hover { color: var(--green-700); }
.vert-card-img {
  position: absolute; right: -30px; bottom: -24px;
  height: 180px; width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 12px 24px rgba(14,34,68,0.18));
  transition: transform 240ms cubic-bezier(0.2,0.8,0.2,1);
  pointer-events: none;
}
.vert-card:hover .vert-card-img { transform: translate(-6px, -6px) rotate(-2deg); }
.vert-footnote {
  text-align: center; margin: 40px 0 0; color: var(--ink-3); font-size: 14px;
}
.vert-footnote a { color: var(--green-700); text-decoration: underline; border: 0; }
@media (max-width: 980px) { .vert-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--stone-50); }
.how-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.how-grid-v2 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: stretch; position: relative;
}
.how-step-v2 {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.how-step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--green-700); letter-spacing: 0.04em;
}
.how-step-circle {
  width: 60px; height: 60px; border-radius: 999px; background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.how-step-circle svg { width: 28px; height: 28px; }
.how-step-title {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--ink); margin: 0; letter-spacing: -0.012em;
}
.how-step-copy {
  font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0;
}
.how-step-arrow {
  position: absolute;
  right: -28px; top: 56px;
  width: 24px; color: var(--green); z-index: 2;
}
@media (max-width: 960px) {
  .how-grid-v2 { grid-template-columns: 1fr; }
  .how-step-arrow { display: none; }
}

/* ============================================================
   PLATFORM
   ============================================================ */
.platform { padding: 120px 0; }
.platform-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
}
.platform-copy { display: flex; flex-direction: column; }
.platform-screenshot { margin-top: 16px; }

.pmock {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.35);
}
.pmock-top {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.pmock-dots { display: flex; gap: 6px; }
.pmock-dots i { width: 10px; height: 10px; border-radius: 999px; background: var(--border-strong); display: inline-block; }
.pmock-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  text-align: center;
}
.pmock-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.pmock-stats { display: flex; gap: 10px; }
.pmock-stat { flex: 1; background: var(--surface-2); border-radius: 8px; padding: 10px 12px; }
.pmock-stat-lbl { font-family: var(--font-display); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; color: var(--ink-3); }
.pmock-stat-val { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin-top: 2px; letter-spacing: -0.01em; }
.pmock-chart { width: 100%; height: auto; display: block; }

.platform-caps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.platform-caps li { display: flex; gap: 14px; align-items: flex-start; }
.platform-cap-check {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--green); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-cap-check svg { width: 14px; height: 14px; }
.platform-cap-t { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }
.platform-cap-s { font-size: 13.5px; color: var(--ink-on-dark-2); line-height: 1.5; margin-top: 2px; }

@media (max-width: 980px) {
  .platform-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions { padding: 120px 0; }
.solutions-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (min-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(6, 1fr); }
  .solutions-grid .solution-card:nth-child(-n+3) { grid-column: span 2; }
  .solutions-grid .solution-card:nth-child(4),
  .solutions-grid .solution-card:nth-child(5) { grid-column: span 3; }
}
.solution-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all 180ms;
  text-decoration: none; color: inherit;
}
.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(14,34,68,0.12);
  border-color: var(--green-200);
}
.solution-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--green-50); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.solution-icon svg { width: 20px; height: 20px; }
.solution-tag {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--green-700);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.solution-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--ink); margin: 0; letter-spacing: -0.012em;
}
.solution-copy { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.solution-use {
  margin-top: auto;
  font-size: 11.5px; color: var(--ink-3);
  font-family: var(--font-mono); letter-spacing: 0.02em;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
@media (max-width: 880px) { .solutions-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNER PACK
   ============================================================ */
.partner-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.partner-copy { display: flex; flex-direction: column; }
.partner-bullets { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.partner-bullets li { display: flex; gap: 14px; align-items: flex-start; }
.partner-bullets .check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--green); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
.partner-bullets .bt { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.partner-bullets .bb { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.partner-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.partner-visual { position: relative; }
.partner-pack-stage {
  background: var(--stone);
  border-radius: 28px;
  padding: 48px;
  min-height: 480px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pack-img { width: 86%; max-width: 440px; filter: drop-shadow(0 20px 32px rgba(14,34,68,0.18)); }
.pack-items { position: absolute; right: 24px; bottom: 28px; display: flex; gap: 8px; align-items: flex-end; }
.pack-items img:nth-child(1) { height: 130px; }
.pack-items img:nth-child(2) { height: 170px; }
.pack-items img:nth-child(3) { height: 110px; margin-bottom: 12px; }
.pack-items img { filter: drop-shadow(0 12px 18px rgba(14,34,68,0.18)); }
.pack-meta {
  position: absolute; left: 32px; top: 32px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(6px);
  padding: 10px 14px; border-radius: 12px;
}
.pack-meta-lbl { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--green-800); }
.pack-meta-num { font-family: var(--font-mono); font-size: 11.5px; color: var(--navy); }
@media (max-width: 960px) { .partner-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   TRUST / CASE STUDY
   ============================================================ */
.trust-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.trust-case {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  background: var(--navy); color: #fff;
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 56px;
  align-items: center;
  overflow: hidden;
}
.trust-case-eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--green);
}
.trust-case-title {
  font-family: var(--font-display); font-weight: 700; font-size: 38px;
  letter-spacing: -0.02em; margin: 10px 0 16px; color: #fff;
}
.trust-case-copy {
  font-size: 15.5px; line-height: 1.6; color: var(--ink-on-dark-2);
  margin: 0 0 24px; max-width: 540px;
}
.trust-case-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-case-note { font-size: 11.5px; color: var(--ink-on-dark-2); opacity: 0.7; }
.trust-case-art { display: flex; align-items: center; justify-content: center; position: relative; }
.trust-case-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.trust-case-tag img { height: 220px; width: auto; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3)); }

.trust-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.trust-pillar-icon { width: 24px; height: 24px; color: var(--green-700); margin-bottom: 4px; }
.trust-pillar-t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.trust-pillar-s { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 960px) {
  .trust-case { grid-template-columns: 1fr; padding: 32px; }
  .trust-pillars { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CTA / CONTACT FORM
   ============================================================ */
.cta-section { padding: 96px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-contact-row { display: flex; gap: 24px; margin-top: 8px; flex-wrap: wrap; }
.cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 14px; color: #fff;
  text-decoration: none; opacity: 0.9; border: 0;
}
.cta-link:hover { opacity: 1; color: var(--green); }
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.cta-form-head { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: -0.01em; }
.cta-form-sub { font-size: 14px; color: var(--ink-on-dark-2); margin-bottom: 6px; }
.cta-form-fields { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; }
.cta-field { display: flex; flex-direction: column; gap: 4px; }
.cta-field.full { grid-column: 1 / -1; }
.cta-field label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-on-dark-2);
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 180ms;
  appearance: none;
}
.cta-form textarea { resize: vertical; min-height: 96px; font-family: var(--font-body); }
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { border-color: var(--green); }
.cta-form select option { color: var(--ink); background: #fff; }
.cta-form-check {
  display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-on-dark-2);
  margin-top: 2px; cursor: pointer;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-form-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #fff; }
.footer-main { padding: 64px 0 48px; }
.footer-main-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; align-items: start; }
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { height: 48px; width: auto; opacity: 0.95; }
.footer-blurb { font-size: 13.5px; color: var(--ink-on-dark-2); line-height: 1.55; margin: 0; max-width: 360px; }
.footer-gpr {
  display: inline-flex; flex-direction: column; gap: 2px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-decoration: none; color: #fff;
  width: max-content; max-width: 100%;
  transition: all 180ms;
}
.footer-gpr:hover { background: rgba(255,255,255,0.1); border-color: var(--green); }
.footer-gpr-lbl { font-size: 10.5px; color: var(--ink-on-dark-2); letter-spacing: 0.02em; }
.footer-gpr-name { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--green); }

.footer-links-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--green);
  margin-bottom: 4px;
}
.footer-col a { font-size: 13px; color: var(--ink-on-dark-2); text-decoration: none; transition: color 180ms; border: 0; }
.footer-col a:hover { color: #fff; }

.footer-fineprint {
  background: var(--navy-900);
  padding: 16px 0;
  color: var(--ink-on-dark-2);
  font-size: 11.5px;
}
.footer-fineprint .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-fineprint-right { display: flex; gap: 16px; align-items: center; }
.footer-fineprint a { color: var(--ink-on-dark-2); text-decoration: none; border: 0; }
.footer-fineprint a:hover { color: var(--green); }
.footer-fineprint .mono { font-family: var(--font-mono); }

@media (max-width: 960px) {
  .footer-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-col { grid-template-columns: 1fr 1fr; }
  .footer-fineprint .container { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE: prose / interior content
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin-top: 48px; margin-bottom: 12px; letter-spacing: -0.018em; }
.prose h3 { font-size: 20px; margin-top: 32px; margin-bottom: 8px; }
.prose p { font-size: 16px; color: var(--ink-2); margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; color: var(--ink-2); }
.prose li { margin-bottom: 6px; line-height: 1.55; }
.prose a { color: var(--green-700); border-bottom: 1px solid var(--green-200); }
.prose a:hover { border-bottom-color: var(--green-700); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }
.prose code { background: var(--surface-2); padding: 1px 6px; border-radius: 4px; font-size: 0.92em; }
.prose blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--green);
  background: var(--stone-50);
  color: var(--ink);
}
.prose .meta {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 0 0 32px;
}

/* Two-col split for sub-pages */
.split-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 960px) { .split-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Product / vertical detail */
.detail-card-stage {
  background: var(--stone);
  border-radius: 24px;
  padding: 48px;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.detail-card-stage img { max-width: 78%; max-height: 320px; height: auto; filter: drop-shadow(0 20px 32px rgba(14,34,68,0.18)); }
.detail-card-meta {
  position: absolute; left: 24px; top: 24px;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(6px);
  padding: 8px 12px; border-radius: 10px;
}
.detail-card-meta-lbl { font-family: var(--font-display); font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-800); }
.detail-card-meta-name { font-family: var(--font-mono); font-size: 11px; color: var(--navy); }

/* Product index grid */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 180ms cubic-bezier(0.2,0.8,0.2,1);
  text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--green-200); }
.product-card .pc-stage {
  background: var(--stone);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-card .pc-stage img { max-height: 80%; max-width: 80%; filter: drop-shadow(0 12px 20px rgba(14,34,68,0.18)); }
.product-card .pc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.product-card .pc-tag {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--green-700);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.product-card .pc-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
}
.product-card .pc-copy { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.product-card .pc-foot {
  margin-top: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card .pc-foot::after { content: '→'; color: var(--green); }

/* Bare links */
a.bare { border: 0; }

/* ============================================================
   MOTION — reveal-on-scroll, hero float, count-up, pulse
   ============================================================ */

/* Default reveal-up state. Items start hidden, scroll observer adds .is-visible. */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
.reveal-up.is-visible { opacity: 1; transform: none; }

/* Stagger children: subsequent siblings delay slightly */
.reveal-stagger > * { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(1).reveal-up { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(2).reveal-up { transition-delay: 80ms; }
.reveal-stagger > *:nth-child(3).reveal-up { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4).reveal-up { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5).reveal-up { transition-delay: 320ms; }
.reveal-stagger > *:nth-child(6).reveal-up { transition-delay: 400ms; }

/* Hero product float */
@keyframes fg-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-product {
  animation: fg-float 6s ease-in-out infinite;
}

/* Hero product switch fade */
@keyframes fg-swap-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-product.is-active {
  animation: fg-swap-in 360ms cubic-bezier(0.2,0.8,0.2,1), fg-float 6s ease-in-out infinite 360ms;
}

/* Auto-progress bar inside the vertical switch */
.hero-vertical-switch button.on { position: relative; overflow: hidden; }
.hero-vertical-switch button.on::before {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 2px; background: var(--green);
  width: 0%;
  animation: fg-progress 5000ms linear forwards;
}
.hero-vertical-switch.is-paused button.on::before { animation-play-state: paused; }
@keyframes fg-progress { from { width: 0%; } to { width: 100%; } }

/* Hero proof badge: soft pulse on the pin */
@keyframes fg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,185,40,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(124,185,40,0); }
}
.hero-proof-mark { animation: fg-pulse 3.2s ease-out infinite; }

/* Hero pill shimmer */
.hero-eyebrow .pill {
  position: relative;
  overflow: hidden;
}
.hero-eyebrow .pill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: fg-shimmer 5s ease-in-out infinite;
}
@keyframes fg-shimmer {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Stat count-up: leading-tab fixed width to avoid digit jitter */
.pmock-stat-val { font-variant-numeric: tabular-nums; }

/* Step circles: subtle live animation on the QR step */
@keyframes fg-scan {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
.how-step-v2:nth-child(2) .how-step-circle {
  position: relative;
  overflow: hidden;
}
.how-step-v2:nth-child(2) .how-step-circle::after {
  content: '';
  position: absolute; left: 6px; right: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: fg-scan 2.6s ease-in-out infinite;
}

/* Vert cards: lift on hover already exists; add a soft tag-image rotation */
.vert-card .vert-card-img {
  animation: fg-tag-drift 9s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fg-tag-drift {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50%      { transform: translate(-4px, -6px) rotate(1.5deg); }
}
.vert-card:hover .vert-card-img {
  animation: none;
  transform: translate(-6px, -6px) rotate(-2deg);
}

/* Smooth-scroll for anchor links (preview.html only — real site uses real pages) */
html { scroll-behavior: smooth; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .hero-product,
  .hero-product.is-active,
  .hero-proof-mark,
  .hero-eyebrow .pill::after,
  .how-step-v2:nth-child(2) .how-step-circle::after,
  .vert-card .vert-card-img,
  .hero-vertical-switch button.on::before {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Feature list with check */
.feature-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.5; }
.feature-list .check {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--green-100); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--navy-900);
  color: var(--navy-100);
  border-top: 1px solid var(--navy-700);
  padding: 16px 24px;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.cookie-banner-link {
  color: var(--green-300);
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: var(--green-200); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
}
.cookie-btn--decline {
  background: transparent;
  border-color: var(--navy-500);
  color: var(--navy-200);
}
.cookie-btn--decline:hover {
  border-color: var(--navy-400);
  color: #fff;
}
.cookie-btn--accept {
  background: var(--green);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--green-600); }

/* ============================================================
   Honeypot + form feedback
   ============================================================ */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-success {
  background: var(--green-50, #f0faf4);
  border: 1px solid var(--green-200, #a3d9b8);
  border-radius: 12px;
  padding: 20px 22px;
  color: var(--green-800, #1a5c34);
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}
.form-error {
  background: #fff1f0;
  border: 1px solid #f4c2bf;
  color: #8a1f15;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  margin-top: 10px;
}
