@import './tokens.css';

/*
 * home.css — Cheerzz site stylesheet
 * Loaded globally via views/layout.html; styles every page (home, /faq, any
 * Content page) and every widget.
 */


/* =====================================================================
   RESET & BASE
   ===================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}


/* =====================================================================
   LAYOUT
   ===================================================================== */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.wrap-narrow {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}


/* =====================================================================
   WORDMARK
   ===================================================================== */

.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-block;
  color: var(--jade-deep);
}

/* Variant B — Forward Lean: only the zz skew, rest stays upright */
.wordmark .zz {
  display: inline-block;
  transform: skewX(-12deg);
  transform-origin: bottom left;
}

.wordmark.cream {
  color: var(--peach);
}


/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-base);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  transition: transform 0.12s ease, background 0.12s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--jade-deep);
  color: var(--peach);
}

.btn-primary:hover {
  background: var(--jade);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--jade-deep);
  border: 1.5px solid var(--jade-deep);
}

.btn-secondary:hover {
  background: var(--jade-tint);
}

.btn-ghost {
  background: transparent;
  color: var(--jade-deep);
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
  color: var(--jade);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--peach);
}

.btn-terracotta:hover {
  background: var(--rust);
  transform: translateY(-1px);
}

.btn-large {
  font-size: var(--text-lg);
  padding: 0.8125rem var(--space-6);
}


/* =====================================================================
   NEWS STRIP
   ===================================================================== */

.news-strip {
  background: var(--ink);
  color: var(--peach);
  padding: 0.6875rem 0;
  font-size: var(--text-base);
  line-height: 1.45;
  position: relative;
  z-index: 60;
}

.news-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  position: relative;
}

.news-swiper {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 32px,
    #000 calc(100% - 32px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 32px,
    #000 calc(100% - 32px),
    transparent 100%
  );
}

.news-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.news-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 var(--space-4);
  box-sizing: border-box;
  height: auto;
}

@media (max-width: 640px) {
  .news-swiper .swiper-slide {
    padding: 0 var(--space-4);
  }
}

.news-strip a {
  color: var(--peach);
  text-decoration: underline;
  text-decoration-color: rgba(250, 238, 218, 0.5);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.news-strip a:hover {
  text-decoration-color: var(--peach);
}

.news-pill {
  background: var(--terracotta);
  color: var(--peach);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px var(--space-2);
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-close {
  background: none;
  border: none;
  color: var(--peach);
  font-size: var(--text-lg);
  padding: 0 var(--space-2);
  opacity: 0.5;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.15s;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.news-close:hover {
  opacity: 1;
}


/* =====================================================================
   HEADER
   ===================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

.header-mark .wordmark {
  font-size: 1.625rem; /* 26px — between --text-lg and display */
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}

.nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-mid);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--ink);
}


/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  background: var(--peach);
  padding: 5.5rem 0 6rem;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--jade-deep);
  margin-bottom: var(--space-6);
}

.hero-headline .accent-1 { color: var(--jade-deep); }
.hero-headline .accent-2 { color: var(--amber); }
.hero-headline .accent-3 { color: var(--terracotta); }

.hero-sub {
  font-size: clamp(var(--text-lg), 1.6vw, 1.1875rem);
  color: var(--gray-dark);
  line-height: 1.55;
  max-width: 54rem;
  margin-bottom: var(--space-9);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}


/* =====================================================================
   SECTIONS — SHARED
   ===================================================================== */

.section {
  padding: var(--space-20) 0;
}

/* Tighten padding where sections sit directly back-to-back */
.section:has(+ .section) {
  padding-bottom: var(--space-10); /* 40px */
}

.section + .section {
  padding-top: var(--space-10); /* 40px */
}

.section-tight {
  padding: var(--space-14) 0;
}

.section.warm  { background: var(--warm-white); }
.section.peach { background: var(--peach); }
.section.mint  { background: var(--jade-tint); }
.section.deep  { background: var(--jade-deep); color: var(--peach); }

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-quiet);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  text-align: center;
}

.section-eyebrow.left {
  text-align: left;
}

.section.deep .section-eyebrow {
  color: var(--peach);
  opacity: 0.7;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--jade-deep);
  text-align: center;
  margin-bottom: 0.875rem;
}

.section-headline.left {
  text-align: left;
}

.section.deep .section-headline {
  color: var(--peach);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--gray-mid);
  text-align: center;
  max-width: 54rem;
  margin: 0 auto var(--space-14);
  line-height: 1.6;
}

.section-sub.left {
  text-align: left;
  margin-left: 0;
}

.section.deep .section-sub {
  color: var(--peach);
  opacity: 0.85;
}


/* =====================================================================
   WHY NOW
   ===================================================================== */

.why-now-body p {
  font-size: var(--text-lg);
  line-height: 1.65;
  margin-bottom: var(--space-4);
  opacity: 0.9;
  max-width: 54rem;
}

.why-now-body p.tag {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  opacity: 1;
  margin-top: var(--space-9);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 100%;
  /* strip pill/button appearance from base .tag */
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--peach);
}

.why-now-meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  opacity: 0.55;
  letter-spacing: 0.06em;
  margin-top: var(--space-6);
  text-align: center;
}


