@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --bg:       #141412;
  --surface:  #1C1C1A;
  --surface2: #1C1C1A;
  --text:     #F0EDE8;
  --mid:      #6A6660;
  --muted:    #4A4844;
  --light:    #3A3836;
  --border:   rgba(255,255,255,0.07);
  --display:  'Barlow Condensed', sans-serif;
  --body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 56px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
  filter: invert(0);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  background: var(--surface2);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,8,0.12) 0%, rgba(10,10,8,0.0) 50%, rgba(10,10,8,0.35) 100%);
}

.hero-content {
  position: absolute;
  top: 3rem;
  left: 2.5rem;
  max-width: 460px;
}

.hero-h1 {
  font-family: var(--body);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 2.5rem;
  max-width: 320px;
}

.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover { background: var(--mid); }

.btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-outline:hover { color: var(--text); border-color: rgba(0,0,0,0.3); }

.btn-solid {
  background: var(--text);
  color: var(--bg);
}
.btn-solid:hover { opacity: 0.85; }

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  height: 38px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-inner {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .ticker-inner { animation: none; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--mid);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1.25rem;
}

/* ── SECTION HELPERS ── */
.sec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.05;
}
.cta-strip p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
.footer {
  padding: 1.75rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--surface2);
}
.footer-logo {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-note { font-size: 10px; color: var(--muted); }

@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { left: 1.5rem; right: 1.5rem; bottom: 2.5rem; }
  .cta-strip { padding: 3rem 1.5rem; }
  .footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}

.nav--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav--transparent .nav-links a {
  color: rgba(255,255,255,0.45);
}
.nav--transparent .nav-links a:hover,
.nav--transparent .nav-links a.active {
  color: rgba(255,255,255,0.85);
}
