/* =====================================
   LOCALTACT — DESIGN SYSTEM
   ===================================== */

:root {
  --bg: #FAF8F4;
  --fg: #1A1918;
  --fg-muted: #6B6560;
  --fg-faint: #A8A29E;
  --accent: #D95F29;
  --accent-dark: #B8491C;
  --green: #2C5F2E;
  --green-light: #E8F0E6;
  --border: #E8E2D8;
  --card-bg: #FFFFFF;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}

/* NAV */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* =====================================
   HERO
   ===================================== */
.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.hero-headline {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  border: 1px solid rgba(44, 95, 46, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* SITE MOCKUP */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-mockup {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,25,24,0.08), 0 4px 16px rgba(26,25,24,0.04);
}

.mockup-toolbar {
  background: #F3F0EA;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 0.375rem;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-faint);
}

.mockup-dots span:first-child { background: #E0614F; }
.mockup-dots span:nth-child(2) { background: #F5B82E; }
.mockup-dots span:nth-child(3) { background: #4CAF50; }

.mockup-url {
  font-size: 0.6875rem;
  color: var(--fg-muted);
  font-family: monospace;
  background: var(--card-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.mockup-content { padding: 1.25rem; }

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mockup-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ml-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
}

.ml-lines { display: flex; flex-direction: column; gap: 3px; }

.ml-line {
  height: 4px;
  border-radius: 2px;
  background: var(--fg);
}

.ml-line--long { width: 60px; }
.ml-line--short { width: 36px; height: 3px; background: var(--fg-muted); }

.mockup-nav { display: flex; gap: 0.75rem; }

.mn-item {
  width: 36px;
  height: 10px;
  border-radius: 2px;
  background: var(--fg-faint);
}

.mn-item--cta {
  background: var(--accent);
  width: 48px;
}

.mockup-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mh-text { display: flex; flex-direction: column; gap: 6px; padding: 0.75rem 0; }

.mh-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}

.mh-line--xl { height: 16px; width: 90%; background: var(--fg); }
.mh-line--lg { height: 12px; width: 75%; }
.mh-line--med { width: 60%; }
.mh-line--sm { width: 40%; }

.mh-cta {
  height: 28px;
  width: 100px;
  border-radius: 6px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.mh-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-content: start;
}

.mh-box {
  height: 80px;
  border-radius: 8px;
  background: var(--green-light);
}

.mh-box--accent { background: var(--accent); opacity: 0.15; }

.mockup-features { display: flex; flex-direction: column; gap: 0.75rem; }

.mf-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 8px;
}

.mf-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.mf-icon svg { width: 14px; height: 14px; }

.mf-text { flex: 1; }

.mf-title {
  height: 8px;
  width: 60%;
  border-radius: 4px;
  background: var(--fg-faint);
  margin-bottom: 6px;
}

.mf-desc {
  height: 6px;
  width: 80%;
  border-radius: 4px;
  background: var(--border);
}

/* PROOF STRIP */
.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.proof-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* =====================================
   THE GAP
   ===================================== */
.the-gap {
  background: var(--fg);
  padding: 5rem 2.5rem;
}

.gap-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.gap-left .section-label { color: var(--accent); }

.gap-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1.2;
}

.gap-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gap-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.gc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(217, 95, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.gc-icon svg { width: 18px; height: 18px; }

.gap-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.gap-card p {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.6);
  line-height: 1.6;
}

/* =====================================
   HOW IT WORKS
   ===================================== */
.how-it-works {
  padding: 5rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hiw-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}

.hiw-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 44ch;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  width: 80px;
  flex-shrink: 0;
}

.connector-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border) 0,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.step-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-details li {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.step-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* =====================================
   PRICING
   ===================================== */
.pricing {
  background: #F3EFE8;
  padding: 5rem 2.5rem;
}

.pricing-inner { max-width: 1280px; margin: 0 auto; }

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.875rem;
}

.pricing-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-tier {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.price-tier--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pt-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
}

.pt-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.pt-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.pt-period {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pt-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pt-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}

.pt-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232C5F2E' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* =====================================
   MANIFESTO
   ===================================== */
.manifesto {
  padding: 5rem 2.5rem;
  background: var(--card-bg);
}

.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
  max-width: 68ch;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.75rem;
}

.manifesto-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 3.5rem;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 1.75rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
}

.pillar-icon svg { width: 20px; height: 20px; }

.pillar h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* =====================================
   CLOSING
   ===================================== */
.closing {
  background: var(--green);
  padding: 5rem 2.5rem;
}

.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.closing-label { color: rgba(255,255,255,0.5); }

.closing-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 50ch;
}

.cta-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 220px;
}

.cta-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}

.cta-slot {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.875rem;
}

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2s ease-in-out infinite;
}

/* =====================================
   FOOTER
   ===================================== */
.site-footer {
  background: var(--fg);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.wordmark--sm {
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.45);
  line-height: 1.6;
  max-width: 36ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fl-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fl-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.35);
  margin-bottom: 0.25rem;
}

.fl-group span:not(.fl-label) {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.6);
  cursor: pointer;
}

.fl-group span:not(.fl-label):hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(250,248,244,0.3);
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gap-inner { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mockup-hero { grid-template-columns: 1fr; }
  .mh-visual { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .the-gap, .how-it-works, .pricing, .manifesto, .closing { padding: 3.5rem 1.25rem; }
  .top-nav { padding: 0 1.25rem; }
  .tagline { display: none; }
  .hero-proof { grid-template-columns: 1fr; }
}