:root {
  --bg: #07080d;
  --bg-soft: #11141c;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --ink: #f6f4ef;
  --muted: #bcc2cf;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #de9234;
  --orange: #ff7c31;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 124, 49, 0.18), transparent 24%),
    radial-gradient(circle at 10% 0%, rgba(222, 146, 52, 0.14), transparent 20%),
    linear-gradient(180deg, #05060a 0%, #0a0d13 45%, #0f131b 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1220px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  position: relative;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary,
.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 78px 0 42px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 124, 49, 0.34), transparent 4%),
    radial-gradient(circle at 46% 16%, rgba(255, 124, 49, 0.34), transparent 4%),
    radial-gradient(circle at 78% 24%, rgba(255, 124, 49, 0.32), transparent 4%),
    radial-gradient(circle at 68% 58%, rgba(255, 124, 49, 0.24), transparent 4%),
    linear-gradient(130deg, transparent 0%, rgba(255, 124, 49, 0.06) 32%, transparent 34%),
    linear-gradient(150deg, transparent 0%, rgba(255, 124, 49, 0.06) 46%, transparent 48%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f1a94f;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.founder-copy h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 12ch;
}

.hero-text,
.section-head p,
.segment-copy p,
.client-card p,
.founder-text,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 58ch;
  line-height: 1.82;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-points,
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.tag-grid span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-weight: 700;
}

.hero-visual {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 8px);
}

.proof {
  padding-bottom: 24px;
}

.proof-grid,
.segment-grid,
.client-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article,
.summary-card,
.segment-card,
.client-card,
.founder-photo-card,
.founder-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-grid article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.section {
  padding: 84px 0;
}

.copy-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 124, 49, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.copy-panel p,
.copy-panel li {
  color: var(--muted);
  line-height: 1.82;
}

.copy-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.office-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.office-card strong {
  display: block;
  margin-bottom: 8px;
}

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

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 11ch;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  line-height: 1.82;
}

.intro-layout,
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.story-card,
.timeline-card,
.capability-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.story-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.story-copy {
  padding: 24px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-copy p + p {
  margin-top: 16px;
}

.summary-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 124, 49, 0.14), transparent 25%),
    linear-gradient(180deg, rgba(17, 21, 30, 0.92) 0%, rgba(10, 13, 19, 0.92) 100%);
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.highlight-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

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

.timeline-card,
.capability-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #0d1117;
  font-size: 0.9rem;
  font-weight: 900;
}

.timeline-card h3,
.capability-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.timeline-card p,
.capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

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

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

.segment-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.segment-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.segment-copy {
  padding: 22px;
}

.segment-copy h3,
.client-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.segment-copy p,
.client-card p {
  margin: 0;
  line-height: 1.78;
}

.segment-text {
  display: flex;
  align-items: stretch;
}

.segment-text .segment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 124, 49, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(17, 21, 30, 0.9) 0%, rgba(9, 12, 18, 0.92) 100%);
}

.inventory-grid,
.info-grid,
.stock-section-grid {
  display: grid;
  gap: 18px;
}

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

.stock-section-grid {
  grid-template-columns: 1fr;
}

.stock-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 124, 49, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.stock-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.stock-head h3 {
  margin: 8px 0 0;
  font-size: 1.38rem;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stock-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: rgba(9, 12, 18, 0.9);
}

.stock-table th,
.stock-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stock-table th {
  color: #f3b15d;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.stock-table td {
  color: var(--muted);
  line-height: 1.58;
}

.stock-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.inventory-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.inventory-card {
  overflow: hidden;
}

.inventory-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.inventory-copy {
  padding: 22px;
}

.inventory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.inventory-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inventory-copy h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.inventory-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.inventory-facts {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.inventory-facts li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.inventory-facts strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.inventory-facts span {
  color: var(--muted);
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #f1a94f;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffd08d;
}

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

.info-card {
  padding: 22px;
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

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

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

.client-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.founder-photo-card,
.founder-copy {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.founder-photo-card {
  padding: 18px;
}

.founder-photo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  background: #cfcfcf;
}

.founder-copy {
  padding: 30px;
}

.founder-text {
  margin-top: 16px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.contact-grid article {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.contact-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .story-layout,
  .intro-layout,
  .founder-layout,
  .proof-grid,
  .timeline-grid,
  .capability-grid,
  .segment-grid,
  .inventory-grid,
  .info-grid,
  .client-grid,
  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 10, 16, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .hero-layout,
  .story-layout,
  .intro-layout,
  .founder-layout,
  .proof-grid,
  .timeline-grid,
  .capability-grid,
  .segment-grid,
  .inventory-grid,
  .info-grid,
  .client-grid,
  .contact-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .stock-head {
    display: grid;
    align-items: flex-start;
  }

  .section {
    padding: 68px 0;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .section h2,
  .founder-copy h2 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .menu-toggle {
    width: 100%;
  }
}
