:root {
  --stone: #f2ede6;
  --stone-mid: #e0d9cf;
  --concrete: #c8bfb2;
  --ash: #8a7f74;
  --carbon: #1a1714;
  --ink: #2c2620;
  --brick: #a84c2a;
  --ochre: #c8922a;
  --rule: #d4ccc4;
  --white: #faf8f5;
}

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

body {
  background: var(--stone);
  color: var(--ink);
  font-family: "Overpass", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--carbon);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.015) 60px,
    rgba(255, 255, 255, 0.015) 61px
  );
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 204, 196, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 204, 196, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

/* ─── NAV ─── */
nav {
  position: relative;
  z-index: 10;
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2420;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-mark {
  display: none;
}

.logo-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
}

.logo-wordmark .sep {
  color: var(--brick);
  margin: 0 0.05em;
}

.nav-tag {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  font-family: "Overpass Mono", monospace;
  font-size: 0.65rem;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.nav-cta:hover {
  border-color: var(--brick);
  color: var(--white);
}

/* ─── HERO BODY ─── */
.hero-body {
  position: relative;
  z-index: 10;
  padding: 6rem 3rem 4rem;
  max-width: 900px;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--brick);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(168, 76, 42, 0.6);
  animation: pulse 2.4s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 4px rgba(168, 76, 42, 0.4);
  }
  50% {
    box-shadow: 0 0 14px rgba(168, 76, 42, 0.8);
  }
}

.ticker-text {
  font-family: "Overpass Mono", monospace;
  font-size: 0.68rem;
  color: var(--concrete);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--stone);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.accent {
  color: var(--brick);
  font-style: italic;
}
.accent2 {
  color: var(--ochre);
  font-style: italic;
}

.hero-sub {
  font-family: "Overpass", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ash);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--brick);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-family: "Overpass Mono", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: #c05a34;
}

.btn-primary.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 0.85rem;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ash);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-family: "Overpass Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--concrete);
  color: var(--stone);
}

/* ─── DATA BAR ─── */
.data-bar {
  display: flex;
  gap: 0;
  border: 1px solid #2a2420;
  background: rgba(255, 255, 255, 0.03);
}

.data-cell {
  flex: 1;
  padding: 1rem 1.5rem;
  border-right: 1px solid #2a2420;
  min-width: 0;
}

.data-cell:last-child {
  border-right: none;
}

.data-val {
  font-family: "Overpass Mono", monospace;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--stone);
  line-height: 1;
}

.data-val.blue {
  color: var(--brick);
}
.data-val.amber {
  color: var(--ochre);
}
.data-val.green {
  color: #7aaa8a;
}

.data-lbl {
  font-family: "Overpass Mono", monospace;
  font-size: 0.58rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

/* ─── HERO FOOTER ─── */
.hero-footer {
  position: relative;
  z-index: 10;
  padding: 1.25rem 3rem;
  border-top: 1px solid #2a2420;
  font-family: "Overpass Mono", monospace;
  font-size: 0.62rem;
  color: #3a3330;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
}

.blink {
  color: var(--brick);
  animation: blink 1.4s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ─── DIVIDER ─── */
.section-divider {
  height: 1px;
  background: var(--rule);
}

/* ─── SECTIONS ─── */
section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.section-num {
  font-family: "Overpass Mono", monospace;
  font-size: 0.65rem;
  color: var(--brick);
  letter-spacing: 0.1em;
  border: 1px solid rgba(168, 76, 42, 0.3);
  padding: 0.25rem 0.6rem;
  flex-shrink: 0;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--carbon);
  letter-spacing: 0.01em;
}

h2 .accent {
  color: var(--brick);
  font-style: italic;
}

/* ─── DATA LAYERS ─── */
.data-layers-wrap {
  background: var(--white);
}

.data-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.data-type {
  background: var(--white);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.data-type::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brick);
}

.data-type.amber-top::after {
  background: var(--ochre);
}
.data-type.green-top::after {
  background: #5e8a6e;
}

.data-type-label {
  font-family: "Overpass Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1rem;
}

.data-type.amber-top .data-type-label {
  color: var(--ochre);
}
.data-type.green-top .data-type-label {
  color: #5e8a6e;
}

.data-type h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 0.8rem;
}

.data-type p {
  font-size: 0.85rem;
  color: var(--ash);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.data-signals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.signal {
  font-family: "Overpass Mono", monospace;
  font-size: 0.68rem;
  color: var(--ink);
  padding: 0.4rem 0.6rem;
  background: var(--stone);
  border-left: 2px solid var(--rule);
}

/* ─── PRICING ─── */
.pricing-wrap {
  background: var(--stone-mid);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.tier {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier.featured {
  background: var(--stone);
  outline: 1px solid var(--brick);
  outline-offset: -1px;
  z-index: 1;
}

.tier-badge {
  font-family: "Overpass Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 1.5rem;
}

.tier.featured .tier-badge {
  color: var(--brick);
}

.tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--carbon);
  margin-bottom: 0.3rem;
}

.tier-price {
  font-family: "Overpass Mono", monospace;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--carbon);
  margin: 1rem 0 0.3rem;
}

