:root {
  --bg: #091225;
  --bg-soft: #111d36;
  --card: rgba(13, 24, 46, 0.85);
  --card-strong: rgba(18, 31, 58, 0.96);
  --text: #edf3ff;
  --muted: #9fb2d5;
  --border: rgba(132, 155, 199, 0.26);
  --mint: #69f4d3;
  --mint-soft: rgba(105, 244, 211, 0.22);
  --purple-1: #af7dff;
  --purple-2: #7953ff;
  --purple-3: #4e2ad4;
  --shadow: 0 22px 46px rgba(4, 10, 24, 0.45);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  color: var(--text);
  font-family: "Outfit", "Manrope", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 83, 255, 0.36), transparent 33%),
    radial-gradient(circle at 84% 2%, rgba(105, 244, 211, 0.18), transparent 30%),
    linear-gradient(165deg, #060d1c 0%, #091225 44%, #0b1630 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(to right, rgba(150, 170, 208, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(150, 170, 208, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 86%);
}

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

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(121, 146, 190, 0.24);
  backdrop-filter: blur(12px);
  background: linear-gradient(140deg, rgba(8, 16, 34, 0.86), rgba(8, 16, 34, 0.58));
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

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

.brand-mark {
  width: 42px;
  flex-shrink: 0;
}

