:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-soft: #100b0d;
  --panel: rgba(20, 17, 18, 0.88);
  --panel-strong: rgba(13, 11, 12, 0.94);
  --line: rgba(229, 176, 82, 0.25);
  --line-strong: rgba(229, 176, 82, 0.46);
  --text: #fff8ed;
  --muted: rgba(255, 237, 213, 0.74);
  --gold: #f4c765;
  --gold-deep: #c1872b;
  --rose: #ec2b9a;
  --plum: #5b113e;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
  --max: 1440px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(244, 199, 101, 0.22), transparent 26rem),
    radial-gradient(circle at 8% 20%, rgba(236, 43, 154, 0.18), transparent 28rem),
    radial-gradient(circle at 58% 64%, rgba(193, 135, 43, 0.12), transparent 34rem),
    linear-gradient(135deg, #12070d 0%, #080706 44%, #070606 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(244, 199, 101, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 199, 101, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.46) 48%, transparent 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88), transparent 46%, rgba(8, 7, 6, 0.7)),
    radial-gradient(circle at 50% 12%, transparent, rgba(0, 0, 0, 0.64) 76%);
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #120b04;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(244, 199, 101, 0.16);
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 64px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  font-weight: 950;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(236, 43, 154, 0.34);
}

.brand-platform {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: rgba(244, 199, 101, 0.34);
}

.brand strong {
  color: var(--gold);
  font-size: 19px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  font-size: 14px;
  font-weight: 850;
}

.nav-menu a:not(.nav-cta) {
  color: rgba(255, 248, 237, 0.82);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 199, 101, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.nav-cta,
.btn,
.text-link,
.mobile-quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 16px;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta:hover,
.btn:hover,
.text-link:hover,
.mobile-quick a:hover,
.nav-cta:focus-visible,
.btn:focus-visible,
.text-link:focus-visible,
.mobile-quick a:focus-visible {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary {
  border: 1px solid rgba(244, 199, 101, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #ffeaa5 0%, #f4c765 38%, #bb781d 100%);
  color: #130b04;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(193, 135, 43, 0.22);
}

.nav-cta {
  padding: 0 22px;
  min-height: 48px;
}

.btn {
  min-width: 200px;
  padding: 0 24px;
}

.btn-secondary {
  border: 1px solid rgba(236, 43, 154, 0.58);
  background:
    linear-gradient(135deg, rgba(94, 17, 64, 0.92), rgba(38, 18, 34, 0.88));
  color: #fff4fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

main {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  min-height: 0;
  padding: clamp(36px, 4.6vw, 58px) 0 50px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.hero-visual,
.quick-grid article,
.split-section,
.support-panel article,
.steps,
.support,
.faq,
.final-cta,
.room-card,
.site-footer {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(30, 25, 22, 0.86), rgba(10, 9, 9, 0.88)),
    rgba(10, 9, 9, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow);
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow,
.section-kicker,
.quick-grid span,
.room-card span,
.path-stack article span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 9px 14px;
  border: 1px solid rgba(244, 199, 101, 0.44);
  border-radius: 999px;
  background: rgba(244, 199, 101, 0.1);
  color: #ffe5a8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 22px 0 22px;
  max-width: 720px;
  color: #fffaf2;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

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

.proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 780;
}

.proof-list li {
  position: relative;
  padding-left: 34px;
}

.proof-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  color: #0f0904;
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(330px, 1.1fr) minmax(220px, 0.68fr);
  gap: 20px;
  padding: 24px;
  border-radius: 36px;
  align-items: stretch;
}

.desk-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(244, 199, 101, 0.2);
  border-radius: 30px;
  background: #050505;
}

.desk-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(to top, rgba(5, 5, 5, 0.98), transparent);
}

.desk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.desk-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid rgba(244, 199, 101, 0.35);
  border-radius: 20px;
  background: rgba(9, 8, 8, 0.78);
  backdrop-filter: blur(16px);
}

.desk-caption span {
  display: block;
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
}

.desk-caption strong {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 237, 0.82);
  font-size: 13px;
}

.path-stack {
  display: grid;
  gap: 16px;
}

.path-stack article {
  padding: 28px 24px;
  border: 1px solid rgba(244, 199, 101, 0.22);
  border-radius: 24px;
  background: rgba(11, 10, 10, 0.74);
}

.path-stack article span {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff8ed;
  font-size: clamp(27px, 2.7vw, 36px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.path-stack p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 72px;
}

.quick-grid article {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
}

.quick-grid span {
  padding: 7px 11px;
  font-size: 11px;
}

.quick-grid h2 {
  margin: 22px 0 8px;
  font-size: 20px;
  line-height: 1.1;
}

.quick-grid p,
.section-copy p,
.support-panel p,
.steps p,
.support p,
.faq p,
.final-cta p,
.room-card p,
.site-footer span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  margin-bottom: 26px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.faq h2,
.final-cta h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 0.98;
}

