/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: #0D0D0F; color: #F0EDE8; font-family: 'DM Sans', sans-serif; line-height: 1.6; overflow-x: hidden; }

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0D0D0F;
  --surface: #151518;
  --surface2: #1E1E23;
  --border: #2A2A30;
  --text: #F0EDE8;
  --text-muted: #8A8A96;
  --accent: #FF7B00;
  --accent-dim: #CC6200;
  --accent-glow: rgba(255, 123, 0, 0.15);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.05; }
.section__eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; background: rgba(13,13,15,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--accent); }
.nav__tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; flex: 1; text-align: center; }
.nav-portal-link { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-decoration: none; letter-spacing: 0.05em; transition: opacity 0.2s; }
.nav-portal-link:hover { opacity: 0.8; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 8rem 2rem 4rem; }
.hero__bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,123,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,123,0,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.hero__bg-orb { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(255,123,0,0.08) 0%, transparent 70%); pointer-events: none; }
.hero__inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero__badge { display: inline-block; padding: 0.4rem 1rem; border: 1px solid var(--accent); border-radius: 100px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 2rem; }
.hero__headline { font-size: clamp(4rem, 10vw, 9rem); color: var(--text); margin-bottom: 2rem; }
.hero__headline br { display: block; }
.hero__sub { max-width: 540px; font-size: 1.125rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 3rem; }
.hero__metrics { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.hero__metric { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__metric-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--accent); line-height: 1; }
.hero__metric-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.hero__metric-divider { width: 1px; height: 3rem; background: var(--border); }

/* ===== PROOF ===== */
.proof { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
.proof__inner { max-width: 1200px; margin: 0 auto; }
.proof__label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;; }
.proof__item { padding: 2rem 3rem 2rem 0; border-right: 1px solid var(--border); }
.proof__item:last-child { border-right: none; padding-right: 0; padding-left: 3rem; }
.proof__item:nth-child(2) { padding-left: 3rem; }
.proof__number { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--accent); line-height: 1; margin-bottom: 0.75rem; }
.proof__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ===== SERVICE ===== */
.service { padding: 8rem 2rem; }
.service__inner { max-width: 1200px; margin: 0 auto; }
.service__header { margin-bottom: 4rem; }
.service__headline { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--text); }
.service__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service__card { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; transition: border-color 0.2s; }
.service__card:hover { border-color: var(--accent); }
.service__card-icon { margin-bottom: 1.5rem; }
.service__card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--text); margin-bottom: 0.75rem; }
.service__card-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== MODEL ===== */
.model { background: var(--surface); padding: 8rem 2rem; }
.model__inner { max-width: 1200px; margin: 0 auto; }
.model__headline { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--text); margin-bottom: 4rem; }
.model__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.model__card { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; position: relative; }
.model__card--premium { border-color: var(--accent); }
.model__card-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.model__card-label--accent { color: var(--accent); }
.model__price { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--text); line-height: 1; margin-bottom: 0.5rem; }
.model__price span { font-size: 1.25rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.model__client { font-size: 0.85rem; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; }
.model__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }
.model__features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.model__features li { font-size: 0.875rem; color: var(--text-muted); padding-left: 1.5rem; position: relative; }
.model__features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.model__note { font-size: 0.8rem; color: var(--text-muted); border-left: 2px solid var(--accent); padding-left: 1rem; font-style: italic; }

/* ===== PROCESS ===== */
.process { padding: 8rem 2rem; }
.process__inner { max-width: 1200px; margin: 0 auto; }
.process__headline { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--text); margin-bottom: 4rem; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process__step { padding: 2rem; border-right: 1px solid var(--border); position: relative; }
.process__step:last-child { border-right: none; }
.process__step-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--border); line-height: 1; margin-bottom: 1.5rem; display: block; }
.process__step:hover .process__step-num { color: var(--accent); }
.process__step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--text); margin-bottom: 0.75rem; }
.process__step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== MANIFESTO ===== */
.manifesto { background: var(--accent); padding: 8rem 2rem; }
.manifesto__inner { max-width: 900px; margin: 0 auto; }
.manifesto__quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); color: #0D0D0F; line-height: 1.15; margin-bottom: 2.5rem; }
.manifesto__body { font-size: 1rem; color: rgba(13,13,15,0.7); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 3rem 2rem; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer__logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.1em; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer__meta p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .proof__grid { grid-template-columns: 1fr; gap: 0; }
  .proof__item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .proof__item:last-child { border-bottom: none; padding-left: 0; }
  .proof__item:nth-child(2) { padding-left: 0; }
  .service__grid { grid-template-columns: 1fr; }
  .model__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 1px; }
  .process__step { border-right: none; border-bottom: 1px solid var(--border); }
  .process__step:nth-child(odd) { border-right: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero__headline { font-size: 3.5rem; }
  .hero__metrics { flex-direction: column; gap: 1.5rem; }
  .hero__metric-divider { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .nav__tagline { display: none; }
  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-right: none; }
  .service, .model, .process, .manifesto { padding: 5rem 1.5rem; }
  .proof { padding: 3rem 1.5rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }