@font-face {
  font-family: "Lahzeh";
  src: url("fonts/Lahzeh/Lahzeh-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lahzeh";
  src: url("fonts/Lahzeh/Lahzeh-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lahzeh";
  src: url("fonts/Lahzeh/Lahzeh-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #260046;
  --bg-mid: #120021;
  --bg-bottom: #070110;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.72);
  --stroke: rgba(255, 255, 255, 0.1);
  --cta-blue-1: #7c83ff;
  --cta-blue-2: #646bff;
  --cta-blue-3: #4f54ea;
  --card-dark-top: rgba(20, 24, 33, 0.94);
  --card-dark-bottom: rgba(11, 15, 23, 0.98);
  --card-blue-top: rgba(18, 30, 48, 0.96);
  --card-blue-bottom: rgba(10, 17, 29, 0.98);
  --card-amber-top: rgba(54, 39, 10, 0.96);
  --card-amber-bottom: rgba(31, 22, 9, 0.98);
  --text-strong: #f8fafc;
  --text-muted: rgba(226, 232, 240, 0.82);
  --hero-to-actions-gap: 72px;
  --feature-section-gap: 72px;
  --feature-grid-gap: 32px;
  --cta-row-gap: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Lahzeh", system-ui, sans-serif;
  background: #090114;
  color: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
}

svg,
img {
  max-width: 100%;
}

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

.page {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 72px;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(circle at top, rgba(92, 70, 255, 0.28), transparent 32%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.glow-a {
  width: 620px;
  height: 620px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: rgba(86, 55, 255, 0.18);
  animation: floatGlowA 7s ease-in-out infinite;
}

.glow-b {
  width: 240px;
  height: 240px;
  right: 12%;
  top: 18%;
  background: rgba(123, 55, 255, 0.16);
  animation: floatGlowB 10s ease-in-out infinite;
}


.grid-floor {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 34%;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  animation: driftGrid 9s ease-in-out infinite;
}

.meteor-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.meteor {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(167, 139, 250, 0.12) 35%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.24), 0 0 18px rgba(167, 139, 250, 0.16);
  transform-origin: right center;
}

.meteor::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(224, 231, 255, 0.72) 40%, rgba(224, 231, 255, 0) 78%);
}

.ambient-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ambient-orb,
.ambient-line {
  position: absolute;
  pointer-events: none;
}

.ambient-orb {
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0%, rgba(137, 92, 255, 0.14) 38%, rgba(137, 92, 255, 0) 72%);
  filter: blur(2px);
  opacity: 0.7;
  animation: orbFloat 11s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 180px;
  height: 180px;
  top: 17%;
  right: 14%;
  animation-delay: 0s;
}

.ambient-orb-2 {
  width: 120px;
  height: 120px;
  top: 42%;
  left: 11%;
  animation-delay: 1.5s;
}

.ambient-orb-3 {
  width: 88px;
  height: 88px;
  top: 67%;
  right: 27%;
  animation-delay: 3s;
}

.ambient-line {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 116, 255, 0), rgba(124, 116, 255, 0.52), rgba(255, 255, 255, 0));
  opacity: 0.42;
  transform-origin: right center;
  animation: linePulse 8s ease-in-out infinite;
}

.ambient-line-1 {
  width: 220px;
  top: 22%;
  right: 8%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.ambient-line-2 {
  width: 260px;
  top: 55%;
  left: 6%;
  transform: rotate(6deg);
  animation-delay: 1.2s;
}

.ambient-line-3 {
  width: 170px;
  top: 73%;
  right: 22%;
  transform: rotate(-5deg);
  animation-delay: 2.4s;
}

.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0 8px;
}

