:root {
  --bg: #050607;
  --bg-2: #090d0f;
  --panel: rgba(16, 19, 20, 0.82);
  --panel-soft: rgba(255, 188, 54, 0.07);
  --line: rgba(255, 182, 43, 0.18);
  --line-strong: rgba(255, 182, 43, 0.38);
  --text: #f6f3ec;
  --muted: #bdb6ab;
  --muted-2: #827c74;
  --gold: #ffb21b;
  --gold-2: #ffd06d;
  --orange: #ff8a00;
  --green: #35d07f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 178, 27, 0.11), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(255, 137, 0, 0.10), transparent 27%),
    linear-gradient(180deg, #050607 0%, #081011 42%, #050607 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, rgba(255, 179, 27, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(255, 179, 27, 0.28) 87.5%, rgba(255, 179, 27, 0.28)),
    linear-gradient(150deg, rgba(255, 179, 27, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(255, 179, 27, 0.28) 87.5%, rgba(255, 179, 27, 0.28)),
    linear-gradient(30deg, rgba(255, 179, 27, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(255, 179, 27, 0.28) 87.5%, rgba(255, 179, 27, 0.28)),
    linear-gradient(150deg, rgba(255, 179, 27, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(255, 179, 27, 0.28) 87.5%, rgba(255, 179, 27, 0.28));
  background-position: 0 0, 0 0, 34px 60px, 34px 60px;
  background-size: 68px 120px;
  mask-image: radial-gradient(circle at 85% 14%, black, transparent 38%), radial-gradient(circle at 5% 70%, black, transparent 34%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 178, 27, 0.15);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: -150px;
  right: 7%;
}

.page-glow-two {
  bottom: 10%;
  left: -180px;
}

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

.header-inner {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 45% 25%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 178, 27, 0.22), rgba(255, 137, 0, 0.08));
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 34px rgba(255, 178, 27, 0.18);
}

.brand-logo svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.desktop-nav a,
.mobile-nav a {
  color: #ece7dd;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  color: #160d00;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 45%, var(--orange));
  box-shadow: 0 14px 34px rgba(255, 154, 12, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: rgba(255, 202, 95, 0.72);
  box-shadow: 0 12px 30px rgba(255, 178, 27, 0.12);
}

.btn-big {
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
}

.header-cta {
  margin-left: 14px;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 0 20px 22px;
}

.mobile-nav.open {
  display: flex;
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  background: rgba(255, 178, 27, 0.08);
  border: 1px solid rgba(255, 178, 27, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

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

.hero h1 {
  margin-top: 28px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 span,
.section-head h2 span,
.cta h2 span {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(255, 178, 27, 0.22);
}

.hero-text {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #eee5d8;
  font-weight: 800;
  font-size: 14px;
}

.badge svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-wrap {
  position: relative;
}

.honeycomb-bg {
  position: absolute;
  inset: -38px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 178, 27, 0.35), transparent 18%),
    radial-gradient(circle at 10% 85%, rgba(255, 178, 27, 0.16), transparent 24%);
  filter: blur(2px);
  opacity: 0.75;
}

.dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 455px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 21, 23, 0.96), rgba(8, 10, 11, 0.92));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 72px rgba(255, 178, 27, 0.16);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 87% 2%, rgba(255, 178, 27, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(255, 178, 27, 0.04), transparent);
  pointer-events: none;
}

.dashboard-sidebar,
.dashboard-main {
  position: relative;
  z-index: 1;
}

.dashboard-sidebar {
  padding: 26px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 20px;
}

.mini-logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  box-shadow: 0 0 22px rgba(255, 178, 27, 0.28);
}

.dashboard-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dashboard-sidebar li {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.dashboard-sidebar li.active {
  color: var(--gold-2);
  background: rgba(255, 178, 27, 0.14);
}

.dashboard-main {
  padding: 28px;
}

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

.dashboard-top h2 {
  font-size: 24px;
}

.dashboard-top button {
  border: 0;
  color: #1a0e00;
  font-weight: 900;
  border-radius: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.stats div {
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats b {
  display: block;
  font-size: 25px;
  margin-bottom: 6px;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.project-table {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.35fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.036);
  color: #dcd6cc;
  font-size: 13px;
  font-weight: 700;
}

.table-head {
  color: var(--muted-2);
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.status {
  color: var(--green);
}

.server-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 178, 27, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.server-line strong {
  color: var(--green);
}

.server-line em {
  font-style: normal;
  margin-left: auto;
}

.server-line em + em {
  margin-left: 0;
}

.section-border {
  border-top: 1px solid rgba(255, 178, 27, 0.12);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 18px;
}

.three-cards {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.benefit {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(11, 14, 15, 0.72);
  border: 1px solid rgba(255, 178, 27, 0.17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card::after,
.benefit::after {
  content: "";
  position: absolute;
  inset: auto -30% -65% 20%;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 178, 27, 0.12), transparent 68%);
  pointer-events: none;
}

.icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: rgba(255, 178, 27, 0.10);
  border: 1px solid rgba(255, 178, 27, 0.22);
  margin-bottom: 22px;
}

.icon.small {
  width: 58px;
  height: 58px;
}

.icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.benefit h3 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card p,
.benefit p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.card.compact {
  min-height: 220px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit {
  min-height: 166px;
  padding: 24px;
}

.benefit span {
  display: inline-flex;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(255, 178, 27, 0.2));
}

.cta {
  display: grid;
  grid-template-columns: 170px 1fr 280px;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 178, 27, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 178, 27, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  background: rgba(255, 178, 27, 0.11);
  border: 1px solid rgba(255, 178, 27, 0.35);
  box-shadow: 0 0 52px rgba(255, 178, 27, 0.18);
}

.cta-icon svg {
  width: 106px;
  height: 106px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta h2 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.cta p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.early-access {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 900;
  background: rgba(255, 178, 27, 0.10);
  border: 1px solid rgba(255, 178, 27, 0.20);
  border-radius: 999px;
  padding: 10px 14px;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  border-top: 1px solid rgba(255, 178, 27, 0.12);
  padding: 28px 0;
  color: var(--muted-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-inner a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

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

  .dashboard {
    max-width: 760px;
  }

  .four-cards,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    grid-template-columns: 130px 1fr;
  }

  .cta-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-icon {
    width: 120px;
    height: 120px;
  }
}

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

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-text,
  .section-head p {
    font-size: 16px;
  }

  .three-cards,
  .four-cards,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    display: none;
  }

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

  .table-row {
    grid-template-columns: 1fr 0.7fr;
  }

  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    display: none;
  }

  .server-line em {
    margin-left: 0;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-icon {
    width: 110px;
    height: 110px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 440px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero-actions,
  .hero-badges {
    display: grid;
  }

  .btn-big {
    width: 100%;
  }

  .dashboard-main {
    padding: 20px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

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