:root {
  --vermillion: #FF5337;
  --teal: #32E6C7;
  --amber-soft: #FFB37D;
  --indigo: #6D7BFF;
  --carb-on: #1A1A1A;
  --graphite: #404040;
  --gray-medium: #6B7280;
  --gray-light: #E5E7EB;
  --cream: #F8F7F5;
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --espresso: var(--carb-on);
  --walnut: var(--graphite);
  --amber: var(--vermillion);
  --amber-lt: var(--amber-soft);
  --sage: var(--teal);
  --sage-lt: rgba(50, 230, 199, 0.82);
  --muted: var(--graphite);
  --border: var(--gray-light);
  --grain-opacity: 0.018;
  --content-max-width: 1240px;
  --page-gutter: 56px;
  --amber-dark: #D9472F;
  --selection-bg: #FFD9BF;
  --selection-fg: var(--espresso);
  --list-accent: var(--amber);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'Google Sans Text', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px max(var(--page-gutter), calc((100vw - var(--content-max-width)) / 2));
  background: rgba(248,247,245,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: 189px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
}

nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

nav ul a:hover { color: var(--espresso); }

.nav-cta {
  background: var(--vermillion) !important;
  color: var(--white) !important;
  padding: 10px 26px;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: var(--vermillion);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s ease;
}

.nav-toggle:hover {
  background: transparent;
}

.nav-toggle:active {
  transform: scale(0.97);
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 83, 55, 0.28);
  outline-offset: 3px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, background 0.32s ease;
}

body.mobile-nav-open .nav-toggle {
  background: transparent;
}

body.mobile-nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.mobile-nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-nav {
  display: none;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list a {
  display: block;
  color: var(--muted);
  text-decoration: none;
}

.nav-cta-mobile {
  background: var(--vermillion);
  color: var(--white) !important;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 max(var(--page-gutter), calc((100vw - var(--content-max-width)) / 2)) 72px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 179, 125, 0.22) 0%, rgba(255, 179, 125, 0.1) 20%, rgba(255, 179, 125, 0.03) 42%, rgba(255, 179, 125, 0) 66%),
    radial-gradient(circle at 68% 38%, rgba(255, 83, 55, 0.045) 0%, rgba(255, 83, 55, 0.018) 18%, rgba(255, 83, 55, 0) 40%),
    linear-gradient(180deg, #fdf8f5 0%, #f8f7f5 64%, #f7f5f3 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: riseIn 0.7s 0.1s ease forwards;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.eyebrow-line::before {
  content: '—';
}

h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(50px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin-bottom: 32px;
  opacity: 0;
  animation: riseIn 0.8s 0.2s ease forwards;
}

h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding-top: 0;
  opacity: 0;
  animation: riseIn 0.7s 0.4s ease forwards;
}

.hero-sub {
  max-width: 400px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-sub strong { color: inherit; font-weight: 400; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  justify-content: flex-start;
}

.btn-dark {
  background: var(--vermillion);
  color: var(--white);
  padding: 15px 38px;
  font-family: 'Google Sans Text', 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s;
}
.btn-dark:hover { background: var(--amber-dark); }

.btn-outline {
  background: var(--paper);
  color: var(--muted);
  padding: 15px 38px;
  font-family: 'Google Sans Text', 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.btn-outline:hover { background: var(--paper); color: var(--espresso); border-color: var(--amber-dark); }

/* ─── TICKER STRIP ─── */
/* ─── SECTION COMMONS ─── */
.section {
  padding: 120px max(var(--page-gutter), calc((100vw - var(--content-max-width)) / 2));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '—';
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* ─── DARK SECTION ─── */
.section-dark {
  background: var(--paper);
  color: var(--espresso);
}

.section-dark .section-label { color: var(--amber); }
.section-dark .problem-heading { color: var(--espresso); }
.section-dark .problem-heading em { color: var(--amber); }

/* ─── PROBLEM ─── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.problem-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.problem-heading em { font-style: italic; color: var(--amber); }

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.problem-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.problem-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--vermillion);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Material Symbols Rounded';
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
  margin-top: 2px;
}

.problem-icon-outline {
  font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

/* ─── SERVICES ─── */
.services-intro {
  margin-bottom: 64px;
}

.services-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.services-heading em { font-style: italic; color: var(--amber); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  background: rgba(255, 255, 255, 0.72);
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover {
  background: var(--paper);
  border-color: var(--amber-dark);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  color: var(--vermillion);
  font-family: 'Material Symbols Rounded';
  font-size: 31px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.service-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
}

/* ─── HOW / DARK ─── */
#proceso {
  background: linear-gradient(180deg, #1f1d1c 0%, #191919 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.how-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

#proceso .how-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
#proceso .how-text h2 em { font-style: italic; color: var(--amber); }

#proceso .how-text p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

#proceso .how-text p strong {
  color: var(--white);
  font-weight: 500;
}

.steps {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 0;
}

.steps::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.step {
  position: relative;
  padding-left: 42px;
}

.step::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--list-accent);
}

.step-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.step-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.step-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.step-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.72);
  padding: 52px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #24211f 0%, #1a1a1a 100%);
  border-color: rgba(255, 83, 55, 0.32);
}


