:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: #15130f;
  --panel-2: #1d1a14;
  --line: rgba(232, 196, 113, 0.24);
  --line-bright: rgba(245, 220, 157, 0.44);
  --gold: #e8c471;
  --gold-deep: #9f742d;
  --cream: #fff5d8;
  --muted: #c9c0ac;
  --soft: #8f8879;
  --teal: #78e2dc;
  --rose: #f2a7b8;
  --green: #a8d37f;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(232, 196, 113, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 94px),
    var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 7vw;
  border-bottom: 1px solid rgba(232, 196, 113, 0.18);
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 196, 113, 0.32);
  border-radius: 8px;
  object-fit: cover;
}

.brand-text {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  transition: color 160ms ease;
}

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

.header-action,
.primary-button,
.secondary-button,
.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-action,
.primary-button,
.product-button {
  background: linear-gradient(135deg, #ffe7a3, #d19a3b 62%, #8a5b1f);
  color: #15100a;
  box-shadow: 0 10px 30px rgba(177, 123, 39, 0.22);
}

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

.header-action:hover,
.primary-button:hover,
.secondary-button:hover,
.product-button:hover,
.header-action:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.product-button:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.mobile-nav {
  display: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: stretch;
  padding: 74px 7vw 54px;
}

.hero-copy,
.hero-panel,
.assurance-section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 560px;
  padding: 46px;
  background:
    linear-gradient(120deg, rgba(232, 196, 113, 0.12), rgba(8, 8, 8, 0.36) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.hero-logo {
  display: block;
  width: min(360px, 78%);
  height: auto;
  margin-bottom: 28px;
  border: 1px solid rgba(232, 196, 113, 0.12);
  border-radius: 8px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.trust-row div,
.quick-note,
.assurance-points div,
.process-step,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.trust-row div {
  padding: 16px;
}

.trust-row strong,
.trust-row span,
.assurance-points strong,
.assurance-points span {
  display: block;
}

.trust-row strong,
.assurance-points strong {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 14px;
}

.trust-row span,
.assurance-points span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 560px;
  padding: 26px;
}

.panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-heading span {
  color: var(--soft);
  font-size: 13px;
}

.panel-heading strong {
  color: var(--gold);
  font-size: 14px;
}

.spotlight-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.spotlight-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.spotlight-item:hover,
.spotlight-item:focus-visible {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.spotlight-item strong,
.spotlight-item small {
  display: block;
}

.spotlight-item small {
  margin-top: 4px;
  color: var(--soft);
}

.app-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #080808;
  font-weight: 900;
}

.token-ai {
  background: linear-gradient(135deg, var(--teal), #dffdf8);
}

.token-play {
  background: linear-gradient(135deg, #ff7272, #ffd4a5);
}

.token-design {
  background: linear-gradient(135deg, #a9a4ff, #8cebe2);
}

.token-video {
  background: linear-gradient(135deg, #ff9fc4, #ffe2ab);
}

.token-gold {
  background: linear-gradient(135deg, #ffe8a3, #c89338);
}

.token-green {
  background: linear-gradient(135deg, var(--green), #eef8c7);
}

.quick-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 18px;
  color: var(--muted);
}

.quick-note span {
  color: var(--soft);
  font-size: 13px;
}

.quick-note strong {
  color: var(--cream);
  font-size: 15px;
}

.products-section,
.process-section,
.faq-section {
  padding: 68px 7vw;
}

.showcase-section {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin: 26px 7vw 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080908;
  box-shadow: var(--shadow);
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.72) 34%, rgba(7, 7, 7, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
}

.showcase-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(560px, 100%);
  min-height: 440px;
  padding: 42px;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.showcase-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 560px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.category-tab.is-active,
.category-tab:hover,
.category-tab:focus-visible {
  border-color: var(--line-bright);
  color: var(--cream);
  background: rgba(232, 196, 113, 0.12);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  min-height: 342px;
  overflow: hidden;
  padding: 20px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.product-top > div {
  min-width: 0;
}

.product-name {
  margin-bottom: 6px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.product-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-description {
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
  padding-top: 18px;
}

.product-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-price {
  display: block;
  color: var(--cream);
  font-weight: 900;
}

.product-note {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
}

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

.process-step {
  min-width: 0;
  padding: 24px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
}

.assurance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  margin: 36px 7vw;
  padding: 34px;
}

.assurance-copy,
.assurance-points {
  min-width: 0;
}

.assurance-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.assurance-points {
  display: grid;
  gap: 14px;
}

.assurance-points div {
  padding: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 190px;
  height: auto;
  border-radius: 8px;
}

.site-footer p {
  max-width: 460px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-section,
  .assurance-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

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

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    z-index: 19;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 14px;
    border-radius: 6px;
    color: var(--muted);
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.055);
    color: var(--cream);
  }

  .hero-section,
  .products-section,
  .process-section,
  .faq-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-section {
    padding-top: 36px;
    gap: 18px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-logo {
    width: 100%;
    max-width: 300px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

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

  .trust-row,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 18px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .spotlight-item {
    min-height: 78px;
    min-width: 0;
  }

  .product-card {
    min-height: 0;
  }

  .product-card .app-token {
    display: none;
  }

  .showcase-section {
    min-height: 520px;
    margin: 18px;
  }

  .showcase-image {
    object-position: 66% center;
  }

  .showcase-section::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.78) 38%, rgba(7, 7, 7, 0.28) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.34));
  }

  .showcase-copy {
    min-height: 520px;
    padding: 26px;
  }

  .product-bottom,
  .quick-note,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-button {
    width: 100%;
  }

  .assurance-section {
    margin: 18px;
    padding: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-copy {
    padding: 20px;
  }

  .spotlight-item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .app-token {
    width: 46px;
    height: 46px;
  }
}
