:root {
  --bg: #09060b;
  --bg-soft: #140917;
  --plum: #301032;
  --plum-soft: #4a1847;
  --berry: #c43f7e;
  --gold: #d7b16c;
  --gold-soft: #f1ddb1;
  --text: #f8eac6;
  --text-soft: rgba(248, 234, 198, 0.82);
  --text-faint: rgba(248, 234, 198, 0.58);
  --line: rgba(215, 177, 108, 0.22);
  --line-strong: rgba(215, 177, 108, 0.4);
  --panel: rgba(24, 9, 26, 0.72);
  --panel-strong: rgba(16, 6, 18, 0.88);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 40px 120px rgba(0, 0, 0, 0.45);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 50% 14%, rgba(196, 63, 126, 0.22), transparent 18%),
    radial-gradient(circle at 50% 38%, rgba(218, 164, 84, 0.16), transparent 18%),
    radial-gradient(circle at 16% 72%, rgba(85, 25, 76, 0.3), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(122, 32, 95, 0.18), transparent 22%),
    linear-gradient(180deg, #070508 0%, #120714 24%, #220a21 52%, #140814 76%, #060508 100%);
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

::selection {
  color: #14070d;
  background: var(--gold);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-noise,
.page-stars,
.page-glow,
.progress-line {
  position: fixed;
  pointer-events: none;
}

.page-noise {
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-stars {
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 236, 189, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 18%, rgba(255, 228, 164, 0.7) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 32% 62%, rgba(255, 236, 189, 0.55) 0 1px, transparent 1.8px),
    radial-gradient(circle at 64% 54%, rgba(255, 228, 164, 0.6) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 88% 74%, rgba(255, 236, 189, 0.65) 0 1px, transparent 1.8px),
    radial-gradient(circle at 22% 84%, rgba(255, 228, 164, 0.55) 0 1px, transparent 1.8px);
  background-size: 400px 400px;
}

.page-glow {
  z-index: 0;
  border-radius: 50%;
  filter: blur(64px);
}

.page-glow-top {
  top: 80px;
  left: 50%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(194, 63, 126, 0.22), transparent 64%);
  transform: translateX(-50%);
}

.page-glow-bottom {
  right: -120px;
  bottom: 160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 177, 108, 0.18), transparent 70%);
}

.progress-line {
  inset: 0 auto auto 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--berry), var(--gold-soft));
  box-shadow: 0 0 24px rgba(215, 177, 108, 0.55);
}

