/* =============================================
   FULL TURBO — Brand Identity System CSS
   Tokens sourced from tofullturbo.com brand kit v1.0
   ============================================= */

/* --- Design Tokens --- */
:root {
  --ink: #0a0a0f;
  --paper: #f4f1eb;
  --turbo: #ff3c00;
  --turbo-dim: #ff3c0022;
  --turbo-glow: rgba(255, 60, 0, 0.12);
  --gold: #c9a84c;
  --slate: #1e1e2e;
  --mist: #8b8fa8;
  --white: #ffffff;
  --card-bg: #13131f;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--card-bg);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(48px, 7vw, 96px);
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
}

h3 {
  font-size: clamp(22px, 3vw, 36px);
}

h4 {
  font-size: clamp(18px, 2vw, 28px);
}

.body-lg {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.label {
  font-family: 'DM Mono', monospace;
  font-size: clamp(9px, 1vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turbo);
}

.mono {
  font-family: 'DM Mono', monospace;
}

.mist {
  color: var(--mist);
}

.turbo {
  color: var(--turbo);
}

.gold {
  color: var(--gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--slate {
  background-color: var(--slate);
}

.section--card-bg {
  background-color: var(--card-bg);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(19, 19, 31, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo svg {
  height: 22px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--mist);
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  background: var(--turbo);
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav__cta:hover {
  background: #e63600;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn--primary {
  background: var(--turbo);
  color: var(--white);
}

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--turbo-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 0;
}

.hero__label {
  font-family: 'DM Mono', monospace;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 8px;
}

.hero h1 .turbo-period {
  color: var(--turbo);
}

.hero__subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--mist);
  margin-bottom: 32px;
  line-height: 1.1;
}

.hero__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: var(--mist);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--turbo);
  line-height: 1;
}

.stat__desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 8px;
  line-height: 1.5;
}

/* --- The Gap / Pain Section --- */
.pain-list {
  list-style: none;
  margin: 48px 0;
}

.pain-list li {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--mist);
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pain-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--turbo);
  font-weight: 600;
}

.testimonial {
  margin-top: 56px;
  padding: 32px;
  background: var(--slate);
  border-left: 3px solid var(--turbo);
}

.testimonial__quote {
  font-size: clamp(16px, 1.3vw, 20px);
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 16px;
}

.testimonial__attr {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* --- Card Grid (What We Build) --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--slate);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card__number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--turbo);
  margin-bottom: 16px;
}

.card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 16px;
  line-height: 1.15;
}

.card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
  margin-bottom: 24px;
}

.card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 4px 10px;
  border: 1px solid rgba(139, 143, 168, 0.2);
}

/* CTA Card */
.card--cta {
  background: var(--turbo-dim);
  border: 1px solid rgba(255, 60, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card--cta h3 {
  color: var(--turbo);
}

.card--cta .btn {
  margin-top: 24px;
}

/* --- Stack Table --- */
.stack-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
  -webkit-overflow-scrolling: touch;
}

.stack-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}

.stack-table thead th {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: left;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.stack-table thead th:nth-child(n+4) {
  text-align: center;
}

.stack-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--mist);
  vertical-align: top;
}

.stack-table tbody td:first-child {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turbo);
  white-space: nowrap;
}

.stack-table tbody td:nth-child(n+4) {
  text-align: center;
  color: var(--white);
}

.stack-table .section-row td {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
  padding-top: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.check {
  color: var(--turbo);
}

.dash {
  color: rgba(139, 143, 168, 0.3);
}

/* --- Feature Section (GEO / Phone) --- */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.feature-section__text {
  max-width: 540px;
}

.feature-section__text h2 {
  margin-bottom: 24px;
}

.feature-section__text p {
  color: var(--mist);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: var(--slate);
  padding: 28px;
}

.feature-card h4 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* Phone section split layout */
.phone-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.phone-features__col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--turbo);
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mist);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--turbo);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--card-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.04em;
}

.footer__contact {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--mist);
  margin-top: 12px;
}

.footer__contact a {
  color: var(--mist);
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--turbo);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 160px 0 80px;
  background: var(--slate);
}

.page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}

.page-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--mist);
  max-width: 600px;
  line-height: 1.7;
}

/* --- About Page --- */
.about-block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-block:last-child {
  border-bottom: none;
}

.about-block h2 {
  margin-bottom: 32px;
}

.about-block p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: var(--mist);
  max-width: 720px;
  margin-bottom: 20px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.founder {
  background: var(--slate);
  padding: 40px;
}

.founder h3 {
  margin-bottom: 6px;
}

.founder__role {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 20px;
}

.founder p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
  margin-bottom: 16px;
}

/* --- Insights Page --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.insight-card {
  background: var(--slate);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-2px);
}

.insight-card__meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 16px;
}

.insight-card h3 {
  margin-bottom: 16px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.insight-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
  flex: 1;
  margin-bottom: 24px;
}

.insight-card__link {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--turbo);
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.insight-card__link:hover {
  opacity: 0.8;
}

/* Featured insight (first one, spans full width) */
.insight-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.insight-card--featured h3 {
  font-size: clamp(24px, 3vw, 36px);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--turbo);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info__item {
  margin-bottom: 32px;
}

.contact-info__item h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 16px;
  color: var(--mist);
  line-height: 1.6;
}

.contact-info__item a:hover {
  color: var(--turbo);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .feature-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 32px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card--featured {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .phone-features {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 24px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--slate);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border: 2px solid var(--turbo);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--turbo);
  color: var(--white);
  padding: 4px 16px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turbo);
  margin-bottom: 8px;
}

.pricing-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card__price {
  margin-bottom: 8px;
}

.pricing-card__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
}

.pricing-card__period {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--mist);
}

.pricing-card__setup {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 32px;
}

.pricing-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mist);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--turbo);
  font-size: 13px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Launch Timeline --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.timeline__step {
  position: relative;
  padding: 32px 24px;
  background: var(--slate);
}

.timeline__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--turbo);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.timeline__step h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.timeline__step p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* --- AI Callout --- */
.ai-callout {
  margin-top: 48px;
  padding: 32px;
  background: var(--turbo-dim);
  border: 1px solid rgba(255, 60, 0, 0.15);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ai-callout__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
}

.ai-callout strong {
  color: var(--white);
}

/* --- Services Detail Table --- */
.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 48px;
}

.detail-table thead th {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: left;
  padding: 16px 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 72px;
  background: var(--card-bg);
  z-index: 10;
}

.detail-table thead th:nth-child(n+3) {
  text-align: center;
  min-width: 140px;
}

.detail-table thead th.featured-col {
  color: var(--turbo);
}

.detail-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--mist);
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5;
}

.detail-table tbody td:nth-child(n+3) {
  text-align: center;
}

.detail-table .category-row td {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
  padding-top: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Search Asset Explainer --- */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.asset-type {
  background: var(--slate);
  padding: 20px;
}

.asset-type h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.asset-type p {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.5;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .ai-callout {
    flex-direction: column;
  }
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up--d1 { animation-delay: 0.1s; }
.fade-up--d2 { animation-delay: 0.2s; }
.fade-up--d3 { animation-delay: 0.3s; }
.fade-up--d4 { animation-delay: 0.4s; }
.fade-up--d5 { animation-delay: 0.5s; }

/* Scroll-triggered animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
