:root {
  --bg: #08090d;
  --bg-elev: #0d0f15;
  --panel: rgba(255, 255, 255, 0.028);
  --panel-hover: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --ink: #edeff4;
  --muted: #8d93a3;
  --a1: #ff9738;
  --a2: #ffc861;
  --radius: 18px;
  --shell: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 151, 56, 0.32);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-weight: 700;
}

p {
  margin: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--a1);
  color: #fff;
  transition: top 0.2s;
}

.skip:focus {
  top: 16px;
}

.grad {
  background: linear-gradient(100deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a2);
}

/* Ambient glow */

.glow {
  position: fixed;
  inset: -25% 0 auto;
  height: 720px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(44% 52% at 20% 30%, rgba(255, 151, 56, 0.16), transparent 70%),
    radial-gradient(40% 50% at 76% 18%, rgba(123, 109, 240, 0.13), transparent 72%);
  filter: blur(20px);
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 6px 20px rgba(255, 151, 56, 0.32);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-text em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav nav a:not(.btn) {
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.nav nav a:not(.btn):hover {
  color: var(--ink);
  background: var(--panel-hover);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background 0.2s,
    border-color 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.9rem;
  border-radius: 9px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(120deg, #ff8a1f, var(--a1) 55%, var(--a2));
  color: #1a1206;
  box-shadow: 0 8px 30px rgba(255, 151, 56, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255, 151, 56, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--panel);
}

.btn-ghost:hover {
  background: var(--panel-hover);
  border-color: rgba(255, 168, 84, 0.35);
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--panel);
  font-size: 0.84rem;
  color: var(--muted);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--a1);
  box-shadow: 0 0 0 3px rgba(255, 151, 56, 0.2);
}

.hero h1 {
  margin: 28px 0 0;
  max-width: 19ch;
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 800;
}

.hero .lead {
  margin-top: 26px;
  max-width: 56ch;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

/* Ticker */

.ticker {
  margin-top: 88px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ticker.is-interactive {
  cursor: grab;
}

.ticker.is-dragging {
  cursor: grabbing;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: slide 34s linear infinite;
}

.ticker.is-interactive .ticker-track {
  animation: none;
}

.ticker-seq {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.ticker-track span {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--a1), var(--a2));
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */

.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section-head {
  max-width: 34ch;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-top: 16px;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.panel {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 151, 56, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.panel:hover {
  transform: translateY(-3px);
  background: var(--panel-hover);
  border-color: rgba(255, 168, 84, 0.3);
}

.panel:hover::before {
  opacity: 1;
}

.num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--a1);
}

.panel h3 {
  margin: 14px 0 10px;
  font-size: 1.16rem;
  font-weight: 650;
}

.panel p {
  color: var(--muted);
  font-size: 0.97rem;
}

.panel.tall {
  padding: 34px 32px 36px;
}

.panel.tall h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.panel.tall p + p {
  margin-top: 14px;
}

.panel-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 32px;
}

.credentials {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.credentials li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--a1), var(--a2));
}

/* Statement */

.statement {
  position: relative;
  z-index: 1;
  padding: 40px 0 20px;
  text-align: center;
}

.statement::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 40px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
}

.statement p {
  margin: 0 auto;
  max-width: 22ch;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Contact */

.contact {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 151, 56, 0.13), transparent 70%);
}

.contact h2 {
  margin: 18px auto 0;
  max-width: 20ch;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}

.contact .lead {
  margin: 20px auto 36px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Footer */

.footer {
  position: relative;
  z-index: 1;
  padding: 44px 0 56px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elev);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}

.footer-name {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.footer-note,
.imprint {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.imprint {
  font-style: normal;
  text-align: right;
}

.imprint .eyebrow {
  display: block;
  margin-bottom: 6px;
}

.imprint a:hover {
  color: var(--ink);
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.social:hover {
  color: var(--ink);
  border-color: rgba(255, 168, 84, 0.35);
  background: var(--panel-hover);
}

.social svg {
  flex: none;
}

/* Reveal */

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Responsive */

@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .panel-wide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px 28px;
  }

  .hero {
    padding-top: 84px;
  }

  .section {
    padding: 80px 0;
  }

  .imprint {
    text-align: left;
  }

  .nav nav a:not(.btn) {
    display: none;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .panel.tall {
    padding: 26px 22px 28px;
  }
}
