@import url("https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --black: #030303;
  --black-2: #090909;
  --black-3: #111111;
  --panel: rgba(15, 15, 15, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --gold: #f7d774;
  --gold-2: #d7a534;
  --gold-3: #946511;
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-strong: #dddddd;
  --line: rgba(247, 215, 116, 0.22);
  --line-soft: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
  --radius: 8px;
  --shell: 1300px;
  --headline-font: "Anton", Impact, sans-serif;
  --body-font: "Poppins", "Segoe UI", sans-serif;
  --gold-gradient: linear-gradient(135deg, #fff5b5 0%, #f7d774 28%, #d6a333 55%, #9b650f 100%);
  --dark-gradient: linear-gradient(180deg, rgba(3, 3, 3, 0.5), rgba(3, 3, 3, 0.96));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at 72% 8%, rgba(45, 78, 125, 0.42), transparent 28%),
    radial-gradient(circle at 22% 18%, rgba(247, 215, 116, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.84)),
    url("/assets/nexus-bg.jpg"),
    #030303;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.86) 72%, #030303 100%),
    radial-gradient(circle at 52% 68%, rgba(247, 215, 116, 0.12), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(247, 215, 116, 0.46) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 54%, rgba(247, 215, 116, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 82%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px);
  background-size: 220px 220px, 280px 280px, 320px 320px, 260px 260px;
  opacity: 0.34;
}

body > * {
  position: relative;
  z-index: 1;
}

body,
button,
input,
select,
textarea {
  font-synthesis: none;
}

a {
  color: inherit;
}

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

.site-shell,
.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(247, 215, 116, 0.18);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
  padding: 14px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.site-brand img {
  width: 180px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 14px rgba(247, 215, 116, 0.22));
}

.site-brand span {
  display: none;
}

.nav-cluster,
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

main {
  padding: 0 0 88px;
}

.page-hero,
.hero {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 215, 116, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 46%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(11, 17, 28, 0.84), rgba(3, 3, 3, 0.96));
  box-shadow: var(--shadow);
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 660px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(34px, 5vw, 72px) max(24px, calc((100vw - var(--shell)) / 2));
  border-left: 0;
  border-right: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 74% 34%, rgba(43, 85, 142, 0.42), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(247, 215, 116, 0.16), transparent 26%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-home .hero-copy {
  max-width: 560px;
}

.hero-copy,
.page-hero {
  min-width: 0;
}

.page-hero {
  max-width: none;
  min-height: 360px;
  margin: 0 0 44px;
  padding: clamp(34px, 6vw, 78px);
  text-align: left;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 72% 28%, rgba(247, 215, 116, 0.18), transparent 28%);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo-shell {
  width: 100%;
}

.hero-logo-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  border: 1px solid rgba(247, 215, 116, 0.24);
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.72), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 50% 48%, rgba(247, 215, 116, 0.16), transparent 48%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), inset 0 0 70px rgba(247, 215, 116, 0.07);
  overflow: hidden;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(247, 215, 116, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(37, 74, 128, 0.24), transparent 54%);
  opacity: 0.7;
}