.tier-price sup {
  font-size: 0.9rem;
  color: var(--ash);
  vertical-align: super;
}
.tier-price sub {
  font-size: 0.75rem;
  color: var(--ash);
}

.tier-desc {
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  flex: 1;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tier-features li {
  font-family: "Overpass", sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.4;
}

.tier-features li .check {
  color: #5e8a6e;
  font-family: "Overpass Mono", monospace;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tier-features li .lock {
  color: var(--concrete);
  font-family: "Overpass Mono", monospace;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tier-features li .locked {
  color: var(--concrete);
}

.tier-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  font-family: "Overpass Mono", monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}

.tier-cta-primary {
  background: var(--brick);
  color: var(--white);
  border: 1px solid var(--brick);
}

.tier-cta-primary:hover {
  background: #c05a34;
  border-color: #c05a34;
}

.tier-cta-ghost {
  border: 1px solid var(--rule);
  color: var(--ash);
}

.tier-cta-ghost:hover {
  border-color: var(--brick);
  color: var(--brick);
}

/* ─── CUSTOMERS ─── */
.who-wrap {
  background: var(--stone);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}

.customer-card {
  background: var(--white);
  padding: 2rem;
}

.customer-icon {
  margin-bottom: 1.25rem;
  display: block;
  color: var(--ash);
}

.customer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 0.6rem;
}

.customer-card p {
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.customer-value {
  font-family: "Overpass Mono", monospace;
  font-size: 0.65rem;
  color: var(--brick);
  border-top: 1px solid var(--rule);
  padding-top: 0.8rem;
  letter-spacing: 0.05em;
}

/* ─── COMING SOON ─── */
.coming-soon-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(200, 146, 42, 0.25);
  background: rgba(200, 146, 42, 0.06);
  font-family: "Overpass Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ochre);
  line-height: 1.5;
}

.coming-soon-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

.pricing-wrap .tiers-grid {
  opacity: 0.45;
  pointer-events: none;
  filter: blur(0.4px);
}

/* ─── CTA ─── */
.cta-section {
  background: var(--carbon);
  text-align: center;
}

.cta-section section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-section h2 {
  color: var(--stone);
  font-weight: 300;
}

.cta-section h2 .accent {
  color: var(--brick);
  font-style: italic;
}

.cta-section p {
  font-size: 1rem;
  color: var(--ash);
  max-width: 500px;
  line-height: 1.75;
}

.cta-section .ticker-text {
  color: var(--concrete);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
}

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

.footer-brand .logo-wordmark {
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.footer-email {
  font-family: "Overpass Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.footer-email:hover {
  color: var(--concrete);
  border-bottom-color: var(--concrete);
}

.footer-col-label {
  display: block;
  font-family: "Overpass Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  opacity: 0.6;
  margin-bottom: 1rem;
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0px;
  align-items: baseline;
}

.footer-nav a {
  font-family: "Overpass", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--concrete);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom span {
  font-family: "Overpass Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--ash);
  opacity: 0.5;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    padding: 1rem 1.5rem;
  }
}

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

.hero-body > * {
  animation: fadeIn 0.7s ease both;
}
.hero-body > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-body > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero-body > *:nth-child(3) {
  animation-delay: 0.25s;
}
.hero-body > *:nth-child(4) {
  animation-delay: 0.35s;
}
.hero-body > *:nth-child(5) {
  animation-delay: 0.45s;
}

/* ─── NAV CTA SHORT LABEL ─── */
.cta-short {
  display: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .data-types {
    grid-template-columns: 1fr;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .customer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  nav {
    padding: 0 0.85rem;
  }
  .nav-cta {
    padding: 0.38rem 0.65rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
  .cta-long {
    display: none;
  }
  .cta-short {
    display: inline;
  }
  .logo-wordmark {
    font-size: 0.82rem;
    letter-spacing: 0.25em;
  }
}

@media (max-width: 700px) {
  nav {
    padding: 0 1.5rem;
  }
  .hero-body {
    padding: 3.5rem 1.5rem 2.5rem;
  }
  .hero-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.3rem;
  }
  section {
    padding: 3rem 1.5rem;
  }
  footer {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  footer p {
    order: 3;
  }
  .data-bar {
    flex-wrap: wrap;
  }
  .data-cell {
    flex: 1 1 50%;
  }
  .customer-grid {
    grid-template-columns: 1fr;
  }
}