/* =====================================================================
   SERVICES
   ===================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.service-card {
  background: var(--peach);
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.25rem 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--jade);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.service-icon.jade  { background: var(--jade-tint); color: var(--jade-deep); }
.service-icon.amber { background: var(--caramel); color: var(--peach); }
.service-icon.coral { background: var(--caramel); color: var(--peach); }
.service-icon.mint  { background: var(--jade-tint); color: var(--jade-deep); }

.service-name {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
}

.service-desc {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.tag {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 3px var(--space-2);
  border-radius: var(--radius-pill);
  background: var(--warm-white);
  color: var(--gray-mid);
}

.services-notes {
  margin-top: var(--space-8);
  text-align: center;
}

.services-notes p {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.6;
  max-width: 41rem;
  margin: 0 auto var(--space-2);
  font-style: italic;
}

.placeholder-note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-quiet);
  margin-top: var(--space-6);
  text-align: center;
}

/* The "WOO!" verbal pop */
.woo {
  font-style: italic;
  color: var(--amber);
  font-size: 1.12em;
  font-weight: 600;
}


/* =====================================================================
   DIFFERENTIATION
   ===================================================================== */

.diff-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--jade-deep);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto var(--space-12);
  letter-spacing: -0.015em;
}

.diff-statement em {
  font-style: italic;
  color: var(--amber);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.diff-card {
  padding: var(--space-6);
  border-left: 3px solid var(--jade);
  background: var(--warm-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-soft);
}

.diff-card.amber { border-left-color: var(--amber); }
.diff-card.coral { border-left-color: var(--terracotta); }

.diff-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-quiet);
  margin-bottom: var(--space-2);
}

.diff-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
}

.diff-body {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.6;
}


/* =====================================================================
   BILLING TOGGLE
   ===================================================================== */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-10);
  background: var(--warm-white);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Animated slider pill — injected by JS */
.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--jade-deep);
  border-radius: var(--radius-pill);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              width   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.toggle-opt {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-mid);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-6);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}

/* No-JS fallback: active button shows its own background */
.toggle-opt.active {
  background: var(--jade-deep);
  color: var(--peach);
}

/* When JS has injected the slider, let the pill handle the background */
.billing-toggle.has-slider .toggle-opt.active {
  background: transparent;
}

.toggle-opt:not(.active):hover {
  color: var(--ink);
}

.toggle-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  background: var(--amber);
  color: #fff;
  padding: 2px var(--space-2);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toggle-opt.active .toggle-badge {
  background: rgba(255, 255, 255, 0.25);
  color: var(--peach);
}


/* =====================================================================
   PRICING
   ===================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: stretch;
}

.tier {
  background: var(--warm-white);
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-7);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: var(--jade);
  box-shadow: var(--shadow-card);
}

.tier.featured {
  border: 1.5px solid var(--jade);
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--jade-tint) 100%);
}

.tier-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jade-deep);
  color: var(--peach);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px var(--space-3);
  border-radius: var(--radius-pill);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--jade-deep);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-1);
}

.tier-tag {
  font-size: var(--text-base);
  color: var(--amber);
  font-weight: 500;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}

.tier-price .per {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--gray-mid);
  margin-left: var(--space-1);
}

.tier-desc {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.6;
  margin: var(--space-4) 0 var(--space-5);
  min-height: 5.25rem;
}

.tier-best-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--jade-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.tier-best-for {
  font-size: var(--text-xs);
  color: var(--gray-mid);
  line-height: 1.55;
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-3);
  background: var(--warm-white);
  border-radius: var(--radius-sm);
}

.tier.featured .tier-best-for {
  background: rgba(247, 247, 245, 0.6);
}

.tier-includes-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-quiet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-7);
  flex: 1;
}

.tier-includes li {
  font-size: var(--text-base);
  color: var(--ink);
  padding: 0.4375rem 0;
  border-bottom: 0.5px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.tier-includes li:last-child {
  border-bottom: none;
}

.tier-includes li::before {
  content: '◆';
  color: var(--jade);
  font-size: var(--text-xs);
  flex-shrink: 0;
  margin-top: 5px;
}

.tier-cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.tier-cta-row .btn {
  width: 100%;
  text-align: center;
}

/* Price amount — animated by JS cross-fade */