.hero-logo-panel img {
  position: relative;
  z-index: 1;
  width: min(116%, 760px);
  max-width: none;
  filter: drop-shadow(0 0 18px rgba(247, 215, 116, 0.34));
  transform: scale(1.06);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.kicker {
  margin: 0 0 10px;
}

h1,
h2,
h3,
.tier-card strong,
.section-title-center {
  margin: 0;
  color: var(--text);
  font-family: var(--headline-font);
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

h1 {
  margin: 16px 0;
  max-width: 780px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f7d774 43%, #b47a18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  text-transform: none;
}

.panel h2,
.card h2,
.legal-block h2,
.footer-card h2,
.tier-card strong,
.section-title-center,
.method-card h3,
.summary-card h3,
.activation-card h3 {
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

p,
li,
label,
.helper-text,
.field-note,
.muted,
.tier-card span {
  color: var(--muted);
  line-height: 1.68;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.button,
.button-secondary,
.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button,
button,
.primary-button {
  border: 1px solid rgba(255, 245, 181, 0.5);
  color: #050505;
  background: var(--gold-gradient);
  box-shadow: 0 14px 34px rgba(214, 163, 51, 0.22);
}

.button-secondary,
.button-link.secondary-button,
.secondary-button {
  border: 1px solid rgba(247, 215, 116, 0.55);
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.button:hover,
.button-secondary:hover,
.button-link:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(214, 163, 51, 0.24);
}

button:disabled,
.disabled-link {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(247, 215, 116, 0.16);
  border-bottom: 1px solid rgba(247, 215, 116, 0.16);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 14px 16px;
  border-right: 1px solid rgba(247, 215, 116, 0.16);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section-block {
  margin-top: 72px;
  padding: 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-grid,
.card-grid,
.footer-grid,
.icon-grid,
.hours-grid,
.portal-grid,
.payment-method-grid,
.tier-grid,
.check-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.section-grid,
.portal-grid,
.hours-grid,
.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.section-grid-single {
  max-width: 720px;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.icon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.tier-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 24px;
}

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

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

.panel,
.card,
.legal-block,
.footer-card,
.tier-card,
.payment-method-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 9, 0.9);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.panel::before,
.card::before,
.legal-block::before,
.footer-card::before,
.tier-card::before,
.payment-method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.065), transparent 44%);
}

.panel > *,
.card > *,
.legal-block > *,
.footer-card > *,
.tier-card > *,
.payment-method-card > * {
  position: relative;
  z-index: 1;
}

.panel:hover,
.card:hover,
.footer-card:hover,
.tier-card:hover,
.payment-method-card:hover {
  border-color: rgba(247, 215, 116, 0.38);
}

.section-grid {
  padding: 42px 0 0;
}

.tier-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 310px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.5), 0 0 34px rgba(247, 215, 116, 0.1);
}

.tier-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.tier-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted-strong);
  font-weight: 700;
}

.tier-card .button,
.tier-card .button-secondary {
  width: 100%;
  margin-top: 18px;
}

.price-list {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 215, 116, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.price-list strong {
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  background: none;
  text-shadow: none;
}

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

.list-clean li {
  position: relative;
  padding-left: 18px;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-stack,
.footer-links,
.compact-fields,
.legal-layout {
  display: grid;
  gap: 12px;
}

.legal-layout {
  gap: 18px;
}

.footer-links a {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

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

.icon-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.icon-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(1.15) sepia(0.35) saturate(1.1) drop-shadow(0 0 14px rgba(247, 215, 116, 0.18));
}

.hardware-note,
.page-intro {
  max-width: 980px;
  margin: 22px auto 8px;
  color: var(--muted-strong);
  line-height: 1.7;
  text-align: center;
}

.kb-frame-section {
  min-height: 720px;
  margin-top: 28px;
  border: 1px solid rgba(247, 215, 116, 0.2);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kb-frame-section iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #ffffff;
}

.payment-method-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.payment-method-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 260px;
  padding: 16px;
  margin-top: 12px;
  border: 1px solid rgba(247, 215, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.payment-method-card img {
  max-width: 100%;
  max-height: 228px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.payment-method-phone {
  margin-top: 14px;
  font-size: 1.08rem;
  text-align: center;
}

.portal-note,
.important-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(247, 215, 116, 0.28);
  border-radius: var(--radius);
  background: rgba(247, 215, 116, 0.08);
  color: #ffeaa8;
  font-weight: 800;
}

footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 42px max(24px, calc((100vw - var(--shell)) / 2)) 24px;
  border-top: 1px solid rgba(247, 215, 116, 0.16);
  background: rgba(0, 0, 0, 0.94);
}

.footer-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-card::before {
  display: none;
}

.footer-card form {
  margin-top: 2px;
}

.footer-note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8f8f8f;
  font-size: 0.86rem;
  text-align: center;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(247, 215, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

option {
  color: var(--text);
  background: #090909;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(247, 215, 116, 0.58);
  box-shadow: 0 0 0 3px rgba(247, 215, 116, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 48px;
}

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

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

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

  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-brand {
    width: 100%;
    justify-content: center;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .section-grid,
  .portal-grid,
  .hours-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-shell,
  .shell {
    width: min(100% - 20px, var(--shell));
  }

  main {
    padding: 0 0 72px;
  }

  .site-header-inner {
    min-height: 0;
  }

  .site-brand img {
    width: 150px;
  }

  .nav-cluster,
  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .hero,
  .section-grid,
  .portal-grid,
  .hours-grid,
  .check-grid,
  .footer-grid,
  .tier-grid,
  .card-grid,
  .icon-grid,
  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding: 34px 20px;
  }

  .hero-logo-panel {
    min-height: 300px;
  }

  .panel,
  .card,
  .legal-block,
  .footer-card,
  .tier-card,
  .payment-method-card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .button-row,
  .trust-strip {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .button,
  .button-secondary,
  .button-link,
  button {
    width: 100%;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 215, 116, 0.16);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .chat-launcher {
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 44px;
    padding: 11px 15px;
    font-size: 0.84rem;
  }

  .kb-frame-section,
  .kb-frame-section iframe {
    min-height: 620px;
  }
}

.home-page main {
  padding: 0;
}

.home-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(247, 215, 116, 0.16);
}

.home-header .site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  min-height: 88px;
}

.home-header .site-brand img {
  width: 204px;
  height: 58px;
}

.home-nav {
  justify-content: center;
  gap: 28px;
}

.home-nav a {
  font-size: 0.91rem;
}

.header-trial-button {
  min-height: 44px;
  padding: 12px 20px;
  border-color: rgba(247, 215, 116, 0.72);
  color: #ffe991;
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 700px;
  border-bottom: 1px solid rgba(247, 215, 116, 0.12);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 37%, rgba(0, 0, 0, 0.14) 72%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.78) 96%),
    url("assets/home-hero-bg.jpg") center top / cover no-repeat;
}