.site-header,
.point-card,
.problem-card,
.feature-card,
.step-card,
.metric-card,
.licensing-card,
.contact-card,
.docking-copy {
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--content));
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 235, 199, 0.12);
  border-radius: 999px;
  background: rgba(10, 7, 12, 0.62);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(215, 177, 108, 0.24);
  background: rgba(8, 6, 10, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.brand,
.status-badge,
.button,
.floating-contact {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffebb5 0%, #d7b16c 34%, #7d214c 75%, #321029 100%);
  box-shadow: 0 0 0 6px rgba(215, 177, 108, 0.1);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.96rem;
  color: var(--gold-soft);
}

.brand-copy span,
.hero-kicker,
.hero-lead,
.section-heading p,
.section-caption,
.problem-note p,
.innovation-rail,
.contact-label,
.stage-note span,
.licensing-label {
  color: var(--text-faint);
}

.brand-copy span {
  font-size: 0.74rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.eyebrow,
.hero-kicker,
.point-card span,
.step-number,
.contact-label,
.licensing-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.76rem;
  color: rgba(248, 234, 198, 0.72);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.status-badge,
.button {
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.status-badge {
  background: rgba(255, 245, 222, 0.08);
  border: 1px solid rgba(215, 177, 108, 0.18);
  font-size: 0.72rem;
  color: var(--gold-soft);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(215, 177, 108, 0.12);
}

.button {
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
}

.button-primary,
.floating-contact {
  color: #1a0b13;
  background: linear-gradient(135deg, #f5dcaa, #d7b16c 45%, #c49049 100%);
}

.button-primary {
  box-shadow: 0 16px 32px rgba(212, 158, 81, 0.2);
}

.button-secondary {
  border-color: rgba(215, 177, 108, 0.22);
  background: rgba(255, 245, 222, 0.06);
  color: var(--gold-soft);
}

.status-badge:hover,
.button:hover,
.floating-contact:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  z-index: 2;
  padding: 104px 0 72px;
}

.hero-inner,
.section,
.contact-section {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.contact-section {
  padding: 84px 0 110px;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(215, 177, 108, 0.9);
}

h1,
h2,
h3,
.hero-kicker,
.innovation-rail {
  font-family: "Cinzel", serif;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 11.2ch;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  color: var(--gold-soft);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  color: var(--gold-soft);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
  line-height: 1.2;
  color: var(--gold-soft);
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.hero-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 860px;
}

.hero-kicker {
  font-size: 0.84rem;
}

.hero-stage {
  position: relative;
  width: 100%;
  min-height: 376px;
  margin-top: 22px;
  padding: 38px 22px 88px;
  transform-style: preserve-3d;
}

.stage-halo,
.stage-spark,
.stage-floor,
.product-device,
.dock-body,
.dock-halo {
  position: absolute;
}

.stage-halo {
  left: 50%;
  top: 92px;
  width: min(700px, 82vw);
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 77, 143, 0.28), rgba(218, 77, 143, 0.08) 45%, transparent 70%);
  filter: blur(22px);
  transform: translateX(-50%);
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.stage-spark {
  top: 146px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(12px);
}

.stage-spark-left {
  left: 8%;
  background: radial-gradient(circle, rgba(215, 177, 108, 0.22), transparent 70%);
}

.stage-spark-right {
  right: 8%;
  background: radial-gradient(circle, rgba(215, 177, 108, 0.2), transparent 70%);
}

.stage-floor {
  left: 50%;
  bottom: 54px;
  width: min(760px, 88vw);
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 134, 0.48), rgba(215, 177, 108, 0.2) 34%, rgba(196, 63, 126, 0.14) 54%, transparent 72%);
  filter: blur(14px);
  transform: translateX(-50%);
}

.product-device {
  left: 50%;
  top: 120px;
  width: min(760px, 92%);
  height: clamp(96px, 13vw, 138px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 26%, rgba(0, 0, 0, 0.1) 26%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.1) 48%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(135deg, #060508, #251026 44%, #0b070e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 34px rgba(0, 0, 0, 0.18);
}

.product-ring {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe7b0, #d1a04f 54%, #8b6130);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.product-ring-left {
  left: 30px;
}

.product-ring-right {
  right: 30px;
}

.product-core {
  position: absolute;
  inset: 16px 88px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.product-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(150px, 22vw, 220px);
  height: clamp(64px, 9vw, 92px);
  transform: translate(-50%, -50%);
}

.lip-top,
.lip-bottom {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 60%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ff7ab2, #cf245f 60%, #8d123d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 24px rgba(196, 63, 126, 0.26);
}

.lip-top {
  top: 0;
  border-radius: 52% 52% 40% 40% / 88% 88% 34% 34%;
}

.lip-bottom {
  bottom: 0;
  border-radius: 40% 40% 60% 60% / 34% 34% 88% 88%;
}

.stage-note {
  position: absolute;
  top: 22px;
  width: min(240px, 32vw);
  padding: 16px 18px;
  border: 1px solid rgba(215, 177, 108, 0.18);
  border-radius: var(--radius-md);
  background: rgba(19, 9, 22, 0.56);
  backdrop-filter: blur(14px);
}

.stage-note-left {
  left: 0;
}

.stage-note-right {
  right: 0;
}

.stage-note span,
.point-card span,
.metric-card strong,
.feature-card span,
.contact-label,
.licensing-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--gold);
}

.stage-note strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.hero-support {
  display: grid;
  gap: 22px;
  justify-items: center;
  max-width: 760px;
  margin-top: 8px;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1rem;
}

.hero-actions,
.hero-points,
.problem-grid,
.steps-grid,
.market-metrics,
.licensing-grid,
.contact-grid {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(560px, 100%);
}

.hero-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 32px;
}