.brand-wordmark {
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-wordmark span {
  color: var(--mint);
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(11, 20, 39, 0.65);
}

.site-nav a {
  color: #c7d6f2;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(114, 81, 252, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  border-color: rgba(160, 135, 255, 0.72);
  color: #fff;
  background: linear-gradient(120deg, var(--purple-2), var(--purple-1));
  box-shadow: 0 16px 36px rgba(65, 40, 168, 0.42);
}

.button-primary:hover {
  border-color: rgba(200, 181, 255, 0.88);
  background: linear-gradient(120deg, #6644f4, #c292ff);
}

.button-ghost {
  color: #e0ebff;
  background: rgba(15, 27, 50, 0.62);
}

.button-ghost:hover {
  border-color: rgba(114, 138, 185, 0.54);
  background: rgba(18, 33, 61, 0.9);
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #b3c4e4;
}

.hero h1 {
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(120deg, var(--mint) 0%, #bde5ff 35%, #b58fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  max-width: 56ch;
}

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

.hero-panel {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.panel-kicker {
  color: #bdd7ff;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 16px;
}

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

.status-list li {
  border: 1px solid rgba(127, 150, 197, 0.27);
  border-radius: 14px;
  padding: 12px;
  background: rgba(11, 22, 44, 0.75);
  color: #dbe8ff;
}

.status-list strong {
  color: var(--mint);
}

.hero-orbit {
  position: absolute;
  right: 26px;
  top: 18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(147, 174, 226, 0.34);
  animation: rotateOrbit 13s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.orbit-dot-a {
  top: -8px;
  left: 44px;
  background: linear-gradient(140deg, #cc9fff, #6f47ff);
}

.orbit-dot-b {
  right: -8px;
  top: 46px;
  background: linear-gradient(140deg, #78fbe2, #3cb8d7);
}

.orbit-dot-c {
  left: 10px;
  bottom: 4px;
  background: linear-gradient(140deg, #fff7b2, #f3af53);
}

.section {
  padding: 74px 0;
}

.section-tight {
  padding-top: 24px;
  padding-bottom: 86px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(13, 25, 47, 0.9), rgba(9, 18, 37, 0.25));
  border-top: 1px solid rgba(121, 145, 191, 0.16);
  border-bottom: 1px solid rgba(121, 145, 191, 0.16);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

.pill {
  border: 1px solid rgba(117, 142, 191, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(13, 24, 45, 0.82);
  color: #d4e3ff;
  font-size: 0.9rem;
  white-space: nowrap;
}

.pill strong {
  color: var(--mint);
}

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

.product-card {
  border: 1px solid rgba(127, 151, 199, 0.34);
  border-radius: var(--radius);
  background: var(--card-strong);
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 160, 255, 0.72);
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.product-head h3 {
  font-size: 1.06rem;
  line-height: 1.3;
}

.product-price {
  border: 1px solid rgba(144, 170, 215, 0.45);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
  font-weight: 800;
  color: var(--mint);
  background: rgba(10, 25, 45, 0.78);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge,
.chip {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
  border: 1px solid rgba(139, 161, 205, 0.32);
}

.badge-live {
  color: #f7f2ca;
  background: rgba(122, 98, 26, 0.36);
  border-color: rgba(238, 221, 147, 0.42);
}

.badge-soft {
  color: #d9cdfc;
  background: rgba(81, 62, 138, 0.34);
  border-color: rgba(179, 159, 237, 0.42);
}

.chip {
  color: #c2d4f4;
  background: rgba(17, 30, 54, 0.84);
}

.product-card p {
  color: var(--muted);
}

.product-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #c7d9f7;
}

.product-note {
  font-size: 0.92rem;
  color: #cfe1ff;
}

.product-note strong {
  color: #ebf2ff;
}

.product-card .button {
  width: 100%;
}

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

.preview-card {
  border: 1px solid rgba(142, 165, 210, 0.32);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(12, 22, 44, 0.86);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-head h3 {
  font-size: 1.02rem;
}

.preview-card p {
  color: var(--muted);
}

.preview-frame-shell {
  border: 1px solid rgba(146, 169, 214, 0.34);
  border-radius: 14px;
  background: rgba(8, 15, 30, 0.9);
  overflow: hidden;
}

.preview-frame-top {
  min-height: 34px;
  border-bottom: 1px solid rgba(142, 165, 209, 0.22);
  background: linear-gradient(150deg, rgba(22, 37, 67, 0.92), rgba(10, 20, 40, 0.96));
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(223, 236, 255, 0.54);
}

.preview-frame-top strong {
  margin-left: 8px;
  font-size: 0.74rem;
  color: #c9ddff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-frame {
  display: block;
  width: 100%;
  height: 210px;
  border: 0;
  background: #ffffff;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-actions .button {
  flex: 1;
  min-width: 170px;
}

.domain-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.domain-group {
  border: 1px solid rgba(138, 162, 206, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(12, 22, 44, 0.86);
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.domain-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.domain-group-head h3 {
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: 0.98rem;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.domain-group-head span {
  white-space: nowrap;
  border: 1px solid rgba(137, 162, 206, 0.38);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.73rem;
  color: #d0def7;
}

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

.domain-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c6d8f8;
  font-size: 0.92rem;
}

.domain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle, #8bf9df 0%, #4bc7d7 100%);
  box-shadow: 0 0 0 4px rgba(105, 244, 211, 0.15);
}

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

.flow-card {
  border: 1px solid rgba(129, 154, 201, 0.32);
  border-radius: var(--radius);
  background: rgba(13, 24, 46, 0.82);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.flow-card span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(130deg, var(--purple-3), var(--purple-1));
}

.flow-card h3 {
  font-size: 1.02rem;
}

.flow-card p {
  color: var(--muted);
}

.launch-card {
  border: 1px solid rgba(133, 158, 205, 0.32);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 8% -30%, rgba(111, 79, 255, 0.5), transparent 42%),
    linear-gradient(150deg, rgba(16, 28, 53, 0.95), rgba(8, 16, 33, 0.95));
  display: grid;
  gap: 14px;
}

.launch-card h3 {
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.launch-card p {
  color: #c4d6f5;
  max-width: 64ch;
}

.site-footer {
  border-top: 1px solid rgba(126, 151, 197, 0.2);
  padding: 36px 0 44px;
  background: rgba(8, 16, 33, 0.72);
}

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

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", "Outfit", sans-serif;
}

.footer-grid p {
  color: #afc3e8;
}

.footer-grid a {
  color: #d4e3ff;
}

.footer-grid a:hover {
  color: var(--mint);
}

.gem-dock {
  position: fixed;
  right: 20px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1200;
  display: grid;
  gap: 10px;
  justify-items: end;
  pointer-events: none;
}

.gem-fab,
.gem-panel {
  pointer-events: auto;
}

.gem-fab {
  border: 1px solid rgba(194, 170, 255, 0.62);
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(132deg, rgba(20, 14, 44, 0.98), rgba(61, 36, 141, 0.97));
  box-shadow: 0 18px 44px rgba(15, 9, 42, 0.65), 0 0 0 1px rgba(179, 157, 255, 0.18);
  cursor: pointer;
  animation: gemFloat 4.7s ease-in-out infinite;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gem-fab:hover,
.gem-fab.is-open {
  transform: translateY(-2px);
  border-color: rgba(229, 219, 255, 0.92);
}

.gem-icon {
  width: 52px;
  height: 52px;
  position: relative;
  display: block;
  isolation: isolate;
}

.gem-facet {
  position: absolute;
  border-radius: 12px;
}

.gem-facet-top {
  top: 3px;
  left: 10px;
  right: 10px;
  height: 14px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #f6ebff, #ceb1ff);
}

.gem-facet-left {
  inset: 14px auto 6px 4px;
  width: 22px;
  clip-path: polygon(50% 0, 100% 26%, 100% 100%, 0 76%, 0 26%);
  background: linear-gradient(180deg, #a67cff 0%, #6f42ed 56%, #4d2aba 100%);
  border: 1px solid rgba(213, 195, 255, 0.48);
}

.gem-facet-right {
  inset: 14px 4px 6px auto;
  width: 22px;
  clip-path: polygon(50% 0, 100% 26%, 100% 76%, 0 100%, 0 26%);
  background: linear-gradient(180deg, #b691ff 0%, #8057f3 56%, #5a36d1 100%);
  border: 1px solid rgba(213, 195, 255, 0.48);
}

.gem-letter {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 8px 20px rgba(32, 16, 92, 0.75);
  z-index: 2;
}

.gem-aura {
  position: absolute;
  inset: -14px;
  border-radius: 20px;
  z-index: -1;
  background: radial-gradient(circle, rgba(171, 136, 255, 0.72) 0%, rgba(171, 136, 255, 0) 66%);
  filter: blur(6px);
  animation: auraPulse 3.2s ease-in-out infinite;
}

.gem-copy {
  display: grid;
  text-align: left;
  line-height: 1.14;
}

.gem-copy strong {
  font-size: 0.88rem;
}

.gem-copy small {
  color: #e5dcff;
  font-size: 0.74rem;
}

.gem-panel {
  width: 320px;
  border-radius: 16px;
  border: 1px solid rgba(188, 164, 255, 0.62);
  padding: 12px;
  color: #f6f0ff;
  background:
    radial-gradient(circle at 90% -16%, rgba(192, 166, 255, 0.48), transparent 40%),
    linear-gradient(155deg, rgba(19, 14, 44, 0.98), rgba(12, 9, 30, 0.99));
  box-shadow: 0 24px 52px rgba(8, 4, 28, 0.72);
}

.gem-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.gem-panel-head strong {
  font-size: 0.9rem;
}

.gem-panel-head a {
  border: 1px solid rgba(216, 199, 255, 0.46);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ddccff;
}

.gem-panel-list {
  display: grid;
  gap: 8px;
}

.gem-panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(196, 174, 255, 0.38);
  border-radius: 11px;
  padding: 9px 10px;
  background: rgba(159, 128, 255, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gem-panel-item:hover {
  transform: translateX(1px);
  border-color: rgba(229, 215, 255, 0.84);
}

.gem-panel-item span {
  font-size: 0.8rem;
  max-width: 23ch;
}

.gem-panel-item strong {
  white-space: nowrap;
  color: #ebdeff;
  font-size: 0.8rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.legal-main {
  padding: 84px 0;
}

.legal-layout {
  display: grid;
  gap: 14px;
}

.legal-card {
  border: 1px solid rgba(132, 156, 203, 0.32);
  border-radius: var(--radius);
  background: rgba(13, 24, 46, 0.86);
  padding: clamp(18px, 3vw, 26px);
}

.legal-card h1,
.legal-card h2,
.legal-card h3 {
  margin-bottom: 8px;
  font-family: "Manrope", "Outfit", sans-serif;
}

.legal-card p + p {
  margin-top: 8px;
}

.legal-card p,
.legal-card li {
  color: #c2d5f6;
}

.legal-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-list li + li {
  margin-top: 6px;
}

.legal-badge {
  border: 1px solid rgba(149, 171, 215, 0.45);
  border-radius: 12px;
  padding: 11px;
  color: #def3ff;
  background: rgba(10, 24, 45, 0.82);
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gemFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.54;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .site-nav {
    justify-self: start;
    grid-column: 1 / span 2;
    width: 100%;
    overflow-x: auto;
  }

  .header-inner > .button {
    justify-self: end;
  }

  .hero {
    padding-top: 78px;
  }

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

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

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

  .domain-group-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gem-dock {
    right: 12px;
    left: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    justify-items: stretch;
  }

  .gem-fab,
  .gem-panel {
    width: 100%;
  }

  .gem-fab {
    animation: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-wordmark {
    font-size: clamp(1.12rem, 5vw, 1.4rem);
  }

  .gem-copy strong {
    font-size: 0.84rem;
  }
}

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

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

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
  }
}