.home-hero-inner,
.home-benefits-grid,
.home-section,
.devices-section,
.home-footer-inner {
  width: min(var(--shell), calc(100% - 96px));
  margin: 0 auto;
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  min-height: 700px;
  padding: 72px 0 64px;
}

.home-hero-copy {
  width: min(100%, 510px);
}

.home-eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  color: #ffe991;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-hero-title {
  display: grid;
  gap: 2px;
  max-width: none;
  margin: 0 0 18px;
  background: none;
  color: #ffffff;
  font-size: 4.35rem;
  letter-spacing: 0.035em;
  line-height: 0.9;
}

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

.home-hero-title strong {
  color: transparent;
  background: linear-gradient(180deg, #ffeaa3 0%, #d8a230 42%, #8c5c0d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font: inherit;
  text-shadow: 0 0 32px rgba(247, 215, 116, 0.14);
}

.home-hero-text {
  max-width: 480px;
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-category-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 455px;
  margin: 26px 0 24px;
  border-top: 1px solid rgba(247, 215, 116, 0.14);
  border-bottom: 1px solid rgba(247, 215, 116, 0.14);
}

.home-category {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 14px 8px;
  border-right: 1px solid rgba(247, 215, 116, 0.12);
  color: #ffffff;
  font-size: 0.76rem;
  text-align: center;
}

.home-category:last-child {
  border-right: 0;
}

.home-category svg,
.benefit-card svg,
.home-cancel-note svg,
.gift-icon svg,
.video-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-category svg {
  color: #fff3b8;
}

.trial-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 430px);
  min-height: 96px;
  padding: 18px 20px;
  border: 1px solid rgba(247, 215, 116, 0.44);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(247, 215, 116, 0.08), rgba(0, 0, 0, 0.38));
  box-shadow: inset 0 0 30px rgba(247, 215, 116, 0.05);
}

.trial-card svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #ffe991;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trial-card strong {
  display: block;
  color: #ffe991;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.trial-card span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trial-card b {
  color: #ffe991;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.home-actions .button,
.home-actions .button-secondary {
  min-width: 210px;
  min-height: 62px;
  text-transform: uppercase;
}

.home-cancel-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #9f9f9f;
  font-size: 0.88rem;
}

.home-cancel-note svg {
  width: 18px;
  height: 18px;
  color: #e0bd55;
  fill: rgba(247, 215, 116, 0.2);
}

.video-button {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 22px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: none;
}

.video-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.video-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  fill: #ffffff;
  stroke: none;
}

.home-benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.92), rgba(24, 24, 24, 0.82), rgba(8, 8, 8, 0.94));
}

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

.benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 24px 26px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--benefit-bg, none) center / cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.8);
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card svg {
  width: 38px;
  height: 38px;
  color: #ffe478;
}

.benefit-card h2 {
  margin: 0 0 6px;
  color: #ffe991;
  font-family: var(--body-font);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-section {
  padding: 58px 0 20px;
}

.home-section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-section-heading h2,
.devices-copy h2,
.risk-free-cta h2,
.footer-contact-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.home-section-heading p:last-child {
  margin: 0;
  color: #bdbdbd;
  font-size: 0.96rem;
  line-height: 1.6;
}

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

.content-card {
  position: relative;
  display: grid;
  grid-template-rows: 245px auto;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-card::before {
  display: none;
}

.content-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 215, 116, 0.1), transparent 42%),
    #050505;
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 215, 116, 0.4);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.58), 0 0 28px rgba(247, 215, 116, 0.08);
}