.price-amount {
  display: inline-block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.price-amount.fading {
  opacity: 0;
  transform: translateY(5px);
}

/* Billing note (annual) — collapses when not visible */

.tier-billed-note {
  font-size: var(--text-xs);
  color: var(--jade-deep);
  font-weight: 600;
  font-style: italic;
  background: var(--jade-tint);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  /* Collapsed / hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(5px);
  padding: 0 var(--space-2);
  margin: 0;
  /* When hiding: fade + slide out first (0–150ms), then collapse box (100ms delay) */
  transition: opacity 0.15s ease,
              transform 0.15s ease,
              max-height 0.22s ease 0.1s,
              padding  0.22s ease 0.1s,
              margin   0.22s ease 0.1s;
}

.tier-billed-note.visible {
  max-height: 3rem;
  opacity: 1;
  transform: translateY(0);
  padding: var(--space-1) var(--space-2);
  margin: -0.5rem 0 0.875rem;
  /* When showing: open box first, then fade + slide text in (100ms delay) */
  transition: max-height 0.22s ease,
              padding  0.22s ease,
              margin   0.22s ease,
              opacity   0.15s ease 0.1s,
              transform 0.15s ease 0.1s;
}

.tier.featured .tier-billed-note {
  background: rgba(15, 110, 86, 0.08);
}

/* Promo line (monthly) — collapses when annual is active */

.tier-promo {
  font-size: var(--text-xs);
  color: var(--jade-deep);
  font-weight: 600;
  font-style: italic;
  margin: -0.5rem 0 0.875rem;
  padding: var(--space-1) var(--space-2);
  background: var(--jade-tint);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  overflow: hidden;
  max-height: 3rem;
  transition: max-height 0.25s ease, opacity 0.22s ease,
              padding 0.25s ease, margin 0.25s ease;
}

.tier.featured .tier-promo {
  background: rgba(15, 110, 86, 0.08);
}

.tier-promo.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.enterprise-block {
  margin-top: var(--space-12);
  background: var(--jade-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  text-align: center;
  color: var(--peach);
}

.enterprise-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: var(--space-3);
}

.enterprise-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.enterprise-body {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.88;
  max-width: 46rem;
  margin: 0 auto var(--space-8);
}

.pricing-fineprint {
  font-size: var(--text-xs);
  color: var(--gray-mid);
  text-align: center;
  margin: var(--space-7) auto 0;
  line-height: 1.65;
  max-width: 45rem;
}

.pricing-fineprint p {
  margin-bottom: var(--space-1);
}


/* =====================================================================
   FAQ
   ===================================================================== */

.faq-grid {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  background: var(--peach);
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: var(--jade);
  box-shadow: var(--shadow-card-soft);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.25rem var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
}

.faq-icon {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--jade-deep);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  width: 1.25rem;
  text-align: center;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.65;
  padding: 0 var(--space-6) 1.25rem;
}


/* =====================================================================
   FOUNDER NOTE
   ===================================================================== */

.founder-card {
  background: var(--peach);
  border-left: 3px solid var(--jade);
  padding: var(--space-8);
  border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
}

.founder-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--jade);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-1);
}

.founder-title {
  font-size: var(--text-base);
  color: var(--gray-mid);
  margin-bottom: var(--space-4);
}

.founder-body {
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.65;
}

.founder-body p {
  margin-bottom: 0.875rem;
}

.founder-body p:last-child {
  margin-bottom: 0;
}

.founder-sig {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--jade-deep);
}

.founder-handwriting {
  display: inline-block;
  height: 1.4em;
  vertical-align: middle;
}


/* =====================================================================
   VALUES
   ===================================================================== */

/* #fc_frame {
  display: none;
} */

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: var(--space-9);
}

.value-card {
  padding: var(--space-6) var(--space-6) 1.6rem;
  border-left: 3px solid var(--jade);
  background: var(--warm-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.value-card.amber { border-left-color: var(--amber); }
.value-card.coral { border-left-color: var(--terracotta); }
.value-card.peach { border-left-color: var(--caramel); }

.value-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-quiet);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.value-body {
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.65;
}


/* =====================================================================
   FINAL CTA
   ===================================================================== */

.final-cta {
  background: var(--jade-deep);
  padding: var(--space-20) 0;
  text-align: center;
  color: var(--peach);
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.final-sub {
  font-size: var(--text-lg);
  max-width: 33.75rem;
  margin: 0 auto var(--space-8);
  opacity: 0.88;
  line-height: 1.55;
}

.final-cta .btn-primary {
  background: var(--peach);
  color: var(--jade-deep);
}

.final-cta .btn-primary:hover {
  background: var(--warm-white);
}


/* =====================================================================
   FOOTER
   ===================================================================== */

.footer {
  background: var(--ink);
  color: #888;
  padding: var(--space-14) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-mark {
  margin-bottom: var(--space-4);
}

.footer-mark .wordmark {
  font-size: 2rem;
  color: var(--peach);
}

.footer-tag {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  font-style: italic;
  color: var(--jade);
  line-height: 1.5;
  max-width: 20rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-quiet);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: var(--text-base);
  color: #ccc;
  padding: var(--space-1) 0;
}

.footer-col a:hover {
  color: var(--peach);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 0.5px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: #777;
}

.footer-bottom .verticals {
  font-family: var(--font-mono);
}

.footer-bottom .verticals .live {
  color: var(--jade);
  font-weight: 600;
}

.footer-bottom a {
  color: #777;
  text-decoration: underline;
  text-decoration-color: #444;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: #ccc;
}


/* =====================================================================
   MOBILE
   ===================================================================== */

@media (max-width: 820px) {

  .services-grid,
  .pricing-grid,
  .diff-grid,
  .footer-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.75rem 1.75rem 2rem;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .header-nav {
    gap: var(--space-2);
  }

  .nav-link {
    display: none;
  }

  .tier-desc {
    min-height: 0;
  }

  .footer-grid {
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}
