:root {
  --ink: #15201f;
  --muted: #5e6a66;
  --line: #dbe0dc;
  --paper: #fbfcf8;
  --soft: #eef3ef;
  --cream: #fff1df;
  --green: #1f7a56;
  --red: #b43b35;
  --blue: #256a8a;
  --amber: #b46d22;
  --coral: #d85f45;
  --mint: #d9f2e6;
  --sky: #e4f0fb;
  --gold: #d2a23a;
  --cash: #0f8f61;
  --wine: #7d2d38;
  --charcoal: #0f1717;
  --steel: #8c9aa3;
  --steel-dark: #42515a;
  --steel-light: #e8edf0;
  --lab-cyan: #65d7e7;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(21, 32, 31, 0.18);
  --hard-shadow: 0 24px 0 rgba(21, 32, 31, 0.08), 0 30px 62px rgba(21, 32, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(101, 215, 231, 0.12), transparent 32rem),
    linear-gradient(180deg, #eef3f1 0%, var(--paper) 22rem);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 92px;
  padding: 22px 32px 16px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 60, 154, 0.42), transparent 15rem),
    radial-gradient(circle at 39% 16%, rgba(255, 176, 0, 0.38), transparent 14rem),
    radial-gradient(circle at 63% 0%, rgba(110, 232, 95, 0.3), transparent 13rem),
    radial-gradient(circle at 86% 28%, rgba(52, 213, 255, 0.44), transparent 17rem),
    linear-gradient(105deg, rgba(20, 20, 48, 0.9), rgba(18, 39, 52, 0.58) 38%, rgba(255, 255, 255, 0.82) 39%, rgba(250, 255, 252, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -22px 40px rgba(255, 255, 255, 0.18),
    0 12px 0 rgba(21, 32, 31, 0.08),
    0 26px 48px rgba(21, 32, 31, 0.2),
    0 0 52px rgba(52, 213, 255, 0.18);
  backdrop-filter: blur(22px) saturate(1.55);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 60, 154, 0.34), transparent 14rem),
    radial-gradient(circle at 39% 16%, rgba(255, 176, 0, 0.3), transparent 13rem),
    radial-gradient(circle at 86% 28%, rgba(52, 213, 255, 0.36), transparent 16rem),
    linear-gradient(105deg, rgba(20, 20, 48, 0.88), rgba(18, 39, 52, 0.54) 34%, rgba(255, 255, 255, 0.92) 35%, rgba(250, 255, 252, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.55);
}

.header-rainbow-rail {
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ff3c9a, #ffb000, #f7ff3c, #6ee85f, #34d5ff, #7c5cff, #ff3c9a);
  background-size: 240% 100%;
  box-shadow:
    0 0 24px rgba(52, 213, 255, 0.7),
    0 8px 22px rgba(255, 60, 154, 0.34);
  animation: header-rail-flow 5s linear infinite;
}

.header-warp-field,
.header-comet {
  position: absolute;
  pointer-events: none;
}

.header-warp-field {
  left: 20px;
  top: 15px;
  width: 150px;
  height: 70px;
  filter: drop-shadow(0 0 18px rgba(52, 213, 255, 0.72));
  opacity: 0.92;
}

.warp-ring {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(rgba(12, 20, 26, 0.82), rgba(12, 20, 26, 0.82)) padding-box,
    conic-gradient(from 90deg, #ff3c9a, #ffb000, #6ee85f, #34d5ff, #7c5cff, #ff3c9a) border-box;
  transform: rotate(-14deg);
}

.ring-a {
  inset: 0 36px 12px 0;
  animation: ring-wobble 4s ease-in-out infinite;
}

.ring-b {
  inset: 12px 18px 4px 22px;
  animation: ring-wobble 4.7s ease-in-out infinite reverse;
}

.ring-c {
  inset: 24px 0 0 54px;
  animation: ring-wobble 5.3s ease-in-out infinite;
}

.header-comet {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, #34d5ff, #ff3c9a);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.comet-a {
  top: 24px;
  right: 24%;
  width: 92px;
  transform: rotate(-8deg);
}

.comet-b {
  right: 8%;
  bottom: 15px;
  width: 58px;
  transform: rotate(12deg);
}

@keyframes ring-wobble {
  0%,
  100% {
    transform: rotate(-14deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes header-rail-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 240% 50%;
  }
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateZ(0);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 10%, transparent 11%),
    conic-gradient(from 220deg, #ff3c9a, #ffb000, #f7ff3c, #6ee85f, #34d5ff, #7c5cff, #ff3c9a);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.62),
    inset 0 -12px 18px rgba(16, 24, 28, 0.24),
    0 12px 0 rgba(21, 32, 31, 0.16),
    0 20px 34px rgba(21, 32, 31, 0.24),
    0 0 40px rgba(52, 213, 255, 0.46),
    0 0 64px rgba(255, 60, 154, 0.22);
  isolation: isolate;
  transform: rotate(-8deg);
}

.brand-mark::before {
  position: absolute;
  inset: 9px;
  z-index: -1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), transparent 14px),
    linear-gradient(145deg, rgba(20, 32, 36, 0.9), rgba(12, 24, 30, 0.72));
  content: "";
}

