:root {
  --bg: #0b0e12;
  --bg-elevated: #11161d;
  --bg-panel: #171d26;
  --bg-panel-strong: #1b2330;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #edf2f7;
  --muted: #99a5b6;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --focus-ring: rgba(255, 122, 26, 0.48);
  --max-width: 1160px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.22);
  --transition: 180ms ease;
  --radius: 1.4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.12), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #0e1319 0%, var(--bg) 44%, #080b0e 100%);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1a0b00;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus-visible {
  top: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    opacity var(--transition);
}

p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 14, 18, 0.78);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.header-inner,
.footer-inner,
.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  padding: 1rem 0;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.hero,
.products,
.coming-soon,
.about {
  padding: 5.5rem 0;
}

.hero {
  padding-top: 6.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.3rem, 8vw, 6.1rem);
  font-weight: 800;
}

.hero-copy,
.about-copy,
.product-copy,
.footer-copy,
.footer-note,
.hero-list {
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy {
  max-width: 41rem;
  margin-top: 1.35rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.discovery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.discovery-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8dee7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discovery-link:hover,
.discovery-link:focus-visible {
  border-color: rgba(255, 122, 26, 0.28);
  background: rgba(255, 122, 26, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #1a0b00;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  align-self: end;
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, var(--bg-panel-strong), var(--bg-panel));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 760;
}

.hero-list {
  margin-top: 1.25rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
  line-height: 1.6;
}

.discovery-band {
  padding: 0 0 3.25rem;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.discovery-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(10, 13, 17, 0.6);
  box-shadow: var(--shadow-soft);
}

.discovery-card:hover,
.discovery-card:focus-visible {
  border-color: rgba(255, 122, 26, 0.24);
  transform: translateY(-2px);
}

.discovery-card strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.discovery-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.discovery-card-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 122, 26, 0.12), rgba(255, 122, 26, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: #ffd3b1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-heading h2,
.about-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  font-weight: 760;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #18202b 0%, #121821 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-card-top,
.future-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.14), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.015) 12px,
      rgba(255, 255, 255, 0.015) 24px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.18), transparent 28%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  border-radius: inherit;
  pointer-events: none;
}

.product-image span {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 11, 14, 0.52);
  color: #c7d0dd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.24);
  box-shadow:
    0 32px 84px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 122, 26, 0.08) inset;
}

.product-tag,
.product-card h3,
.product-copy,
.product-meta,
.product-features,
.product-status {
  position: relative;
  z-index: 1;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffb27b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-status {
  color: #c6ced9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.72rem;
  font-weight: 760;
  margin-bottom: 0.85rem;
}

.product-copy {
  line-height: 1.65;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.product-features span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cfd6e0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-meta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c1c9d5;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon {
  padding-top: 0;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.future-card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, #151c26 0%, #10161e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.future-card .product-tag {
  margin-bottom: 0;
}

.future-image {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.09), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 12px,
      rgba(255, 255, 255, 0.012) 12px,
      rgba(255, 255, 255, 0.012) 24px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.about {
  border-top: 1px solid var(--line);
}

.about-inner {
  align-items: start;
  gap: 2rem;
}

.about-heading {
  max-width: 560px;
}

.about-copy {
  max-width: 38rem;
  display: grid;
  gap: 1rem;
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.7rem 0 2.2rem;
}

.retail-notes {
  padding: 0 0 4.5rem;
}

.retail-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.retail-note {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.022);
}

.retail-note-label {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.retail-note-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-brand-block {
  max-width: 24rem;
}

.footer-brand {
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy,
.footer-note {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.footer-links a {
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 122, 26, 0.34);
}

.footer-note {
  max-width: 20rem;
  text-align: right;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 38rem;
  }

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

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

  .about-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .hero,
  .products,
  .coming-soon,
  .about {
    padding: 4.25rem 0;
  }

  .discovery-band {
    padding-bottom: 2.5rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-panel {
    padding: 1.4rem;
  }

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

  .discovery-grid,
  .retail-notes-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon {
    padding-top: 0;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

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

  .future-card {
    min-height: auto;
  }

  .retail-notes {
    padding-bottom: 3.5rem;
  }

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

  .footer-note {
    text-align: left;
  }
}
