/* DTCo Brand System — shared across all inner pages */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:       #09101F;
  --bg2:      #0b1423;
  --panel:    #0f1a2e;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.38);
  --mid:      rgba(255,255,255,0.55);
  --light:    rgba(255,255,255,0.80);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.14);
  --grad-pk:  #FF1CF8;
  --grad-cy:  #00F0FF;
  --r:        8px;
  --rc:       24px;
  --rcard:    38px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* TYPOGRAPHY */
.grad-text {
  background: linear-gradient(135deg, var(--grad-pk) 0%, var(--grad-cy) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  display: block; margin-bottom: 18px;
}
.section-h2 {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 500;
  letter-spacing: -1.5px; line-height: 1.06;
  color: var(--white); margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; line-height: 1.75; color: var(--mid);
  max-width: 580px; margin-bottom: 48px; font-weight: 400;
}

/* REVEAL */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: transparent;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(9,16,31,0.7);
  backdrop-filter: blur(20px) saturate(1.6);
  border-color: var(--border);
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-weight: 600; border-radius: 100px; transition: all .2s; white-space: nowrap; cursor: pointer; border: none; }
.btn-primary { background: #fff; color: #09101F; padding: 10px 24px; font-size: 14px; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,255,255,0.15); }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #09101F; padding: 18px 42px;
  font-size: 16px; font-weight: 600; border-radius: 100px;
  font-family: inherit; border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.btn-cta:hover { opacity: .93; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.15); }
.btn-outline-pill {
  display: inline-flex; align-items: center; background: transparent;
  color: rgba(255,255,255,0.65); padding: 16px 36px; font-size: 15px;
  font-weight: 500; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.14);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-outline-pill:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 80px 100px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(255,28,248,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(0,240,255,0.06) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 {
  font-size: clamp(48px, 6vw, 80px); font-weight: 500;
  letter-spacing: -2px; line-height: 1.02;
  color: var(--white); margin-bottom: 20px;
}
.page-hero p { font-size: 18px; color: var(--mid); line-height: 1.75; max-width: 540px; }

/* CTA BLOCK */
.cta-block-section { padding: 80px 80px 120px; background: var(--bg); }
.cta-block-inner {
  border-radius: 40px; padding: 100px 200px; text-align: center;
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.5)), linear-gradient(135deg,#1a0a2e 0%,#0a1628 60%,#0f1520 100%);
  position: relative; overflow: hidden;
}
.cta-block-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255,28,248,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0,240,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.cta-block-inner > * { position: relative; }
.cta-block-inner h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; letter-spacing: -2px; line-height: 1.0; color: #fff; margin-bottom: 20px; }
.cta-block-inner p { font-size: 20px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 44px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 20px; }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 80px 40px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; gap: 32px; }
.f-brand { display: flex; align-items: center; gap: 20px; }
.f-logo img { height: 28px; width: auto; flex-shrink: 0; }
.f-tagline { font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 480px; }
.f-footer-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.f-social-link { display: flex; align-items: center; color: rgba(255,255,255,0.45); transition: color .15s; }
.f-social-link:hover { color: #fff; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.f-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 120px 32px 80px; }
  footer { padding-left: 32px; padding-right: 32px; }
  .footer-grid { flex-wrap: wrap; gap: 24px; }
  .cta-block-section { padding-left: 32px; padding-right: 32px; }
  .cta-block-inner { padding: 64px 48px; }
  nav.nav-open .nav-links {
    display: flex !important; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(9,16,31,0.98); backdrop-filter: blur(20px);
    padding: 12px 20px 20px; gap: 0;
    border-bottom: 1px solid var(--border); z-index: 199;
  }
  nav.nav-open .nav-links li a { display: block; padding: 14px 8px; font-size: 15px; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .page-hero { padding: 100px 16px 60px; }
  footer { padding: 40px 16px 28px; }
  .footer-grid { flex-direction: column; gap: 24px; }
  .f-brand { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-block-section { padding-left: 16px; padding-right: 16px; }
  .cta-block-inner { padding: 48px 24px; }
  .cta-block-inner h2 { font-size: 36px; }
}