.brand {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-logo-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, #6f63ff, #4b35ff);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.35);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateY(1px);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header-btn {
  height: 48px;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-btn-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-btn-gold {
  color: #fff;
  border-color: rgba(247, 177, 33, 0.3);
  background: #f7b121;
  box-shadow: 0 10px 30px rgba(247, 177, 33, 0.28);
}

.header-btn-gold:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(125, 116, 255, 0.25);
  border-radius: 999px;
  background: rgba(125, 116, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7c74ff;
  box-shadow: 0 0 20px rgba(124, 116, 255, 0.8);
  animation: blinkRandom 1.7s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  max-width: 320px;
  font-size: 38px;
  line-height: 1.58;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-desc {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-soft);
}

.cta-group {
  width: 100%;
  max-width: 840px;
  margin-top: var(--hero-to-actions-gap);
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--cta-row-gap);
  margin-top: 18px;
}

.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta:hover {
  transform: translateY(-4px) scale(1.02);
}

.cta:hover::before {
  opacity: 1;
}

.cta:hover::after {
  opacity: 0.55;
}

.cta img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.cta span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
}

.cta-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--cta-blue-1), var(--cta-blue-2), var(--cta-blue-3));
  box-shadow: 0 18px 45px rgba(92, 95, 255, 0.35);
}

.cta-primary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 35%, transparent);
}

.cta-primary::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25), transparent 60%);
}

.cta-primary:hover {
  box-shadow: 0 30px 70px rgba(92, 95, 255, 0.55);
}

.cta-secondary {
  color: #fff;
  background: linear-gradient(180deg, rgba(52, 56, 71, 0.95), rgba(22, 25, 35, 0.95));
}

.cta-secondary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%, transparent);
}

.cta-secondary::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 65%);
}

.cta-desktop {
  color: #fff;
  background: linear-gradient(180deg, #ff8a1f, #e06500);
  box-shadow: 0 14px 36px rgba(255, 138, 31, 0.28);
}

.cta-desktop::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%, transparent);
}

.cta-desktop::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 65%);
}

.feature-section {
  width: 100%;
  max-width: none;
  margin-top: var(--feature-section-gap);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 14, 26, 0.72), rgba(8, 11, 20, 0.9));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 32px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(125, 116, 255, 0.22);
  background: rgba(125, 116, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.section-title {
  margin: 0;
  max-width: 620px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 900;
  color: var(--text-strong);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--feature-grid-gap);
  width: 100%;
  align-items: stretch;
}

.feature-card {
  width: 100%;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.rubika-card {
  background: linear-gradient(180deg, var(--card-blue-top), var(--card-blue-bottom));
  border-color: rgba(56, 189, 248, 0.18);
}

.store-card {
  background: linear-gradient(180deg, var(--card-amber-top), var(--card-amber-bottom));
  border-color: rgba(251, 191, 36, 0.22);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 18px;
  width: 100%;
  min-height: 100%;
}

.feature-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.feature-badge-gold {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.24);
  color: #fcd34d;
}

.feature-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
  color: var(--text-strong);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-muted);
}

.store-card h2,
.store-card p {
  color: #fff7ed;
}