.brand-mark::after {
  position: absolute;
  inset: -9px;
  z-index: -2;
  border: 2px dashed rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  content: "";
  transform: rotate(18deg);
}

.brand-core {
  font-size: 1.9rem;
  font-weight: 1000;
  line-height: 1;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 255, 255, 0.74);
}

.brand-spark {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 16px currentColor;
}

.spark-a {
  top: -8px;
  right: 6px;
  color: #ff3c9a;
  background: #ff3c9a;
}

.spark-b {
  right: -12px;
  bottom: 15px;
  color: #34d5ff;
  background: #34d5ff;
}

.spark-c {
  bottom: -10px;
  left: 11px;
  color: #ffb000;
  background: #ffb000;
}

.brand-copy {
  display: grid;
  gap: 3px;
  padding: 7px 13px 8px 0;
}

.brand-name {
  width: max-content;
  max-width: 46vw;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0 18%, #ffeb3b 19%, #ff3c9a 38%, #34d5ff 65%, #6ee85f 82%, #ffffff);
  background-clip: text;
  font-size: 1.56rem;
  font-weight: 1000;
  line-height: 1;
  text-shadow:
    0 2px 0 rgba(10, 16, 22, 0.42),
    0 0 22px rgba(52, 213, 255, 0.36);
}

.brand-tagline {
  width: fit-content;
  min-height: 18px;
  padding: 2px 7px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 60, 154, 0.86), rgba(255, 176, 0, 0.84), rgba(52, 213, 255, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 16px rgba(21, 32, 31, 0.16);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  padding: 9px 12px;
  color: #102025;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 7px 999px 999px 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(206, 231, 236, 0.68)),
    linear-gradient(90deg, rgba(255, 60, 154, 0.22), rgba(52, 213, 255, 0.22));
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -9px 14px rgba(21, 32, 31, 0.08),
    0 8px 0 rgba(21, 32, 31, 0.08),
    0 14px 22px rgba(21, 32, 31, 0.12);
  transform: skew(-8deg);
}

.site-nav a::first-letter {
  color: #ff3c9a;
}

.site-nav a > *,
.site-nav a {
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.42)),
    linear-gradient(90deg, rgba(255, 60, 154, 0.2), rgba(52, 213, 255, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 0 rgba(21, 32, 31, 0.08),
    0 14px 22px rgba(21, 32, 31, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 243, 0.72)),
    linear-gradient(90deg, rgba(255, 60, 154, 0.18), rgba(52, 213, 255, 0.18));
}