.content-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 16px;
  border-top: 1px solid rgba(247, 215, 116, 0.12);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.96));
}

.content-card h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.content-card p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.content-card a {
  color: #ffe478;
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
  background: #ff2337;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.devices-section {
  padding: 48px 0 58px;
}

.devices-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.devices-copy h2 {
  margin-bottom: 24px;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.device-list div {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  color: #ffffff;
  font-size: 0.74rem;
  text-align: center;
}

.device-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.2) drop-shadow(0 0 10px rgba(247, 215, 116, 0.12));
}

.devices-showcase {
  display: flex;
  justify-content: center;
}

.devices-showcase img {
  width: min(100%, 560px);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.48));
}

.risk-free-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 34px;
  border: 1px solid rgba(247, 215, 116, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(247, 215, 116, 0.06), rgba(0, 0, 0, 0.4));
}

.gift-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #ffe478;
  background: rgba(247, 215, 116, 0.1);
}

.gift-icon svg {
  width: 42px;
  height: 42px;
}

.risk-free-cta p {
  margin: 0 0 4px;
  color: #ffe991;
  font-size: 1.05rem;
  font-weight: 800;
}

.risk-free-cta span {
  color: #d4d4d4;
}

.risk-free-cta .button {
  min-width: 300px;
  min-height: 62px;
  text-transform: uppercase;
}

.home-footer {
  padding-top: 46px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(0, 0, 0, 0.98)),
    rgba(0, 0, 0, 0.98);
}

.footer-brand-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 190px;
  height: 56px;
  object-fit: contain;
}

.footer-brand-row p {
  max-width: 680px;
  margin: 0;
  color: #c8c8c8;
}

.home-footer .footer-grid {
  grid-template-columns: 0.95fr 0.95fr 1fr 1.25fr;
  gap: 28px;
}

.home-footer .footer-card {
  min-width: 0;
}

.home-footer .footer-card p:not(.kicker) {
  margin: 0 0 14px;
  color: #c8c8c8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-footer .footer-links {
  gap: 10px;
}

.home-footer .footer-links a {
  color: #d9d9d9;
}

.home-footer label span {
  color: #f1f1f1;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-footer input,
.home-footer select,
.home-footer textarea {
  min-height: 44px;
  background: rgba(255, 255, 255, 0.055);
}

.home-footer textarea {
  min-height: 118px;
}

.newsletter-card button,
.footer-contact-card button {
  min-height: 48px;
  padding: 12px 18px;
}

.footer-contact-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  margin-top: 8px;
  padding: 24px;
  border: 1px solid rgba(247, 215, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.footer-form-grid .message-field {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .home-header .site-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 18px 0;
  }

  .home-nav {
    gap: 22px;
  }

  .home-hero-inner,
  .home-benefits-grid,
  .home-section,
  .devices-section,
  .home-footer-inner {
    width: min(var(--shell), calc(100% - 44px));
  }

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

  .video-button {
    right: 0;
  }

  .home-benefits-grid,
  .content-card-grid,
  .home-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .devices-inner,
  .footer-contact-card {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .home-header .site-brand img {
    width: 180px;
  }

  .home-nav {
    gap: 14px;
  }

  .home-nav a {
    font-size: 0.78rem;
  }

  .home-hero {
    min-height: 0;
    background-position: 62% top;
  }

  .home-hero-inner {
    min-height: 650px;
    padding: 50px 0 44px;
  }

  .home-hero-title {
    font-size: 3.15rem;
  }

  .home-category-row,
  .home-actions,
  .risk-free-cta,
  .footer-brand-row {
    grid-template-columns: 1fr;
  }

  .home-category-row {
    max-width: none;
  }

  .home-actions {
    display: grid;
  }

  .home-actions .button,
  .home-actions .button-secondary,
  .risk-free-cta .button {
    width: 100%;
    min-width: 0;
  }

  .video-button {
    position: static;
    margin-top: 24px;
  }

  .home-benefits-grid,
  .content-card-grid,
  .device-list,
  .home-footer .footer-grid,
  .footer-form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .content-card {
    min-height: 260px;
  }

  .devices-inner {
    gap: 28px;
  }

  .risk-free-cta {
    justify-items: start;
    padding: 24px;
  }
}