.feature-points {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-points li {
  position: relative;
  padding-right: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.feature-points li::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.8;
}

.store-card .feature-points li {
  color: #fde68a;
}

.feature-cta,
.feature-cta-gold {
  margin-top: auto;
}

.feature-cta {
  min-height: 56px;
  min-width: 240px;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.26);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  align-self: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.feature-cta-rubika {
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.feature-cta-gold {
  min-height: 56px;
  min-width: 240px;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #ea580c);
  box-shadow: 0 16px 38px rgba(234, 88, 12, 0.28);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-cta-gold img {
  filter: brightness(0) invert(1);
}

.feature-cta span,
.feature-cta-gold span {
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.feature-cta:hover,
.feature-cta-gold:hover {
  transform: translateY(-2px);
}

@keyframes blinkRandom {
  0% { opacity: 0.25; }
  18% { opacity: 1; }
  41% { opacity: 0.35; }
  63% { opacity: 0.95; }
  100% { opacity: 0.2; }
}

@keyframes floatGlowA {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 18px)) scale(1.04); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes floatGlowB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, 10px, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes driftGrid {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes orbFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(-8px, -14px, 0) scale(1.08); opacity: 0.78; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
}

@keyframes linePulse {
  0% { opacity: 0.14; }
  50% { opacity: 0.48; }
  100% { opacity: 0.14; }
}

@media (max-width: 767px) {
  .page {
    width: min(100%, calc(100% - 40px));
    padding-bottom: 64px;
  }

  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 8px;
  }

  .brand {
    width: auto;
    height: 54px;
    padding: 0 16px;
    justify-content: center;
    gap: 10px;
  }

  .brand-title {
    font-size: 14px;
    text-align: center;
    transform: none;
  }

  .brand-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 12px 0 32px;
  }

  .eyebrow {
    margin-bottom: 18px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.34;
    letter-spacing: -0.035em;
  }

  .hero-desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
    max-width: 100%;
    padding: 0;
  }

  .cta-group {
    margin-top: 56px;
  }

  .cta-row {
    gap: 16px;
    margin-top: 16px;
  }

  .feature-section {
    margin-top: 28px;
    width: 100%;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.6;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    min-height: unset;
    padding: 24px;
    border-radius: 24px;
  }

  .feature-card-content {
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .feature-top {
    align-items: center;
    text-align: center;
  }

  .feature-badge {
    align-self: center;
  }

  .feature-card h2 {
    font-size: 20px;
    line-height: 1.65;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.95;
  }

  .feature-points {
    gap: 8px;
  }

  .feature-points li {
    padding-right: 0;
    padding-top: 14px;
    font-size: 13px;
    text-align: center;
  }

  .feature-points li::before {
    right: 50%;
    top: 0;
    transform: translateX(50%);
  }

  .feature-cta,
  .feature-cta-gold {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    align-self: center;
  }
}

@media (min-width: 768px) {
  .page {
    width: min(1320px, calc(100% - 64px));
  }

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }

  .header-actions {
    display: flex;
  }

  .hero-title {
    max-width: 1100px;
    font-size: 60px;
    line-height: 1.4;
  }

  .hero-desc {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
  }

  .cta {
    min-height: 70px;
    padding: 14px 20px;
    border-radius: 24px;
  }

  .cta span {
    font-size: 18px;
    font-weight: 700;
  }

  .cta-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--cta-row-gap);
    margin-top: 18px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 82px;
  }
}

.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0 8px;
}

.brand {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-logo-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, #6f63ff, #4b35ff);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.35);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateY(1px);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header-btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-btn-dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-btn-dark:hover {
  background: rgba(255,255,255,0.1);
}

.header-btn-gold {
  color: #fff;
  border-color: rgba(247, 177, 33, 0.3);
  background: #f7b121;
  box-shadow: 0 10px 30px rgba(247, 177, 33, 0.28);
}

.header-btn-gold:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(125, 116, 255, 0.25);
  border-radius: 999px;
  background: rgba(125, 116, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7c74ff;
  box-shadow: 0 0 20px rgba(124, 116, 255, 0.8);
  animation: blinkRandom 1.7s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  max-width: 320px;
  font-size: 42px;
  line-height: 1.58;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-desc {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-soft);
}

.cta-group {
  width: 100%;
  max-width: 840px;
  margin-top: 42px;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta:hover {
  transform: translateY(-4px) scale(1.02);
}

.cta:hover::before {
  opacity: 1;
}

.cta:hover::after {
  opacity: 0.55;
}

.cta img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.cta span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
}

.cta-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--cta-blue-1), var(--cta-blue-2), var(--cta-blue-3));
  box-shadow: 0 18px 45px rgba(92, 95, 255, 0.35);
}

.cta-primary::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 35%, transparent);
}

.cta-primary::after {
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
}

.cta-primary:hover {
  box-shadow: 0 30px 70px rgba(92, 95, 255, 0.55);
}

.cta-secondary {
  color: #fff;
  background: linear-gradient(180deg, rgba(52,56,71,0.95), rgba(22,25,35,0.95));
}

.cta-secondary::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%, transparent);
}

.cta-secondary::after {
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 65%);
}

.cta-desktop {
  color: #fff;
  background: linear-gradient(180deg, #ff8a1f, #e06500);
  box-shadow: 0 14px 36px rgba(255, 138, 31, 0.28);
}

.cta-desktop::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%, transparent);
}