.point-card,
.problem-card,
.feature-card,
.step-card,
.metric-card,
.licensing-card,
.contact-card,
.docking-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel);
  backdrop-filter: blur(18px);
}

.point-card {
  padding: 24px 20px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 58ch;
}

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

.problem-card {
  overflow: hidden;
  padding: 18px;
}

.problem-visual {
  min-height: 210px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(215, 177, 108, 0.14);
  background-color: rgba(255, 255, 255, 0.02);
}

.problem-visual-contact {
  background:
    radial-gradient(circle at 24% 70%, rgba(230, 66, 118, 0.44), transparent 18%),
    radial-gradient(circle at 58% 74%, rgba(255, 211, 160, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(22, 9, 18, 0.88), rgba(55, 21, 50, 0.88));
}

.problem-visual-mirror {
  background:
    radial-gradient(circle at 56% 30%, rgba(255, 231, 181, 0.34), transparent 14%),
    radial-gradient(circle at 54% 34%, rgba(255, 240, 208, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(23, 10, 20, 0.88), rgba(59, 24, 53, 0.9));
}

.problem-visual-control {
  background:
    radial-gradient(circle at 72% 52%, rgba(229, 75, 120, 0.44), transparent 18%),
    radial-gradient(circle at 52% 72%, rgba(255, 224, 170, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(18, 8, 18, 0.9), rgba(51, 17, 44, 0.92));
}

.problem-note {
  max-width: 780px;
  margin-top: 22px;
}

.section-innovation {
  padding-top: 96px;
}

.feature-layout {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  gap: 18px;
}

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

.feature-row-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 24px 22px;
}

.feature-device {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(196, 63, 126, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(18, 7, 18, 0.72);
  box-shadow: var(--shadow);
}

.feature-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215, 177, 108, 0.6), transparent);
  transform: translate(-50%, -50%);
}

.product-device-small {
  top: 50%;
  width: min(560px, 82%);
  height: 98px;
  transform: translate(-50%, -50%);
}

.innovation-rail,
.section-caption {
  max-width: 820px;
  margin-top: 26px;
  font-size: 1rem;
}

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

.step-card {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
}

.step-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(215, 177, 108, 0.16);
  color: rgba(248, 234, 198, 0.72);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.step-visual-insert {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 212, 130, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, rgba(39, 14, 34, 0.86), rgba(91, 26, 64, 0.72));
}

.step-visual-apply {
  background:
    radial-gradient(circle at 52% 48%, rgba(224, 71, 121, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, rgba(39, 14, 34, 0.82), rgba(109, 32, 69, 0.7));
}

.step-visual-store {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 211, 124, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, rgba(31, 11, 29, 0.9), rgba(67, 24, 59, 0.76));
}

.section-docking .section-heading {
  margin-bottom: 28px;
}

.docking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.docking-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 82%, rgba(215, 177, 108, 0.22), transparent 28%),
    radial-gradient(circle at 50% 26%, rgba(196, 63, 126, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(18, 7, 18, 0.74);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
}

.dock-halo {
  left: 50%;
  bottom: 42px;
  width: 250px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 219, 142, 0.46), rgba(215, 177, 108, 0.16) 40%, transparent 70%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.dock-body {
  left: 50%;
  bottom: 70px;
  width: 240px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 42px 42px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01) 24%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(135deg, #050407, #241027 52%, #0d0912);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 26px 54px rgba(0, 0, 0, 0.4);
}

.dock-slot {
  position: absolute;
  top: 54px;
  bottom: 34px;
  width: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(111, 75, 255, 0.86), rgba(87, 35, 139, 0.32) 44%, transparent 72%);
  filter: blur(0.2px);
}

.dock-slot-left {
  left: 28px;
}

.dock-slot-right {
  right: 28px;
}