.site-nav .nav-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px 8px 999px 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(100deg, #ff3c9a, #ffb000 28%, #f7ff3c 44%, #18b86e 64%, #1ba7d8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -10px 16px rgba(21, 32, 31, 0.18),
    0 9px 0 rgba(21, 32, 31, 0.1),
    0 16px 28px rgba(255, 60, 154, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(100deg, #ff58aa, #ffb000 36%, #22cc7d 68%, #34d5ff);
}

.site-nav .language-switch {
  color: #081014;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 235, 59, 0.72)),
    linear-gradient(100deg, #34d5ff, #ff3c9a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -10px 16px rgba(255, 176, 0, 0.18),
    0 9px 0 rgba(21, 32, 31, 0.1),
    0 16px 28px rgba(52, 213, 255, 0.26);
}

.site-nav .language-switch::before {
  margin-right: 6px;
  content: "↔";
}

.site-nav .language-switch:hover,
.site-nav .language-switch:focus-visible {
  color: #081014;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 235, 59, 0.86)),
    linear-gradient(100deg, #65d7e7, #ff58aa);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  background:
    radial-gradient(circle at 82% 28%, rgba(101, 215, 231, 0.34), transparent 23rem),
    radial-gradient(circle at 62% 78%, rgba(210, 162, 58, 0.18), transparent 18rem),
    linear-gradient(118deg, #e8eeee 0%, #f4f6f2 42%, #dce9e8 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.42), rgba(101, 215, 231, 0.1) 58%, rgba(66, 81, 90, 0.12)),
    repeating-linear-gradient(
      0deg,
      rgba(66, 81, 90, 0.1) 0,
      rgba(66, 81, 90, 0.1) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(101, 215, 231, 0.12) 0,
      rgba(101, 215, 231, 0.12) 1px,
      transparent 1px,
      transparent 72px
    );
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 252, 249, 0.86), rgba(234, 246, 247, 0.34) 62%, rgba(248, 252, 249, 0.12)),
    linear-gradient(0deg, rgba(66, 81, 90, 0.16), transparent 48%);
}

.lab-grid-floor {
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 72%;
  height: 46%;
  background:
    linear-gradient(rgba(66, 81, 90, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 81, 90, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 237, 240, 0.46), rgba(140, 154, 163, 0.18));
  background-size: 64px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  transform: rotateX(64deg) rotateZ(-8deg);
  transform-origin: center bottom;
}

.robot-station {
  position: absolute;
  right: 10%;
  top: 168px;
  display: grid;
  justify-items: center;
  width: 200px;
  filter: drop-shadow(0 34px 28px rgba(21, 32, 31, 0.2));
  transform: rotateY(-10deg) rotateZ(2deg);
}

.robot-head {
  position: relative;
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 132px;
  height: 82px;
  padding-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(145deg, #ffffff 0%, #c8d0d4 45%, #6f7f88 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -16px 24px rgba(66, 81, 90, 0.28);
}

.robot-head::before {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 3px;
  height: 30px;
  background: var(--steel-dark);
  content: "";
}

.robot-head::after {
  position: absolute;
  top: -38px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lab-cyan);
  box-shadow: 0 0 22px rgba(101, 215, 231, 0.86);
  content: "";
}

.robot-head span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #ffffff 0 12%, var(--lab-cyan) 18% 52%, #126172 72%);
  box-shadow: 0 0 18px rgba(101, 215, 231, 0.78);
}

.robot-body {
  display: flex;
  gap: 9px;
  justify-content: center;
  width: 160px;
  height: 94px;
  margin-top: 12px;
  padding-top: 25px;
  border-radius: 18px 18px 26px 26px;
  background:
    linear-gradient(135deg, #edf1f2, #91a0a8 48%, #4f5f69);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.88),
    inset 0 -18px 28px rgba(21, 32, 31, 0.18);
}

.robot-body i {
  width: 22px;
  height: 34px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--lab-cyan), #23798a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.lab-arm {
  position: absolute;
  width: 164px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7f9f9, #8997a0 56%, #3f4e56);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.72),
    0 18px 24px rgba(21, 32, 31, 0.16);
}

.lab-arm::before,
.lab-arm::after {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #9aa8ae 48%, #42515a 72%);
  content: "";
  transform: translateY(-50%);
}

.lab-arm::before {
  left: -16px;
}

.lab-arm::after {
  right: -16px;
}

.lab-arm span {
  position: absolute;
  right: -26px;
  bottom: -45px;
  width: 52px;
  height: 46px;
  border: 10px solid var(--steel-dark);
  border-top: 0;
  border-radius: 0 0 22px 22px;
}

.arm-a {
  right: 22%;
  top: 280px;
  transform: rotate(-26deg);
}

.arm-b {
  right: 3%;
  bottom: 262px;
  transform: rotate(28deg) scaleX(0.88);
}

.product-orbit,
.hero-screen,
.deal-board,
.capital-card,
.wealth-ticker {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(214, 223, 226, 0.82) 58%, rgba(255, 255, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -12px 22px rgba(66, 81, 90, 0.12),
    0 24px 0 rgba(66, 81, 90, 0.08),
    0 34px 76px rgba(21, 32, 31, 0.18);
  transform-style: preserve-3d;
}

.product-orbit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px;
  color: var(--ink);
  font-weight: 800;
}

.product-orbit::after {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 2px;
  background: var(--cash);
  content: "";
}

.product-orbit img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 8px 14px rgba(21, 32, 31, 0.12);
}

.orbit-a {
  top: 118px;
  right: 7%;
}

.orbit-b {
  right: 9%;
  bottom: 154px;
}

.orbit-c {
  top: 270px;
  right: 29%;
}

.orbit-d {
  right: 5%;
  bottom: 330px;
}

.wealth-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(198, 214, 218, 0.78));
  backdrop-filter: blur(14px);
}

.wealth-ticker span {
  color: #0d7585;
  font-size: 0.72rem;
  font-weight: 900;
}

.wealth-ticker strong {
  font-size: 0.9rem;
}

.ticker-a {
  top: 92px;
  right: 30%;
}

.ticker-b {
  right: 25%;
  bottom: 104px;
}

.deal-board {
  right: 15%;
  bottom: 212px;
  width: 310px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(219, 228, 229, 0.9) 56%, rgba(188, 202, 207, 0.78));
  transform: rotateY(-12deg) rotateZ(-1.5deg);
}

.deal-board-head,
.deal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.deal-board-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(21, 32, 31, 0.14);
}

.deal-board-head span,
.deal-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.deal-board-head strong {
  color: var(--wine);
}

.deal-row {
  min-height: 38px;
}

.deal-row strong {
  color: var(--cash);
  font-size: 1.08rem;
}

.deal-row.premium strong {
  color: var(--gold);
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
  height: 70px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 32, 31, 0.14);
}

.bar-chart span {
  display: block;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #8ee9ef, #1f7a56 58%, #165244);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 8px 14px rgba(21, 32, 31, 0.14);
}

.bar-chart span:nth-child(1) {
  height: 36px;
}