.pricing-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.08;
  min-height: 0;
  margin-bottom: 16px;
}

.pricing-price .amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
}

.pricing-price .amount-text {
  /* font-size: inherit; */
  /* letter-spacing: inherit; */
}

.pricing-unit {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 30px;
  line-height: 1.5;
}

.pricing-features {
  list-style: disc;
  display: block;
  flex: 1 1 auto;
  margin-bottom: 32px;
  padding-left: 22px;
}

.pricing-card > a {
  margin-top: auto;
  align-self: flex-start;
}

.pricing-features li {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-features li + li {
  margin-top: 12px;
}

.pricing-features li::marker {
  color: var(--list-accent);
  font-size: 0.9em;
}

.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-features li {
  color: var(--white);
}

.pricing-card.featured .pricing-price .amount {
  color: var(--vermillion);
}

/* ─── ICP ─── */
.icp-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 96px;
  align-items: start;
}

.icp-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.icp-heading em { font-style: italic; color: var(--amber); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fit-col {
  background: var(--paper);
  padding: 38px 34px;
  border-top: 2px solid rgba(255, 83, 55, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 83, 55, 0.12);
}

.fit-col h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--espresso);
  margin-bottom: 20px;
}

.fit-col.neg {
  background: #f2f0ec;
  border-top: 1px solid rgba(64, 64, 64, 0.12);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.04);
}

.fit-col.neg h3 {
  color: var(--graphite);
}

.fit-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-col ul li {
  font-size: 17px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.65;
}
.fit-col ul li::before {
  content: '✓';
  color: var(--list-accent);
  flex-shrink: 0;
  font-size: 14px;
  padding-top: 4px;
}
.fit-col.neg ul li::before {
  content: '✕';
  color: var(--gray-medium);
}

/* ─── FOUNDERS ─── */
.founders-section {
  background: var(--paper);
}

.founders-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: start;
}

.founders-portraits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-tile {
  background: transparent;
  padding: 0;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  margin-bottom: 18px;
}

.founder-name {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 6px;
}

.founder-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
}

.founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.founder-link-icon {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.founder-link:hover,
.founder-link:focus-visible {
  color: var(--vermillion);
}

.founders-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 24px;
}

.founders-heading em {
  font-style: italic;
  color: var(--amber);
}

.founders-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 620px;
}

