:root {
  --ink: #f6f3ec;
  --muted: #a5a7ae;
  --line: rgba(255, 255, 255, 0.12);
  --panel: #111319;
  --panel-soft: #0c0e13;
  --background: #07090d;
  --orange: #f59b00;
  --orange-light: #ffbd49;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--background);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 203px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d4d5d9;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.nav a:not(.nav-cta):hover,
.nav a:not(.nav-cta):focus-visible {
  color: var(--orange-light);
}

.nav-cta {
  border: 1px solid rgba(245, 155, 0, 0.7);
  padding: 9px 16px;
  color: var(--orange-light);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(245, 155, 0, 0.12);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black 5%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -100px;
  top: 110px;
  border: 1px solid rgba(245, 155, 0, 0.24);
  box-shadow: 0 0 120px rgba(245, 155, 0, 0.14), inset 0 0 110px rgba(245, 155, 0, 0.07);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: 30px;
  top: 240px;
  border: 1px dashed rgba(255, 189, 73, 0.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange-light);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 9vw, 7.6rem);
  line-height: 0.87;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #b9bbc1;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #181006;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-light);
}

.button-primary span {
  margin-left: 10px;
  font-size: 1.1em;
}

.button-quiet {
  border-color: var(--line);
  color: #d7d8dc;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: -102px;
  display: flex;
  gap: 8px;
}

.hero-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: #8f9198;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-section {
  padding: 120px 0 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  background: var(--panel);
  border: 1px solid var(--line);
}

.product-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #05060a;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.free-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  background: var(--orange);
  color: #151006;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy {
  padding: clamp(34px, 5vw, 64px);
}

.product-kicker {
  margin-bottom: 13px;
  color: var(--orange-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.product-lead {
  color: #b5b7bd;
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-list {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--orange);
  font: 700 0.75rem/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.feature-list small {
  color: #8f9198;
  font-size: 0.86rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-light);
  font-weight: 750;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 160ms ease;
}

.about-section {
  padding: 120px 0;
  border-block: 1px solid var(--line);
  background: var(--panel-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
  align-items: end;
}

.about-copy {
  color: #c2c3c8;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.55;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy .muted {
  color: #777a82;
  font-size: 0.9rem;
}

.contact-strip {
  padding: 86px 0;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.contact-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: #777a82;
  font-size: 0.82rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-inner img {
  width: 132px;
  opacity: 0.68;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  justify-self: end;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--orange-light);
}

:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 4px;
}

@media (max-width: 880px) {
  .hero {
    min-height: 720px;
  }

  .hero-glow-one {
    opacity: 0.55;
    right: -300px;
  }

  .hero-glow-two {
    opacity: 0.45;
    right: -70px;
  }

  .hero-meta {
    position: static;
    margin-top: 40px;
  }

  .section-heading,
  .product-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .about-grid {
    gap: 34px;
  }

  .product-visual {
    aspect-ratio: 1200 / 630;
  }

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

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .nav {
    gap: 10px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 82px;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    flex-wrap: wrap;
  }

  .product-section,
  .about-section {
    padding: 86px 0;
  }

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

  .product-card {
    display: block;
  }

  .product-copy {
    padding: 30px 22px 36px;
  }

  .contact-strip {
    padding: 70px 0;
  }

  .contact-strip .button {
    width: 100%;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner a {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
