:root {
  color-scheme: dark;
  --bg: #100905;
  --panel: #1c100a;
  --panel-strong: #2b1810;
  --text: #f6f1e8;
  --muted: #c8aa8c;
  --line: rgba(255, 216, 170, 0.14);
  --orange: #ff8a1d;
  --orange-dark: #cc6600;
  --cream: #fff0d0;
  --brown: #8a4b24;
  --deep-brown: #130c08;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 138, 29, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(138, 75, 36, 0.34), transparent 32rem),
    linear-gradient(135deg, #0b0604 0%, #1b100b 45%, #090604 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(255, 240, 208, 0.08) 25%, transparent 26%),
    linear-gradient(150deg, transparent 24%, rgba(255, 138, 29, 0.07) 25%, transparent 26%);
  background-size: 84px 84px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(19, 12, 8, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(255, 138, 29, 0.35);
}

.nav-links {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--cream);
}

.hero,
.section,
.identity-strip,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
  padding: 104px 0 56px;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  color: var(--cream);
  background: rgba(43, 24, 16, 0.72);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.hero-logo-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.hero-logo-lockup span {
  font-size: 0.95rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 8.5vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 12px 44px rgba(255, 138, 29, 0.2);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.15rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 16px;
}

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

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #101018;
  background: linear-gradient(135deg, var(--orange), var(--cream));
}

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

.fine-print {
  max-width: 620px;
  color: #9f8269;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 26px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(28, 16, 10, 0.78);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--cream);
  font-size: 1.1rem;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 29, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(255, 240, 208, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(28, 16, 10, 0.9);
  box-shadow: var(--shadow);
}

.console-top {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.console-top img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.console-top strong,
.console-top span {
  display: block;
}

.console-top strong {
  color: var(--cream);
  font-size: 1.2rem;
}

.console-top span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #120b08;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.screen-title,
.screen-footer {
  padding: 14px 18px;
  background: #2b1810;
  color: var(--cream);
  font-weight: 800;
}

.screen-title {
  border-bottom: 3px solid var(--orange-dark);
}

.screen-row {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.screen-row.active {
  color: #120b08;
  background: linear-gradient(90deg, var(--orange), var(--cream));
  font-weight: 800;
}

.screen-footer {
  color: var(--muted);
  font-size: 0.85rem;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  margin-bottom: 72px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.identity-strip div {
  padding: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 138, 29, 0.14), transparent 14rem),
    rgba(28, 16, 10, 0.9);
}

.strip-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.identity-strip strong {
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.45;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section p,
.steps {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 240, 208, 0.055), rgba(255, 138, 29, 0.035)),
    rgba(28, 16, 10, 0.8);
}

.feature-card p {
  margin-bottom: 0;
}

.hub-showcase {
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.showcase-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 29, 0.16), transparent 16rem),
    rgba(28, 16, 10, 0.8);
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 138, 29, 0.08), rgba(43, 24, 16, 0.88)),
    url("omiiba-logo.svg") center 34px / 250px no-repeat,
    rgba(28, 16, 10, 0.88);
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #130c08;
  background: linear-gradient(135deg, var(--orange), var(--cream));
  font-weight: 900;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  margin-bottom: 72px;
  padding: 42px;
  background:
    radial-gradient(circle at 100% 50%, rgba(255, 138, 29, 0.16), transparent 24rem),
    rgba(28, 16, 10, 0.78);
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.palette span {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 240, 208, 0.18);
  border-radius: 20px;
  padding: 14px;
  color: #fff8e6;
  background: var(--swatch);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split,
.release {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: center;
}

.steps {
  margin: 0;
  padding: 24px 24px 24px 46px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(28, 16, 10, 0.78);
}

.steps li + li {
  margin-top: 12px;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.12rem 0.32rem;
  color: var(--cream);
  background: rgba(255, 240, 208, 0.08);
}

.release {
  border: 1px solid var(--line);
  border-radius: 28px;
  margin-bottom: 72px;
  padding: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 29, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(138, 75, 36, 0.32), rgba(255, 255, 255, 0.04));
}

.release .button {
  justify-self: end;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 30px 0 42px;
  color: #9f8269;
  font-size: 0.94rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--cream);
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .showcase-grid,
  .visual-band,
  .release {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .identity-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .palette {
    grid-template-columns: 1fr;
  }

  .palette span {
    min-height: 86px;
  }

  .release .button {
    justify-self: start;
  }
}
