/* ─────────────────────────────────────────────────────────
   DoppIT Theme — Main Stylesheet
   ───────────────────────────────────────────────────────── */

:root {
  --teal:  #3DD6D0;
  --gold:  #F5A623;
  --coral: #F5623A;
  --dark:  #080808;
  --line:  rgba(255,255,255,0.07);
  --text:  #EDE9DF;
  --muted: #555;
  --grad:  linear-gradient(135deg, #3DD6D0 0%, #F5A623 50%, #F5623A 100%);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: crosshair;
  min-height: 100vh;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9000;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 52px;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--muted);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 400;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--text); }

.mobile-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--grad);
  padding: 14px 36px;
  border-radius: 1px;
  margin-top: 12px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 52px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.hero-left { padding-right: 80px; }

.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.6s ease forwards 0.1s;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: up 0.6s ease forwards 0.25s;
  margin-bottom: 32px;
}

.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
  opacity: 0;
  animation: up 0.6s ease forwards 0.4s;
  margin-bottom: 48px;
}
.hero-sub strong { color: rgba(237,233,223,0.5); font-weight: 400; }

.hero-cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--grad);
  padding: 14px 36px;
  border-radius: 1px;
  opacity: 0;
  animation: up 0.6s ease forwards 0.55s;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-cta:hover { opacity: 0.82; transform: translateY(-1px); }

.hero-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: up 0.8s ease forwards 0.5s;
}

.stat-block { padding: 36px 0; border-bottom: 1px solid var(--line); }
.stat-block:first-child { padding-top: 0; }
.stat-block:last-child  { border-bottom: none; padding-bottom: 0; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TRUTH STRIP ── */
.truth { display: flex; border-bottom: 1px solid var(--line); }

.truth-item {
  flex: 1;
  padding: 48px 52px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.truth-item:last-child { border-right: none; }

.truth-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--grad);
  transition: width 0.4s ease;
}
.truth-item:hover { background: rgba(255,255,255,0.015); }
.truth-item:hover::before { width: 100%; }

.truth-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.truth-q::before { content: '\201C'; }
.truth-q::after  { content: '\201D'; }

.truth-a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.4;
}

/* ── SERVICES ── */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.service { padding: 80px 52px; border-right: 1px solid var(--line); }
.service:last-child { border-right: none; }

.service-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.service h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}

.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
}

.service-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.service-items li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.service-items li::before {
  content: '\2014';
  position: absolute; left: 0;
  color: var(--coral);
  font-size: 0.8rem;
}

.service-link {
  display: inline-block;
  margin-top: 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--coral); }

/* ── STATEMENT ── */
.statement {
  padding: 120px 52px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 80px;
  align-items: center;
}

.statement-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: center;
}

.statement-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.statement-text .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── WHO ── */
.who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.who-col { padding: 64px 48px; border-right: 1px solid var(--line); }
.who-col:last-child { border-right: none; }

.who-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.who-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.who-col ul li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.who-col ul li::before {
  content: '\00B7';
  position: absolute; left: 0;
  color: var(--coral);
}

/* ── CONTACT ── */
.contact {
  padding: 100px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.contact-left h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.contact-left p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 40px;
}

.contact-cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--grad);
  padding: 14px 36px;
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-cta:hover { opacity: 0.82; transform: translateY(-1px); }

.contact-right { padding-top: 8px; display: flex; flex-direction: column; }

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:first-child { border-top: 1px solid var(--line); }
.contact-line:hover .contact-line-label { color: var(--teal); }
.contact-line:hover .contact-arrow { color: var(--teal); transform: translateX(4px); }

.contact-line-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  width: 80px;
}

.contact-line-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
  flex: 1;
  padding: 0 20px;
}

.contact-arrow {
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
    padding-top: 120px;
  }
  .hero::after { display: none; }
  .hero-left { padding-right: 0; margin-bottom: 56px; }
  .hero-right { padding-left: 0; }

  .truth { flex-direction: column; }
  .truth-item { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 24px; }
  .truth-item:last-child { border-bottom: none; }

  .services { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); padding: 56px 24px; }
  .service:last-child { border-bottom: none; }

  .statement { grid-template-columns: 1fr; gap: 24px; padding: 72px 24px; }
  .statement-label { writing-mode: horizontal-tb; transform: none; }

  .who { grid-template-columns: 1fr; }
  .who-col { border-right: none; border-bottom: 1px solid var(--line); padding: 48px 24px; }
  .who-col:last-child { border-bottom: none; }

  .contact { grid-template-columns: 1fr; gap: 56px; padding: 64px 24px; }

  footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
}