.cta-desktop::after {
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 65%);
}

.feature-section {
  width: 100%;
  max-width: none;
  margin-top: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.feature-card {
  width: 100%;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.rubika-card {
  background: linear-gradient(180deg, var(--card-blue-top), var(--card-blue-bottom));
  border-color: rgba(56, 189, 248, 0.18);
}

.store-card {
  background: linear-gradient(180deg, var(--card-amber-top), var(--card-amber-bottom));
  border-color: rgba(251, 191, 36, 0.22);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 18px;
  width: 100%;
  min-height: 100%;
}

.feature-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
}

.feature-badge-gold {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.24);
  color: #fcd34d;
}

.feature-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
  color: var(--text-strong);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-muted);
}

.store-card h2,
.store-card p {
  color: #fff7ed;
}

.feature-points {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-points li {
  position: relative;
  padding-right: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.feature-points li::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.8;
}

.store-card .feature-points li {
  color: #fde68a;
}

.feature-cta,
.feature-cta-gold {
  margin-top: auto;
}

.feature-cta {
  min-height: 54px;
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-accent), var(--blue-accent-2));
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.22);
  font-size: 16px;
  font-weight: 700;
  color: #082f49;
  align-self: flex-start;
}

.feature-cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.feature-cta-rubika {
  background: linear-gradient(180deg, #00c3ff, #0069d9);
}

.feature-cta-gold {
  background: linear-gradient(180deg, #ecc91c, #f7b40b);
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.25);
  color: #3a2200;
  border: 1px solid rgba(255,255,255,0.08);
}

.feature-cta-gold img {
  filter: none;
}

.feature-cta span,
.feature-cta-gold span {
  line-height: 1;
  white-space: nowrap;
}

@keyframes blinkRandom {
  0% { opacity: 0.25; }
  18% { opacity: 1; }
  41% { opacity: 0.35; }
  63% { opacity: 0.95; }
  100% { opacity: 0.2; }
}

@keyframes floatGlowA {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 18px)) scale(1.04); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes floatGlowB {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(14px,10px,0) scale(1.06); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes driftGrid {
  0% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,10px,0); }
  100% { transform: translate3d(0,0,0); }
}

@media (max-width: 767px) {
  .page {
    width: min(100%, calc(100% - 40px));
    padding-bottom: 64px;
  }

  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 8px;
  }

  .brand {
    width: auto;
    height: 54px;
    padding: 0 16px;
    justify-content: center;
    gap: 10px;
  }

  .brand-title {
    font-size: 14px;
    text-align: center;
    transform: none;
  }

  .brand-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 12px 0 32px;
  }

  .eyebrow {
    margin-bottom: 18px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.34;
    letter-spacing: -0.035em;
  }

  .hero-desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
    max-width: 100%;
    padding: 0;
  }

  .feature-section {
    margin-top: 24px;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    min-height: unset;
    padding: 24px;
    border-radius: 24px;
  }

  .feature-card-content {
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .feature-top {
    align-items: center;
    text-align: center;
  }

  .feature-badge {
    align-self: center;
  }

  .feature-card h2 {
    font-size: 20px;
    line-height: 1.65;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.95;
  }

  .feature-points {
    gap: 8px;
  }

  .feature-points li {
    padding-right: 0;
    padding-top: 14px;
    font-size: 13px;
    text-align: center;
  }

  .feature-points li::before {
    right: 50%;
    top: 0;
    transform: translateX(50%);
  }

  .feature-cta {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    align-self: center;
  }
}

@media (min-width: 768px) {
  .page {
    width: min(1320px, calc(100% - 64px));
  }

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }

  .header-actions {
    display: flex;
  }

  .hero-title {
    max-width: 1100px;
    font-size: 60px;
    line-height: 1.4;
  }

  .hero-desc {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
  }

  .cta {
    min-height: 70px;
    padding: 14px 20px;
    border-radius: 24px;
  }

  .cta span {
    font-size: 18px;
    font-weight: 700;
  }

  .cta-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 82px;
  }
}