.dock-device {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 92px;
  height: 192px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 24%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(135deg, #0b0710, #311128 50%, #120b16);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dock-device::before,
.dock-device::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dock-device::before {
  top: 42px;
  width: 52px;
  height: 86px;
  border-radius: 44% 44% 50% 50% / 54% 54% 46% 46%;
  background: linear-gradient(180deg, #ff6aa5, #cb2159 58%, #86143b);
  box-shadow: 0 0 24px rgba(196, 63, 126, 0.24);
}

.dock-device::after {
  top: 10px;
  bottom: 10px;
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffebb2, #d19e4a 56%, #865d2f);
  opacity: 0.8;
}

.docking-visual p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  text-align: center;
  color: var(--text-faint);
}

.docking-copy {
  padding: 30px;
}

.detail-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.8;
  color: var(--text-soft);
}

.section-market {
  padding-top: 96px;
}

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

.metric-card {
  padding: 26px 24px;
}

.metric-card strong {
  font-size: 0.78rem;
}

.metric-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.licensing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.licensing-card {
  padding: 28px 24px;
}

.contact-shell {
  display: grid;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(215, 177, 108, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(196, 63, 126, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel-strong);
  box-shadow: var(--shadow-strong);
}

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

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 188px;
  padding: 24px;
}

.contact-card a,
.contact-card strong {
  color: var(--gold-soft);
  font-size: 1.08rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin-top: 6px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 245, 222, 0.12), rgba(215, 177, 108, 0.38)),
    #f1ddaf;
  color: #180c14;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

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

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03);
  }
}

@media (max-width: 1180px) {
  .hero-points,
  .problem-grid,
  .steps-grid,
  .market-metrics,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-row-bottom .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .docking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-stage {
    min-height: 360px;
    padding-top: 34px;
  }

  .stage-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .stage-note-left,
  .stage-note-right {
    order: 2;
  }

  .hero-stage {
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .feature-row-top,
  .feature-row-bottom,
  .licensing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero-inner,
  .section,
  .contact-section,
  .site-header {
    width: min(calc(100% - 24px), var(--content));
  }

  .site-header {
    top: 10px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand-copy span,
  .status-badge {
    display: none;
  }

  .hero {
    padding-top: 84px;
    padding-bottom: 58px;
  }

  .section {
    padding: 66px 0;
  }

  .contact-section {
    padding: 66px 0 96px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10.4vw, 3.7rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(2rem, 10.5vw, 3.3rem);
  }

  .hero-copy,
  .section-heading {
    justify-items: start;
    text-align: left;
  }

  .hero-inner {
    justify-items: stretch;
  }

  .hero-stage {
    min-height: 270px;
    margin-top: 20px;
    padding: 0 0 56px;
  }

  .stage-halo {
    top: 64px;
    width: 100%;
    height: 140px;
  }

  .stage-floor {
    width: 96%;
    bottom: 18px;
  }

  .product-device {
    top: 82px;
    width: 100%;
    height: 76px;
  }

  .product-ring {
    top: 8px;
    bottom: 8px;
    width: 16px;
  }

  .product-ring-left {
    left: 18px;
  }

  .product-ring-right {
    right: 18px;
  }

  .product-core {
    inset: 12px 50px;
  }

  .product-emblem {
    width: 124px;
    height: 54px;
  }

  .stage-note {
    display: none;
  }

  .hero-support {
    justify-items: stretch;
    margin-top: 0;
  }

  .hero-lead {
    max-width: none;
    font-size: 0.96rem;
  }

  .hero-actions,
  .hero-points,
  .problem-grid,
  .steps-grid,
  .market-metrics,
  .licensing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .point-card,
  .problem-card,
  .feature-card,
  .step-card,
  .metric-card,
  .licensing-card,
  .contact-card,
  .docking-copy {
    padding: 22px 18px;
  }

  .problem-visual {
    min-height: 176px;
  }

  .feature-device {
    min-height: 184px;
    border-radius: 26px;
  }

  .product-device-small {
    width: 88%;
    height: 74px;
  }

  .step-visual {
    min-height: 232px;
  }

  .docking-visual {
    min-height: 360px;
    padding: 24px;
  }

  .dock-body {
    width: 200px;
    height: 228px;
  }

  .contact-shell {
    padding: 24px 18px;
    border-radius: 28px;
  }

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

  .floating-contact {
    display: none;
  }
}

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

  .reveal,
  .button,
  .status-badge,
  .site-header {
    transition: none;
  }

  .stage-halo {
    animation: none;
  }
}