.bar-chart span:nth-child(2) {
  height: 52px;
}

.bar-chart span:nth-child(3) {
  height: 44px;
}

.bar-chart span:nth-child(4) {
  height: 66px;
}

.capital-card {
  right: 32%;
  bottom: 62px;
  width: 240px;
  padding: 16px;
  color: var(--ink);
  border-color: rgba(216, 95, 69, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(199, 214, 218, 0.88) 50%, rgba(225, 242, 244, 0.82));
  transform: rotateY(-10deg) rotateZ(1deg);
}

.capital-card span {
  display: block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.capital-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-screen {
  width: 280px;
  min-height: 188px;
  padding: 18px;
}

.screen-a {
  top: 186px;
  right: 16%;
  transform: rotate(-2deg);
}

.screen-b {
  right: 30%;
  bottom: 80px;
  transform: rotate(2deg);
}

.screen-top,
.screen-row,
.screen-grid span,
.metric-strip span {
  display: block;
  border-radius: 5px;
  background: var(--green);
}

.screen-top {
  width: 116px;
  height: 12px;
  margin-bottom: 18px;
}

.screen-top.alert {
  background: var(--red);
}

.screen-row {
  width: 62%;
  height: 10px;
  margin: 10px 0;
  background: #8a9691;
}

.screen-row.wide {
  width: 88%;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.screen-grid span {
  height: 48px;
  background: var(--mint);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.metric-strip span {
  height: 62px;
  background: #f4ddbd;
}

.hero-copy {
  width: min(100%, 1180px);
  margin: auto;
  padding: 128px 32px 80px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

.hero h1 {
  margin: 0;
  color: #17312e;
  font-size: 5.8rem;
  line-height: 0.98;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.74),
    0 16px 28px rgba(21, 32, 31, 0.14);
}

.hero-lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: #4b5b57;
  font-size: 1.18rem;
}

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

.hero-actions {
  margin-top: 34px;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -12px 18px rgba(21, 32, 31, 0.14),
    0 12px 0 rgba(21, 32, 31, 0.1),
    0 18px 32px rgba(21, 32, 31, 0.18);
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 35%),
    linear-gradient(135deg, #76e3e8, #2d8798 46%, #1f7a56 100%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 35%),
    linear-gradient(135deg, #8eeaf0, #257b8d 46%, #17694c 100%);
  outline: none;
  transform: translateY(-3px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(171, 187, 194, 0.76));
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(147, 166, 174, 0.82));
  outline: none;
  transform: translateY(-3px);
}

.section {
  padding: 86px 0;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 32px;
}

.intro-section {
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(210, 162, 58, 0.1), transparent 34%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.entry-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(101, 215, 231, 0.14), transparent 18rem),
    linear-gradient(90deg, rgba(22, 101, 89, 0.08), transparent 45%),
    #f8faf8;
  border-bottom: 1px solid var(--line);
}

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

.entry-card,
.pattern-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 244, 0.86));
  color: inherit;
  text-decoration: none;
}

.entry-card {
  box-shadow: var(--hard-shadow);
}

.entry-card:hover,
.entry-card:focus-visible {
  border-color: rgba(31, 122, 86, 0.38);
  outline: none;
  transform: translateY(-2px);
}

.entry-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(31, 122, 86, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.entry-card h3,
.pattern-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.entry-card p,
.pattern-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.patterns-section {
  background: #f5f8f6;
}

.pattern-card.emphasized {
  border-color: rgba(31, 122, 86, 0.3);
  background: linear-gradient(180deg, rgba(232, 243, 238, 0.8), var(--white));
}

.pattern-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 6px;
}

.pattern-card dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid rgba(21, 32, 31, 0.08);
}

.pattern-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.pattern-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.route-summary {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.route-summary li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: rgba(232, 243, 238, 0.58);
}

.route-summary strong {
  font-size: 0.95rem;
}

.route-summary span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.14;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.intro-grid > p,
.section-note,
.product-card p,
.package-card p,
.process-list p,
.contact-section p,
.dialog-body p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-note {
  max-width: 490px;
  margin: 0;
}

.sponsor-section {
  background:
    linear-gradient(90deg, rgba(37, 106, 138, 0.1), transparent 38%),
    #f6f9fb;
  border-bottom: 1px solid var(--line);
}

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

.sponsor-card {
  position: relative;
  display: grid;
  min-height: 280px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 244, 0.84));
  box-shadow: var(--hard-shadow);
}