.section-copy p,
.section-heading p,
.final-cta p {
  max-width: 740px;
  font-size: 18px;
}

.text-link {
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid rgba(244, 199, 101, 0.4);
  background: rgba(244, 199, 101, 0.1);
  color: var(--gold);
}

.media-card {
  overflow: hidden;
  border: 1px solid rgba(244, 199, 101, 0.22);
  border-radius: 28px;
  background: #050505;
}

.media-card img {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.support-panel {
  display: grid;
  gap: 16px;
}

.support-panel article {
  padding: 22px;
  border-radius: 22px;
}

.support-panel span {
  color: var(--gold);
  font-weight: 950;
}

.support-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.support-panel p {
  margin: 8px 0 0;
}

.steps,
.support,
.faq,
.final-cta {
  margin: 26px 0;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 32px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

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

.step-row article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(244, 199, 101, 0.2);
  border-radius: 24px;
  background: rgba(8, 7, 6, 0.56);
}

.step-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #100904;
  font-weight: 950;
}

.step-row h3 {
  margin: 20px 0 8px;
  font-size: 24px;
}

.room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.86fr));
  gap: 18px;
}

.room-card {
  overflow: hidden;
  border-radius: 26px;
}

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

.room-card div,
.room-card.dark-card {
  padding: 24px;
}

.room-card h3 {
  margin: 16px 0 8px;
  font-size: 25px;
}

.room-card.dark-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.faq details {
  border-top: 1px solid rgba(244, 199, 101, 0.18);
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: #fff8ed;
  font-size: 20px;
  font-weight: 900;
}

.faq p {
  max-width: 860px;
  margin-bottom: 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.site-footer {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 34px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-quick {
  display: none;
}

@media (max-width: 1100px) {
  .hero,
  .hero-visual,
  .split-section,
  .split-section.reverse,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .desk-card {
    min-height: 460px;
  }

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

  .path-stack article span {
    font-size: 24px;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

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

  .brand-platform {
    font-size: 18px;
  }

  .brand-divider {
    height: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    z-index: 19;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(244, 199, 101, 0.24);
    border-radius: 22px;
    background: rgba(8, 7, 6, 0.95);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 4px;
  }

  .hero {
    padding: 18px 0 24px;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      radial-gradient(circle at 10% 0%, rgba(236, 43, 154, 0.14), transparent 42%),
      linear-gradient(145deg, rgba(25, 21, 19, 0.88), rgba(8, 7, 7, 0.92));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      var(--shadow);
  }

  .hero-copy {
    padding: 16px 16px 0;
  }

  .brand-platform,
  .brand-divider {
    display: none;
  }

  .eyebrow,
  .section-kicker {
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .proof-list {
    display: none;
  }

  .hero-visual {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 16px 16px;
    border-radius: 0;
  }

  .desk-card {
    min-height: 245px;
    border-radius: 22px;
  }

  .desk-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  .desk-caption span {
    font-size: 18px;
  }

  .path-stack {
    display: none;
  }

  .path-stack article {
    padding: 18px;
  }

  .path-stack article span {
    font-size: 24px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px;
  }

  .quick-grid article {
    min-height: 118px;
  }

  .split-section,
  .steps,
  .support,
  .faq,
  .final-cta {
    margin: 14px 0;
    padding: 18px;
    border-radius: 24px;
  }

  .section-copy h2,
  .section-heading h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .section-copy p,
  .section-heading p,
  .final-cta p {
    font-size: 16px;
  }

  .media-card img {
    height: 240px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-row article {
    min-height: 0;
  }

  .room-grid {
    gap: 12px;
  }

  .room-card img {
    height: 210px;
  }

  .faq summary {
    font-size: 17px;
  }

  .final-cta {
    display: block;
  }

  .site-footer {
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .site-footer span {
    display: block;
    margin-top: 8px;
  }

  .mobile-quick {
    display: none;
  }

  .mobile-quick a {
    min-height: 46px;
    border: 1px solid rgba(244, 199, 101, 0.42);
    background: rgba(244, 199, 101, 0.12);
    color: #ffe5a8;
  }

  .mobile-quick a:first-child {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%),
      linear-gradient(135deg, #ffeaa5, #f4c765 48%, #bb781d);
    color: #120b04;
  }
}

@media (max-width: 430px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero h1 {
    font-size: 42px;
  }

  .proof-list {
    font-size: 13px;
  }

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