.founders-highlight {
  color: var(--espresso);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.founders-highlight strong {
  color: var(--espresso);
  font-weight: 500;
}

.founders-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founders-points li {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.founders-points li::before {
  content: '•';
  font-size: 22px;
  line-height: 1;
  color: var(--list-accent);
  flex-shrink: 0;
  padding-top: 2px;
  opacity: 1;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--paper);
}

.faq-list {
  margin-top: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--amber);
  font-family: 'Google Sans Text', 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.9;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 760px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--cream);
  padding: 160px max(var(--page-gutter), calc((100vw - var(--content-max-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

/* Layered rings decoration */
.cta-rings {
  position: absolute;
  left: -120px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.06;
}

.cta-copy {
  position: relative;
  z-index: 1;
  text-align: left;
}

.cta-copy h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(44px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin-bottom: 0;
  max-width: 640px;
}
.cta-copy h2 em { font-style: italic; color: var(--amber); }

.cta-copy p {
  margin-top: 20px;
  max-width: 420px;
  margin-left: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-align: left;
}

.cta-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  position: relative; z-index: 1;
}

.cta-right p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 320px;
  text-align: right;
}
.cta-right p strong { color: inherit; font-weight: 400; }

.contact-panel {
  width: min(100%, 460px);
}

.contact-form,
.contact-success {
  width: 100%;
  padding: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(35,26,22,0.06);
  backdrop-filter: blur(14px);
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--espresso);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(248,247,245,0.88);
  color: var(--espresso);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, white);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.contact-submit:focus-visible {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(214,118,61,0.16);
  background: var(--paper);
}

.contact-submit {
  width: 100%;
}

.contact-turnstile {
  min-height: 65px;
}

.contact-turnstile[hidden] {
  display: none;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-status {
  min-height: 22px;
  color: #8a4033;
  font-size: 14px;
  line-height: 1.5;
}

.contact-status[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-success h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--espresso);
}

.contact-success p {
  max-width: none;
  text-align: left;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  padding: 16px 44px;
  font-family: 'Google Sans Text', 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s;
}
.btn-amber:hover { background: var(--amber-dark); }

.cta-note {
  font-size: 12px;
  color: var(--gray-medium);
  letter-spacing: 0.06em;
}

/* ─── FOOTER ─── */
footer {
  padding: 36px max(var(--page-gutter), calc((100vw - var(--content-max-width)) / 2));
  background: var(--paper);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-image {
  display: block;
  width: 177px;
  height: auto;
}

footer p { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 36px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--espresso); }

/* ─── ANIMATIONS ─── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intersection observer targets */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .logo-image { width: 171px; }
  nav ul { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    z-index: 490;
    padding: 18px 24px 24px;
    background: rgba(248,247,245,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
  body.mobile-nav-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav-list {
    display: grid;
    gap: 8px;
  }
  .mobile-nav-list a {
    padding: 13px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-list li:last-child a {
    border-bottom: none;
  }
  .mobile-nav-list .nav-cta-mobile {
    margin-top: 8px;
    padding: 15px 18px;
    text-align: center;
    letter-spacing: 0.06em;
    border-bottom: none;
  }
  .hero, .section, .icp-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 112px; }
  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.1em;
    gap: 10px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: clamp(42px, 11vw, 58px);
    margin-bottom: 24px;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .btn-dark, .btn-outline, .btn-amber {
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .section-label {
    margin-bottom: 40px;
    font-size: 12px;
    letter-spacing: 0.1em;
    gap: 10px;
  }
  #problema {
    padding-left: 18px;
    padding-right: 18px;
  }
  .problem-grid {
    gap: 36px;
    align-items: start;
  }
  .problem-list {
    gap: 18px;
  }
  .problem-list li {
    gap: 12px;
    font-size: 16px;
  }
  .fit-col ul li {
    font-size: 16px;
  }
  .problem-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .problem-grid, .services-intro, .how-grid, .icp-grid, .founders-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .pricing-grid, .fit-grid { grid-template-columns: 1fr; }
  .step {
    padding-left: 34px;
  }
  .step-num {
    font-size: 18px;
  }
  .step-heading {
    gap: 8px;
    margin-bottom: 6px;
  }
  .pricing-grid {
    background: transparent;
    margin-top: 42px;
    row-gap: 10px;
  }
  .faq-list {
    margin-top: 42px;
  }
  .service-card {
    padding: 36px 24px;
  }
  .service-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .service-title {
    font-size: 26px;
  }
  .service-desc {
    font-size: 15px;
  }
  .service-tags {
    margin-top: 20px;
  }
  .tag {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .founder-role {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .pricing-card {
    padding: 40px 28px 28px;
    height: auto;
  }
  .pricing-card.featured {
    margin-top: 12px;
  }
  .pricing-label {
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .pricing-price {
    min-height: auto;
    margin-bottom: 8px;
  }
  .pricing-price .amount {
    font-size: 24px;
  }
  .pricing-unit {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .pricing-features {
    margin-bottom: 24px;
  }
  .pricing-features li {
    font-size: 16px;
  }
  .pricing-card > a {
    width: 100%;
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    font-size: 14px;
  }
  .pricing-label, .cta-note, .footer-links a {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .faq-item summary {
    gap: 16px;
    padding: 20px 0;
    font-size: 20px;
  }
  .faq-item summary::after {
    font-size: 24px;
  }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .cta-section { flex-direction: column; align-items: flex-start; padding: 100px 24px; }
  .cta-right,
  .contact-panel { width: 100%; align-items: flex-start; }
  .cta-copy,
  .cta-copy p {
    text-align: left;
  }
  .cta-copy p {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.65;
  }
  .cta-right p,
  .contact-success p { text-align: left; }
  .contact-form,
  .contact-success {
    padding: 24px 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-field label {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  footer { padding: 28px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  .faq-item summary {
    font-size: 18px;
    gap: 14px;
  }
  .faq-item summary::after {
    font-size: 22px;
  }
  .pricing-card {
    padding: 36px 20px 22px;
  }
  .pricing-card.featured {
    margin-top: 14px;
  }
  .pricing-label {
    font-size: 12px;
  }
  .pricing-price .amount {
    font-size: 24px;
  }
  .pricing-unit {
    font-size: 14px;
  }
  .pricing-features li {
    font-size: 16px;
  }
  .contact-form,
  .contact-success {
    padding: 22px 18px;
  }
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 15px;
    padding: 13px 14px;
  }
}