.sponsor-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 126px;
  height: 126px;
  border: 18px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.campaign-module {
  border-color: rgba(37, 106, 138, 0.28);
  background: linear-gradient(135deg, #ffffff, #e8f4f9);
}

.build-module {
  border-color: rgba(180, 109, 34, 0.32);
  background: linear-gradient(135deg, #ffffff, #f6efe4);
}

.public-module {
  border-color: rgba(31, 122, 86, 0.3);
  background: linear-gradient(135deg, #ffffff, #e8f3ee);
}

.sponsor-label {
  width: max-content;
  max-width: 100%;
  padding: 4px 8px;
  color: var(--muted);
  border: 1px solid rgba(21, 32, 31, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
}

.sponsor-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue);
  font-weight: 900;
}

.build-module .sponsor-mark {
  background: var(--amber);
}

.public-module .sponsor-mark {
  background: var(--green);
}

.sponsor-kicker {
  margin: 4px 0 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-card h3 {
  font-size: 1.35rem;
}

.sponsor-card p {
  margin: 0;
  color: var(--muted);
}

.sponsor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.sponsor-meta span {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(21, 32, 31, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 7px 12px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(176, 190, 196, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 7px 0 rgba(21, 32, 31, 0.06),
    0 12px 20px rgba(21, 32, 31, 0.1);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #65d7e7, var(--green));
  outline: none;
  transform: translateY(-2px);
}

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

.product-card,
.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 0 rgba(21, 32, 31, 0.06),
    0 28px 48px rgba(21, 32, 31, 0.12);
}

.product-card {
  --card-bg: var(--white);
  --card-line: var(--line);
  --card-accent: var(--gold);
  --card-accent-2: var(--cash);
  --card-type: var(--blue);
  --card-chip-bg: rgba(238, 243, 239, 0.82);
  --card-chip-line: var(--line);
  --card-money-bg: linear-gradient(90deg, rgba(210, 162, 58, 0.12), rgba(15, 143, 97, 0.08));
  --card-money-line: rgba(210, 162, 58, 0.34);
  --card-link: var(--wine);
  position: relative;
  overflow: hidden;
  border-color: var(--card-line);
  background: var(--card-bg);
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
  content: "";
}

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

.product-card.featured {
  border-color: color-mix(in srgb, var(--card-accent) 42%, var(--card-line));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 0 rgba(21, 32, 31, 0.07),
    0 32px 58px rgba(21, 32, 31, 0.16);
}

.product-card[data-product="serviceman"] {
  --card-bg: linear-gradient(145deg, #f4f8f5 0%, #e7efea 100%);
  --card-line: rgba(31, 122, 86, 0.25);
  --card-accent: #1f7a56;
  --card-accent-2: #d2a23a;
  --card-type: #1f7a56;
  --card-chip-bg: rgba(231, 239, 234, 0.84);
  --card-chip-line: rgba(31, 122, 86, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(31, 122, 86, 0.12), rgba(210, 162, 58, 0.1));
  --card-money-line: rgba(31, 122, 86, 0.22);
  --card-link: #1f7a56;
}

.product-card[data-product="tokoya"] {
  --card-bg: linear-gradient(145deg, #fffaf3 0%, #f6efe4 54%, #e8f4f9 100%);
  --card-line: rgba(180, 59, 53, 0.22);
  --card-accent: #b43b35;
  --card-accent-2: #256a8a;
  --card-type: #7d2d38;
  --card-chip-bg: rgba(255, 250, 243, 0.86);
  --card-chip-line: rgba(180, 59, 53, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(180, 59, 53, 0.1), rgba(37, 106, 138, 0.1));
  --card-money-line: rgba(180, 59, 53, 0.2);
  --card-link: #7d2d38;
}

.product-card[data-product="opsfashion"] {
  --card-bg: linear-gradient(145deg, #fff7f2 0%, #f7f2f0 54%, #e8f4f9 100%);
  --card-line: rgba(125, 45, 56, 0.22);
  --card-accent: #7d2d38;
  --card-accent-2: #d2a23a;
  --card-type: #7d2d38;
  --card-chip-bg: rgba(255, 247, 242, 0.86);
  --card-chip-line: rgba(125, 45, 56, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(125, 45, 56, 0.1), rgba(210, 162, 58, 0.1));
  --card-money-line: rgba(125, 45, 56, 0.2);
  --card-link: #7d2d38;
}

.product-card[data-product="revate"] {
  --card-bg: linear-gradient(145deg, #fff6e8 0%, #e8f3ee 54%, #e4f0fb 100%);
  --card-line: rgba(216, 95, 69, 0.22);
  --card-accent: #d85f45;
  --card-accent-2: #1f7a56;
  --card-type: #b46d22;
  --card-chip-bg: rgba(255, 241, 223, 0.86);
  --card-chip-line: rgba(216, 95, 69, 0.16);
  --card-money-bg: linear-gradient(90deg, rgba(216, 95, 69, 0.1), rgba(31, 122, 86, 0.1));
  --card-money-line: rgba(216, 95, 69, 0.2);
  --card-link: #b46d22;
}

.product-card[data-product="drillerman"] {
  --card-bg: linear-gradient(145deg, #f7fbff 0%, #eef6fb 52%, #f8faf6 100%);
  --card-line: rgba(37, 106, 138, 0.24);
  --card-accent: #256a8a;
  --card-accent-2: #d2a23a;
  --card-type: #256a8a;
  --card-chip-bg: rgba(232, 244, 249, 0.76);
  --card-chip-line: rgba(37, 106, 138, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(37, 106, 138, 0.1), rgba(210, 162, 58, 0.12));
  --card-money-line: rgba(37, 106, 138, 0.2);
  --card-link: #256a8a;
}

.product-card[data-product="tsunagari"] {
  --card-bg: linear-gradient(145deg, #f5f8f1 0%, #e8f3ee 100%);
  --card-line: rgba(94, 106, 102, 0.24);
  --card-accent: #5f7d5d;
  --card-accent-2: #7d2d38;
  --card-type: #5f7d5d;
  --card-chip-bg: rgba(232, 243, 238, 0.86);
  --card-chip-line: rgba(95, 125, 93, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(95, 125, 93, 0.12), rgba(125, 45, 56, 0.08));
  --card-money-line: rgba(95, 125, 93, 0.2);
  --card-link: #5f7d5d;
}

.product-card[data-product="ciphermap"] {
  --card-bg: linear-gradient(145deg, #eefbff 0%, #eaf2f4 42%, #f8f0f7 100%);
  --card-line: rgba(37, 106, 138, 0.28);
  --card-accent: #0d7585;
  --card-accent-2: #ff3c9a;
  --card-type: #0d7585;
  --card-chip-bg: rgba(232, 244, 249, 0.86);
  --card-chip-line: rgba(13, 117, 133, 0.2);
  --card-money-bg: linear-gradient(90deg, rgba(101, 215, 231, 0.14), rgba(255, 60, 154, 0.08));
  --card-money-line: rgba(13, 117, 133, 0.24);
  --card-link: #0d7585;
}

.product-card[data-product="tokimekikanojo"] {
  --card-bg: linear-gradient(145deg, #fff7fb 0%, #ffeaf1 50%, #e8f4f9 100%);
  --card-line: rgba(216, 75, 122, 0.24);
  --card-accent: #d84b7a;
  --card-accent-2: #256a8a;
  --card-type: #8f3d66;
  --card-chip-bg: rgba(255, 234, 241, 0.82);
  --card-chip-line: rgba(216, 75, 122, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(216, 75, 122, 0.1), rgba(37, 106, 138, 0.1));
  --card-money-line: rgba(216, 75, 122, 0.2);
  --card-link: #8f3d66;
}

.product-card[data-product="tokimekikare"] {
  --card-bg: linear-gradient(145deg, #fff8ed 0%, #ffe9ef 46%, #e8f4f9 100%);
  --card-line: rgba(108, 99, 255, 0.24);
  --card-accent: #6c63ff;
  --card-accent-2: #00b8a9;
  --card-type: #5048c8;
  --card-chip-bg: rgba(255, 233, 239, 0.8);
  --card-chip-line: rgba(108, 99, 255, 0.18);
  --card-money-bg: linear-gradient(90deg, rgba(108, 99, 255, 0.1), rgba(0, 184, 169, 0.1));
  --card-money-line: rgba(108, 99, 255, 0.2);
  --card-link: #5048c8;
}

.product-card[data-product="dqrpg"] {
  --card-bg: linear-gradient(145deg, #f0f6ef 0%, #e4efe9 58%, #f6efe4 100%);
  --card-line: rgba(15, 23, 23, 0.22);
  --card-accent: #0f1717;
  --card-accent-2: #1f7a56;
  --card-type: #0f1717;
  --card-chip-bg: rgba(228, 239, 233, 0.86);
  --card-chip-line: rgba(15, 23, 23, 0.16);
  --card-money-bg: linear-gradient(90deg, rgba(15, 23, 23, 0.08), rgba(31, 122, 86, 0.1));
  --card-money-line: rgba(15, 23, 23, 0.18);
  --card-link: #0f1717;
}

.product-card[data-product="randomwalker"] {
  --card-bg: linear-gradient(145deg, #f2fbff 0%, #e8f4f9 55%, #edf5ec 100%);
  --card-line: rgba(37, 106, 138, 0.22);
  --card-accent: #256a8a;
  --card-accent-2: #1f7a56;
  --card-type: #256a8a;
  --card-chip-bg: rgba(232, 244, 249, 0.8);
  --card-chip-line: rgba(37, 106, 138, 0.16);
  --card-money-bg: linear-gradient(90deg, rgba(37, 106, 138, 0.1), rgba(31, 122, 86, 0.1));
  --card-money-line: rgba(37, 106, 138, 0.2);
  --card-link: #256a8a;
}

.product-card.is-hidden {
  display: none;
}

.product-group-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 122, 86, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 241, 223, 0.9), rgba(217, 242, 230, 0.78));
}

.product-group-heading.is-hidden {
  display: none;
}

.product-group-heading .eyebrow,
.product-group-heading h3,
.product-group-heading p {
  margin: 0;
}

.product-group-heading h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.product-group-heading[data-product-group="main"] {
  order: 0;
}

.product-group-heading[data-product-group="micro"] {
  order: 10;
}

.product-group-heading[data-product-group="public"] {
  order: 20;
}

.product-group-heading[data-product-group="learning"] {
  order: 30;
}

.product-card[data-product="serviceman"] {
  order: 2;
}

.product-card[data-product="ideaops"] {
  order: 3;
}

.product-card[data-product="minkai"] {
  order: 4;
}

.product-card[data-product="commukatsu"] {
  order: 5;
}

.product-card[data-product="ciphermap"] {
  order: 6;
}

.product-card[data-product="tsunagari"] {
  order: 7;
}

.product-card[data-product="tokoya"] {
  order: 12;
}

.product-card[data-product="opsbakery"] {
  order: 13;
}

.product-card[data-product="opsfashion"] {
  order: 14;
}

.product-card[data-product="revate"] {
  order: 22;
}

.product-card[data-product="tokimekikanojo"] {
  order: 31;
}

.product-card[data-product="tokimekikare"] {
  order: 32;
}

.product-card[data-product="drillerman"] {
  order: 33;
}

.product-card[data-product="dqrpg"] {
  order: 34;
}

.product-card[data-product="randomwalker"] {
  order: 35;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-head img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 18px rgba(21, 32, 31, 0.12);
}

.product-type,
.package-kicker {
  margin: 0 0 2px;
  color: var(--card-type, var(--blue));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card > p,
.package-card > p {
  margin: 0 0 18px;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.94rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--card-accent, var(--gold));
  content: "";
}

.product-money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  margin-top: 18px;
  padding: 9px 10px;
  border: 1px solid var(--card-money-line, rgba(210, 162, 58, 0.34));
  border-radius: 6px;
  background: var(--card-money-bg, linear-gradient(90deg, rgba(210, 162, 58, 0.12), rgba(15, 143, 97, 0.08)));
}

.product-money span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-money strong {
  color: var(--card-accent, var(--cash));
  font-size: 0.9rem;
}

.product-traction {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px;
  border: 1px solid var(--card-chip-line, var(--line));
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
}

.product-traction div {
  display: grid;
  grid-template-columns: minmax(74px, 0.36fr) 1fr;
  gap: 10px;
  align-items: start;
}

.product-traction dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-traction dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-sample {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(31, 122, 86, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.sample-topbar,
.sample-metrics,
.sample-row {
  display: grid;
  gap: 8px;
}

.sample-topbar {
  grid-template-columns: 1fr;
}

.sample-topbar span,
.sample-metrics span,
.sample-row em,
.product-sample p {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.sample-topbar strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.3;
}

.sample-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-metrics div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(216, 95, 69, 0.14);
  border-radius: 6px;
  background: rgba(255, 246, 232, 0.72);
}

.sample-metrics strong {
  color: var(--card-accent, var(--coral));
  font-size: 1rem;
  line-height: 1;
}

.sample-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(31, 122, 86, 0.13);
  border-radius: 6px;
  background: rgba(248, 250, 246, 0.78);
}

.sample-row span,
.sample-row strong {
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.3;
}

.sample-row strong {
  color: var(--ink);
}

.sample-row-alert {
  border-color: rgba(216, 95, 69, 0.24);
  background: rgba(255, 241, 223, 0.8);
}

.product-sample p {
  margin: 0;
  line-height: 1.4;
}

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

.product-meta span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--ink);
  border: 1px solid var(--card-chip-line, var(--line));
  border-radius: 6px;
  background: var(--card-chip-bg, var(--soft));
  font-size: 0.82rem;
  font-weight: 800;
}

.text-button {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--wine);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(173, 186, 193, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -8px 14px rgba(21, 32, 31, 0.1),
    0 8px 0 rgba(21, 32, 31, 0.07),
    0 12px 20px rgba(21, 32, 31, 0.12);
}

.product-card .text-button {
  color: var(--card-link, var(--wine));
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(183, 197, 203, 0.72));
}

.product-card .text-button:hover,
.product-card .text-button:focus-visible {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    var(--card-link, var(--wine));
  transform: translateY(-2px);
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    var(--wine);
  outline: none;
  transform: translateY(-2px);
}

.packages-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(101, 215, 231, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(15, 143, 97, 0.08), rgba(210, 162, 58, 0.1)),
    #f8faf6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-card.emphasized {
  border-color: rgba(210, 162, 58, 0.54);
  box-shadow: 0 18px 40px rgba(210, 162, 58, 0.18);
}

.package-card .card-actions {
  margin-top: auto;
  padding-top: 18px;
}

.package-note-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.package-note-grid section,
.trust-grid section {
  padding: 22px;
  border: 1px solid rgba(31, 122, 86, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.package-note-grid h3,
.trust-grid h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.package-note-grid p,
.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.price {
  margin: 12px 0 12px;
  color: var(--wine);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.12;
}

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

.process-list li {
  padding: 24px;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 241, 242, 0.86));
  box-shadow: var(--hard-shadow);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.trust-section {
  background:
    linear-gradient(120deg, rgba(255, 241, 223, 0.58), rgba(228, 240, 251, 0.62)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.trust-grid .text-button {
  width: fit-content;
  margin-top: 16px;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(122deg, rgba(8, 12, 12, 0.98), rgba(31, 54, 41, 0.94), rgba(87, 34, 41, 0.94));
}

.contact-section .eyebrow {
  color: #f0c85d;
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-points span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

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

.contact-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(101, 215, 231, 0.08));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.contact-flow span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: rgba(240, 200, 93, 0.18);
  color: #f0c85d;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-flow strong {
  color: var(--white);
  font-size: 0.96rem;
}

.contact-section .contact-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(101, 215, 231, 0.08));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--white);
}

.contact-form input,
.contact-form select {
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7ed7ad;
  outline: 2px solid rgba(126, 215, 173, 0.32);
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #bfe9d3;
}

.site-footer {
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-layout {
  display: grid;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer-top h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
}

.footer-top p {
  max-width: 560px;
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-top a,
.footer-links a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.footer-legal-block h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-legal-block p,
.footer-legal-block li,
.footer-company dd {
  color: var(--muted);
  line-height: 1.75;
}

.footer-legal-block p {
  margin: 0 0 10px;
}

.footer-legal-block ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 1.1rem;
}

.footer-company dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.footer-company dl div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
}

.footer-company dt {
  color: var(--ink);
  font-weight: 900;
}

.footer-company dd {
  margin: 0;
}

.product-dialog {
  width: min(92vw, 760px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(15, 23, 23, 0.62);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.dialog-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 34px;
}

.dialog-body img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
}

.dialog-body h2 {
  margin: 0 48px 12px 0;
  font-size: 2rem;
}

.dialog-details {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.dialog-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.dialog-details dt {
  color: var(--muted);
  font-weight: 900;
}

.dialog-details dd {
  margin: 0;
}

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

  .header-warp-field {
    left: 8px;
    width: 118px;
    opacity: 0.5;
  }

  .comet-a {
    right: 18%;
    width: 64px;
  }

  .comet-b {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .brand-name {
    max-width: 32vw;
    font-size: 1.2rem;
  }

  .site-nav {
    gap: 2px;
    font-size: 0.78rem;
  }

  .site-nav a {
    min-height: 34px;
    padding: 7px 9px;
    transform: none;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .product-orbit {
    min-width: 188px;
  }

  .orbit-c,
  .screen-b,
  .ticker-b,
  .lab-arm,
  .capital-card {
    display: none;
  }

  .deal-board {
    right: 4%;
    bottom: 126px;
    width: 280px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .entry-grid,
  .pattern-grid,
  .sponsor-grid,
  .package-grid,
  .package-note-grid,
  .trust-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    color: var(--ink);
    min-height: 132px;
    padding: 18px 16px 13px;
    background:
      radial-gradient(circle at 18% 20%, rgba(255, 60, 154, 0.48), transparent 12rem),
      radial-gradient(circle at 82% 12%, rgba(52, 213, 255, 0.46), transparent 13rem),
      linear-gradient(180deg, rgba(19, 24, 48, 0.9), rgba(242, 250, 252, 0.92) 58%, rgba(255, 255, 255, 0.94));
  }

  .header-warp-field {
    top: 16px;
    left: auto;
    right: 10px;
    width: 96px;
    height: 52px;
    opacity: 0.42;
  }

  .header-comet {
    display: none;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-core {
    font-size: 1.42rem;
  }

  .brand-name {
    max-width: calc(100vw - 104px);
    font-size: 1.22rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-copy {
    padding: 150px 20px 62px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .product-orbit,
  .hero-screen,
  .deal-board,
  .wealth-ticker,
  .robot-station {
    opacity: 0.42;
  }

  .orbit-a {
    top: 150px;
    right: -82px;
  }

  .orbit-b {
    right: -72px;
    bottom: 78px;
  }

  .orbit-d,
  .screen-a,
  .deal-board,
  .wealth-ticker,
  .lab-arm {
    display: none;
  }

  .robot-station {
    right: -40px;
    top: 210px;
    transform: scale(0.72) rotateY(-10deg) rotateZ(2deg);
  }

  .lab-grid-floor {
    right: -32%;
    width: 116%;
  }

  .section {
    padding: 62px 0;
  }

  .section-inner {
    padding: 0 20px;
  }

  h2 {
    font-size: 2rem;
  }

  .product-grid,
  .entry-grid,
  .pattern-grid,
  .sponsor-grid,
  .package-grid,
  .package-note-grid,
  .trust-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-card,
  .entry-card,
  .pattern-card,
  .sponsor-card,
  .package-card,
  .process-list li,
  .contact-form {
    padding: 18px;
  }

  .dialog-body {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .dialog-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-company dl div {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}
