:root {
  --bg: #060606;
  --surface: rgba(15, 15, 16, 0.84);
  --surface-strong: rgba(22, 22, 24, 0.92);
  --text: #f6f4ef;
  --muted: #b7b0a4;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #ff7a1a;
  --accent-dark: #ff8d3a;
  --olive: #ffd7bb;
  --deep: #121212;
  --gold: #ff9a4d;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.12), transparent 22%),
    linear-gradient(180deg, #090909 0%, var(--bg) 42%, #050505 100%);
  font-family: 'Instrument Sans', sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.88)),
    rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 122, 26, 0.04));
  opacity: 1;
}

.site-header,
.site-footer,
.hero,
.stats-strip,
.content-section {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 4px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #ef8c36 100%);
  color: #fffdf9;
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.28);
}

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 0.98rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 32px;
  padding: 34px 4px 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.pipeline-card,
.advantage-card,
.stats-strip,
.site-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.hero-copy {
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(11, 11, 11, 0.92));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  max-width: 11ch;
}

.hero-text {
  max-width: 54ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions,
.footer-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff9737 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.28);
}

.button-secondary {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff9737 100%);
  color: #fff;
  border: 1px solid rgba(255, 151, 55, 0.35);
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.28);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.12);
  color: var(--olive);
  font-size: 0.96rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
}

.signal-card,
.mini-card {
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(16, 16, 18, 0.94));
  border: 1px solid var(--line);
}

.signal-label,
.mini-label,
.signal-note,
.stat-label,
.founder-copy,
.advantage-card p {
  color: var(--muted);
}

.signal-label,
.mini-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.signal-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.signal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.signal-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.signal-note {
  margin: 14px 0 0;
  line-height: 1.65;
}

.mini-grid {
  display: grid;
  gap: 18px;
}

.mini-card h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.mini-card p {
  margin: 0;
  line-height: 1.65;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 4px 0;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 20, 22, 0.92), rgba(11, 11, 12, 0.88));
}

.stat {
  padding: 8px 8px 8px 2px;
}

.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.stat-label {
  display: block;
  line-height: 1.65;
}

.content-section {
  padding: 84px 4px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.advantages-grid,
.projects-grid,
.pipeline-grid {
  display: grid;
  gap: 18px;
}

.projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advantages-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pipeline-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.pipeline-card,
.advantage-card,
.project-card {
  padding: 28px;
  border-radius: 24px;
}

.project-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(19, 19, 21, 0.95), rgba(10, 10, 11, 0.9));
  backdrop-filter: blur(8px);
}

.project-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 22, 0.98), rgba(10, 10, 11, 0.92));
}

.project-card-events {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(20, 20, 22, 0.98), rgba(10, 10, 11, 0.92));
}

.project-tag {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.project-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.project-points {
  padding-left: 18px;
  margin: 20px 0 24px;
  color: var(--text);
}

.project-points li + li {
  margin-top: 10px;
}

.project-shot {
  display: block;
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.project-shot img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pipeline-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 18, 20, 0.94), rgba(10, 10, 11, 0.88));
}

.pipeline-card-muted {
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.92), rgba(9, 9, 10, 0.86));
}

.pipeline-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.pipeline-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.pipeline-status {
  margin-top: 20px;
  color: var(--deep);
  font-weight: 600;
}

.step-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.advantage-card p,
.founder-copy {
  margin: 0;
  line-height: 1.7;
  font-size: 1.02rem;
}

.alt-section .advantage-card:nth-child(2n) {
  transform: translateY(18px);
}

.founder-section {
  padding-bottom: 12px;
}

.founder-copy {
  max-width: 64ch;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 72px 4px 4px;
  padding: 28px;
  border-radius: 28px;
}

.site-footer h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 13ch;
}

@media (max-width: 960px) {
  .hero,
  .advantages-grid,
  .projects-grid,
  .pipeline-grid,
  .stats-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .alt-section .advantage-card:nth-child(2n) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding: 14px;
    margin: 8px auto;
    border-radius: 20px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 2px 2px 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.95rem;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .hero,
  .content-section {
    padding-left: 2px;
    padding-right: 2px;
  }

  .hero-copy,
  .hero-panel,
  .pipeline-card,
  .advantage-card,
  .project-card,
  .site-footer,
  .stats-strip {
    padding: 22px;
  }

  .hero {
    gap: 18px;
    padding-top: 8px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions,
  .footer-actions,
  .project-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    padding: 12px 18px;
  }

  .project-shot img {
    height: 140px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .site-footer h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .contact-email {
    width: 100%;
    min-height: 0;
    padding: 2px 2px 0;
    font-size: 0.95rem;
    word-break: break-word;
  }

  .hero-points {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    gap: 16px;
  }
}
