:root {
  --bg: #050912;
  --bg-soft: rgba(8, 16, 27, 0.85);
  --panel: rgba(8, 15, 24, 0.92);
  --panel-strong: #09111b;
  --line: rgba(184, 255, 51, 0.22);
  --line-strong: rgba(184, 255, 51, 0.48);
  --text: #f4f7fb;
  --muted: #98a3b4;
  --accent: #b4ff31;
  --accent-strong: #7dff3a;
  --accent-soft: rgba(180, 255, 49, 0.14);
  --shadow: 0 0 35px rgba(124, 255, 53, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
  --block-a-start: #050505;
  --block-a-end: #000000;
  --block-b-start: #ffffff;
  --block-b-end: #f2f3f5;
  --surface-one: #050505;
  --surface-two: #ffffff;
  --checker-light: rgba(255, 255, 255, 0.045);
  --checker-dark: rgba(255, 255, 255, 0.018);
  --card-a-start: rgba(10, 19, 30, 0.94);
  --card-a-end: rgba(5, 11, 20, 0.98);
  --card-b-start: rgba(245, 246, 248, 0.98);
  --card-b-end: rgba(226, 229, 233, 0.98);
  --card-one: rgba(10, 20, 34, 0.94);
  --card-two: rgba(245, 246, 248, 0.98);
  --card-checker-light: rgba(255, 255, 255, 0.04);
  --card-checker-dark: rgba(255, 255, 255, 0.016);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(35, 73, 122, 0.28), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(124, 255, 53, 0.12), transparent 18%),
    linear-gradient(180deg, #02050b 0%, #050913 48%, #03070f 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.85;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.site-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  padding-top: 76px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 20, 0.98) 0%, rgba(5, 9, 18, 0.95) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

[id] {
  scroll-margin-top: 96px;
}

.topbar,
.hero,
.stats,
.section-grid,
.investment-block,
.footer {
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 0%, rgba(180, 255, 49, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(4, 8, 15, 0.96), rgba(8, 16, 25, 0.9));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar__menu {
  width: 46px;
  height: 42px;
  display: none;
  align-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid rgba(180, 255, 49, 0.22);
  border-radius: 13px;
  background: rgba(180, 255, 49, 0.08);
  color: var(--text);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.topbar__menu span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.topbar__menu:hover {
  transform: translateY(-1px);
  border-color: rgba(180, 255, 49, 0.42);
  background: rgba(180, 255, 49, 0.13);
}

.topbar__menu.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar__menu.is-active span:nth-child(2) {
  opacity: 0;
}

.topbar__menu.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar__language {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.topbar__language span {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar__language select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.topbar__language option {
  color: #07101a;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 16px rgba(180, 255, 49, 0.1);
  font-size: 1.15rem;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(-1px, -2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}

.brand__text {
  display: grid;
  font-family: "Rajdhani", sans-serif;
  line-height: 0.92;
  letter-spacing: 0.05em;
}

.brand__text strong {
  font-size: 1.4rem;
}

.brand__text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.topnav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topnav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.topnav a {
  color: rgba(255, 255, 255, 0.85);
}

.topnav > a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.topnav > a:hover {
  transform: translateX(3px);
  border-color: rgba(180, 255, 49, 0.22);
  background: rgba(180, 255, 49, 0.08);
  color: var(--text);
}

.topnav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.topnav__actions .button {
  width: auto;
  min-height: 42px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, #97ff3f 0%, #66cf18 100%);
  color: #08100f;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  box-shadow: 0 12px 30px rgba(120, 255, 60, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 32px rgba(120, 255, 60, 0.26);
}

.button--secondary,
.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button--ghost {
  min-height: 44px;
  padding-inline: 18px;
  border-color: var(--line-strong);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(18px, 3.5vw, 54px);
  min-height: calc(100vh - 76px);
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(40px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(2, 5, 12, 0.98) 0%, rgba(3, 7, 14, 0.88) 31%, rgba(3, 8, 14, 0.54) 57%, rgba(3, 8, 13, 0.16) 100%),
    radial-gradient(circle at 73% 25%, rgba(255, 198, 95, 0.82), rgba(255, 137, 41, 0.28) 12%, transparent 25%),
    radial-gradient(ellipse at 66% 23%, rgba(255, 244, 176, 0.34), transparent 29%),
    linear-gradient(180deg, #0a1625 0%, #17293a 34%, #6d5944 50%, #0c151c 51%, #02060d 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(168deg, transparent 0 42%, rgba(255, 255, 255, 0.2) 43%, transparent 47%),
    linear-gradient(12deg, transparent 0 54%, rgba(255, 220, 152, 0.2) 55%, transparent 63%),
    radial-gradient(ellipse at 73% 31%, rgba(255, 220, 145, 0.38), transparent 29%),
    radial-gradient(ellipse at 53% 21%, rgba(56, 83, 105, 0.45), transparent 31%);
  filter: blur(1px);
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 43%;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.18), rgba(2, 5, 10, 0.96) 72%),
    repeating-linear-gradient(178deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, #071018, #03070c 54%, #010308);
  clip-path: polygon(0 35%, 34% 29%, 58% 20%, 100% 28%, 100% 100%, 0 100%);
}

.hero__content {
  align-self: center;
  z-index: 3;
  max-width: 590px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.58);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1,
.section-copy h2,
.calculator h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.9rem, 5.1vw, 5.5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero__lead,
.section-copy p,
.accordion__content p,
.footer__brand p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  max-width: 500px;
  margin: 16px 0 22px;
  color: rgba(239, 246, 255, 0.88);
}

.hero__assist {
  max-width: 530px;
  margin: 0 0 24px;
  color: rgba(229, 238, 246, 0.84);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.crypto-strip {
  margin-top: 30px;
}

.crypto-strip span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.crypto-strip__icons {
  display: flex;
  gap: 12px;
}

.crypto-strip__icons i,
.coin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe07b, #f49800);
  color: #231a00;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 195, 0, 0.3);
}

.crypto-strip__icons i:nth-child(2) {
  background: radial-gradient(circle at 30% 30%, #b7d0ff, #5574d6);
  color: #0e1533;
}

.crypto-strip__icons i:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #bfffe1, #00d47b);
  color: #042315;
}

.hero__visual {
  z-index: 2;
  min-height: clamp(470px, 43vw, 660px);
}

.hero__scene {
  --farm-width: clamp(560px, 58vw, 920px);
  --panel-width: clamp(330px, 32vw, 510px);
  position: relative;
  isolation: isolate;
  height: 100%;
  min-height: clamp(470px, 43vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(6, 12, 18, 0.3), rgba(6, 12, 18, 0.68)),
    radial-gradient(circle at top right, rgba(255, 191, 91, 0.16), transparent 24%),
    #07111a;
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 15, 24, 0.06) 0%, rgba(8, 15, 24, 0.36) 100%),
    radial-gradient(circle at 78% 12%, rgba(255, 192, 82, 0.22), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(7, 13, 22, 0.4), transparent 34%);
  pointer-events: none;
}

.hero__scene > :not(.hero__photo) {
  display: none;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.06), rgba(5, 10, 16, 0.24)),
    url("hero-photo.png") center center / cover no-repeat;
}

.hero__glow {
  position: absolute;
  inset: 0 -12% 8% -6%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 58% 50%, rgba(101, 255, 57, 0.15), transparent 31%),
    radial-gradient(ellipse at 71% 22%, rgba(255, 188, 87, 0.22), transparent 19%),
    linear-gradient(180deg, transparent 0%, rgba(2, 6, 10, 0.24) 100%);
}

.hero__windmill {
  position: absolute;
  z-index: 2;
  top: clamp(56px, 9%, 80px);
  width: 5px;
  height: clamp(150px, 17vw, 215px);
  background: linear-gradient(180deg, rgba(225, 238, 241, 0.88), rgba(76, 91, 100, 0.42));
  border-radius: 99px;
  opacity: 0.68;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.32));
}

.hero__windmill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(225, 238, 241, 0.8);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
}

.hero__windmill span,
.hero__windmill span::before,
.hero__windmill span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 25px;
  width: 3px;
  height: clamp(46px, 7vw, 72px);
  border-radius: 99px;
  transform-origin: center top;
  background: linear-gradient(180deg, rgba(231, 240, 242, 0.9), rgba(101, 119, 127, 0.42));
}

.hero__windmill span {
  animation: spin 9s linear infinite;
}

.hero__windmill span::before {
  transform: translateX(-50%) rotate(120deg);
}

.hero__windmill span::after {
  transform: translateX(-50%) rotate(240deg);
}

.hero__windmill--left {
  left: clamp(56px, 14%, 156px);
}

.hero__windmill--right {
  right: clamp(96px, 18%, 190px);
  top: clamp(82px, 15%, 120px);
  transform: scale(0.78);
}

.hero__farm {
  position: absolute;
  right: clamp(-44px, -2vw, 16px);
  bottom: clamp(104px, 17%, 142px);
  z-index: 4;
  width: var(--farm-width);
  height: clamp(250px, 27vw, 365px);
  transform: perspective(1200px) rotateY(-17deg) rotateX(1deg);
  transform-origin: right bottom;
}

.farm-container {
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(164, 198, 194, 0.14);
  border-radius: 4px 14px 8px 4px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 16%, rgba(255, 255, 255, 0.04) 17%, transparent 19%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 35px),
    linear-gradient(180deg, rgba(21, 33, 39, 0.98), rgba(5, 11, 15, 0.99));
  box-shadow:
    -28px 34px 58px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -22px 48px rgba(0, 0, 0, 0.36);
}

.farm-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 14%),
    radial-gradient(ellipse at 28% 70%, rgba(112, 255, 54, 0.1), transparent 35%);
  pointer-events: none;
}

.farm-container--rear {
  right: 58%;
  width: 34%;
  height: 70%;
  opacity: 0.72;
}

.farm-container--mid {
  right: 29%;
  width: 39%;
  height: 77%;
  opacity: 0.84;
}

.farm-container--front {
  right: 0;
  width: 47%;
  height: 90%;
}

.farm-container__brand {
  position: absolute;
  left: clamp(22px, 5%, 34px);
  top: clamp(18px, 8%, 28px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  color: rgba(247, 255, 246, 0.92);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(180, 255, 49, 0.2);
}

.farm-container__brand span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(180, 255, 49, 0.14);
  color: var(--accent);
  border: 1px solid rgba(180, 255, 49, 0.34);
}

.farm-container__brand strong,
.farm-container__brand em {
  display: block;
  font-style: normal;
}

.farm-container__brand em {
  color: rgba(180, 255, 49, 0.72);
}

.mining-rack {
  position: absolute;
  left: clamp(22px, 5%, 34px);
  right: clamp(24px, 7%, 44px);
  bottom: clamp(22px, 8%, 34px);
  height: 56%;
  border: 1px solid rgba(180, 255, 49, 0.2);
  border-radius: 4px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(180, 255, 49, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(2, 10, 11, 0.98), rgba(1, 5, 8, 0.98));
  box-shadow:
    inset 0 0 22px rgba(180, 255, 49, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.32);
}

.mining-rack__grid {
  position: absolute;
  inset: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(6px, 1vw, 12px);
}

.mining-rack__grid span {
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 48%, rgba(191, 255, 72, 0.72), rgba(116, 191, 40, 0.2) 35%, rgba(5, 21, 12, 0.96) 70%),
    linear-gradient(180deg, rgba(24, 50, 24, 0.94), rgba(7, 16, 12, 0.98));
  border: 1px solid rgba(180, 255, 49, 0.26);
  box-shadow:
    inset 0 0 16px rgba(180, 255, 49, 0.24),
    0 0 12px rgba(120, 255, 39, 0.12);
  animation: pulse 2.8s ease-in-out infinite;
}

.mining-rack__grid span:nth-child(odd) {
  animation-delay: 0.7s;
}

.solar-panel {
  position: absolute;
  right: clamp(-34px, -2vw, 10px);
  bottom: clamp(42px, 7%, 68px);
  z-index: 5;
  width: var(--panel-width);
  aspect-ratio: 440 / 150;
  transform: perspective(760px) rotateX(58deg) rotateZ(-4deg) skewX(-15deg);
  transform-origin: center bottom;
  border-radius: 5px;
  border: 1px solid rgba(105, 151, 223, 0.55);
  background:
    repeating-linear-gradient(100deg, transparent 0 43px, rgba(111, 157, 229, 0.46) 43px 45px),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(120, 170, 242, 0.28) 28px 29px),
    linear-gradient(115deg, rgba(23, 61, 119, 0.95), rgba(7, 27, 69, 0.98) 62%, rgba(4, 18, 49, 0.98));
  box-shadow:
    -22px 24px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.coin {
  position: absolute;
  color: #2b1d00;
  animation: float 5.5s ease-in-out infinite;
}

.hero__scene .coin {
  z-index: 6;
  width: clamp(38px, 3.8vw, 54px);
  height: clamp(38px, 3.8vw, 54px);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  box-shadow:
    0 0 26px rgba(255, 190, 28, 0.58),
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.coin--one {
  left: clamp(-34px, -4%, 8px);
  bottom: clamp(160px, 34%, 232px);
}

.coin--two {
  right: clamp(16px, 4%, 58px);
  top: clamp(78px, 15%, 118px);
  animation-delay: 0.8s;
}

.coin--three {
  right: clamp(335px, 44%, 455px);
  bottom: clamp(190px, 37%, 265px);
  animation-delay: 1.7s;
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 32px;
}

.stats .stat-card,
.stats .stat-card:nth-child(-n + 2) {
  grid-column: auto;
  text-align: center;
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}
.stats .stat-card__icon { margin-inline: auto; }

.stat-card,
.calculator,
.plan-card,
.accordion__item,
.map-card,
.faq__visual,
.footer {
  background: rgba(7, 13, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

.stat-card,
.plan-card,
.accordion__item,
.map-card,
.faq__visual,
.farm-card,
.auth-benefits__card,
.auth-panel {
  --card-start: var(--card-a-start);
  --card-end: var(--card-a-end);
  position: relative;
  overflow: hidden;
  background: var(--card-start);
}

.stat-card:nth-child(even),
.plan-card:nth-child(even),
.accordion__item:nth-child(even),
.farm-card:nth-child(even),
.auth-benefits__card:nth-child(even) {
  --card-start: var(--card-b-start);
  --card-end: var(--card-b-end);
}

.stat-card {
  padding: 22px;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.015);
}

.stat-card__icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(180, 255, 49, 0.22);
  border-radius: 16px;
  background: rgba(180, 255, 49, 0.08);
  box-shadow:
    inset 0 0 18px rgba(180, 255, 49, 0.05),
    0 10px 26px rgba(0, 0, 0, 0.18);
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  width: 100%;
  text-align: center;
  font-variant-numeric: tabular-nums lining-nums;
}

.stat-card strong,
.plan-card__name,
.data-centers strong,
.footer__column strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card p,
.plan-card li,
.data-centers__item,
.footer__column a,
.footer__column span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-copy {
  padding: 18px 6px 18px 0;
}

.section-copy h2,
.calculator h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #dce6f0;
}

.check-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent);
}

.map-card {
  position: relative;
  min-height: 360px;
  padding: 22px;
  overflow: hidden;
}

.map-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 72%, rgba(124, 255, 53, 0.13), transparent 30%);
}

.map-card__network {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 28px 24px 138px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 60%, rgba(18, 44, 54, 0.25), transparent 38%),
    linear-gradient(180deg, rgba(5, 12, 18, 0.12), rgba(5, 12, 18, 0));
}

.map-card__network svg {
  width: 100%;
  height: 100%;
}

.kazakhstan-map {
  width: min(100%, 640px);
  height: auto;
  overflow: visible;
}

.kazakhstan-map__shadow {
  fill: rgba(124, 255, 53, 0.08);
  transform: translate(-2px, 14px) scale(1.01);
  filter: blur(14px);
}

.kazakhstan-map__shape {
  fill: rgba(14, 29, 40, 0.92);
  stroke: rgba(151, 255, 90, 0.38);
  stroke-width: 2.2;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.kazakhstan-map__grid path {
  fill: none;
  stroke: rgba(151, 255, 90, 0.12);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.kazakhstan-map__point {
  fill: #b8ff31;
  opacity: 0.96;
  stroke: rgba(232, 255, 187, 0.9);
  stroke-width: 2;
}

.data-centers {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  min-width: 180px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(10, 16, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-centers__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.data-centers__item i {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(180, 255, 49, 0.15));
}

.investment-block {
  display: grid;
  gap: 26px;
  margin-top: 18px;
  padding-top: 28px;
  padding-bottom: 32px;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--surface-two);
}

.calculator {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.farm-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 34px 8px;
}

.farm-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.015);
}

.farm-card h3 {
  margin: 0 0 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.farm-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.farm-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #dce6f0;
}

.calculator__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.calculator__result {
  text-align: right;
}

.calculator__result span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.calculator__result strong {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--accent);
  text-shadow: 0 0 20px rgba(180, 255, 49, 0.18);
}

.calculator__form {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr auto;
  gap: 14px;
  margin-top: 22px;
}

.calculator__form--simple {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr) auto;
  align-items: end;
}

.calculator__result-table {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(180, 255, 49, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(126, 255, 36, 0.08), rgba(4, 9, 15, 0.96) 55%),
    rgba(5, 9, 16, 0.88);
  box-shadow: 0 18px 46px rgba(95, 255, 36, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.calculator__result-table[hidden] {
  display: none;
}

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

.calculator__result-title {
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator__result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator__result-row span {
  color: var(--muted);
}

.calculator__result-row strong {
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
}

.calculator__result-row b {
  color: var(--accent);
  font-weight: 700;
}

.calculator__note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.calculator label {
  display: grid;
  gap: 8px;
}

.calculator label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

select,
input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(5, 9, 16, 0.94);
  color: var(--text);
  outline: none;
}

select:focus,
input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(180, 255, 49, 0.12);
}

.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
}

.stepper__btn {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.plans {
  padding: 0;
}

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

.plan-card {
  padding: 22px 20px;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 255, 49, 0.36);
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin: 8px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 0.9;
}

.plan-card p {
  margin: 6px 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.plan-card--featured {
  border-color: rgba(180, 255, 49, 0.42);
  box-shadow: none;
}

.calculator .eyebrow,
.plans > .eyebrow {
  color: #0b2340;
}

.plan-card h3 {
  color: #8cff24;
  text-shadow: 0 0 14px rgba(140, 255, 36, 0.2);
}

.plans__grid .plan-card:nth-child(odd) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.075);
}

.plans__grid .plan-card:nth-child(odd) p,
.plans__grid .plan-card:nth-child(odd) ul {
  color: var(--muted);
}

.plans__grid .plan-card:nth-child(even) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
  color: var(--text);
}

.plans__grid .plan-card--featured {
  box-shadow: none;
}

.faq {
  padding-top: 14px;
  padding-bottom: 34px;
  align-items: stretch;
}

.auth {
  padding-top: 6px;
  padding-bottom: 34px;
  align-items: start;
}

.auth-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-benefits__card,
.auth-panel {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

.auth-benefits__card {
  padding: 18px 20px;
}

.auth-benefits__card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-benefits__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.auth-panel {
  padding: 24px;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.02);
}

.auth-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-bottom: 18px;
}

.auth-tabs__button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.auth-tabs__button.is-active {
  color: #08100f;
  border-color: rgba(180, 255, 49, 0.45);
  background: linear-gradient(180deg, #97ff3f 0%, #66cf18 100%);
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.is-active {
  display: grid;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.auth-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
}

.auth-status.is-success {
  color: var(--accent);
}

.auth-status.is-error {
  color: #ff7676;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  overflow: hidden;
}

.accordion__trigger {
  position: relative;
  width: 100%;
  padding: 18px 56px 18px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 500;
}

.accordion__trigger::after,
.accordion__trigger::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.accordion__trigger::before {
  transform: translateY(-50%) rotate(90deg);
}

.accordion__item.is-open .accordion__trigger::before {
  transform: translateY(-50%) rotate(0deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.accordion__item.is-open .accordion__content {
  max-height: 420px;
}

.accordion__content p {
  padding: 0 18px 18px;
  margin: 0;
}

.faq__visual {
  position: relative;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  background:
    linear-gradient(rgba(180, 255, 49, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 49, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 65% 55%, rgba(111, 255, 45, 0.1), transparent 34%),
    rgba(7, 18, 30, 0.98);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.48), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.faq__image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.faq__visual:hover .faq__image {
  transform: scale(1.035);
}

.faq__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 10%, rgba(180, 255, 49, 0.04) 48%, transparent 70%);
}

.rig-illustration {
  position: relative;
  width: 100%;
  height: 100%;
}

.rig-illustration__body {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 3;
  width: min(430px, 56%);
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(35, 49, 61, 0.98), rgba(12, 22, 32, 0.98));
  border: 1px solid rgba(180, 255, 49, 0.2);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.5),
    0 0 45px rgba(180, 255, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rig-illustration__body::selection { background: transparent; }

.rig-illustration__body::before,
.rig-illustration__body::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.rig-illustration__body::before {
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: transparent;
}

.rig-illustration__body::after {
  left: 28px;
  right: 28px;
  bottom: -10px;
  height: 10px;
  border-radius: 0 0 8px 8px;
}

.rig-illustration__fan {
  position: absolute;
  top: 39px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 8px solid rgba(190, 207, 220, 0.28);
  background: radial-gradient(circle, #08111b 0 20%, #172634 21% 42%, #08111b 43%);
  box-shadow: inset 0 0 0 5px rgba(180, 255, 49, 0.08), 0 0 22px rgba(0, 0, 0, 0.5);
}

.rig-illustration__fan--one { left: 38px; }
.rig-illustration__fan--two { left: 168px; }

.rig-illustration__fan::before,
.rig-illustration__fan::after {
  content: "";
  position: absolute;
  inset: 12px 40px;
  border-radius: 999px;
  background: rgba(220, 228, 236, 0.34);
}

.rig-illustration__fan::after {
  transform: rotate(90deg);
}

.rig-illustration__label {
  position: absolute;
  left: 50%;
  top: 34px;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.rig-illustration__label strong { color: var(--accent); }

.rig-illustration__status {
  position: absolute;
  right: 30px;
  top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 8px;
}

.rig-illustration__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.rig-illustration__status span {
  grid-column: 1 / -1;
  margin-top: 34px;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.rig-illustration__glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 430px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(180, 255, 49, 0.12);
  filter: blur(55px);
}

.rig-illustration__base {
  position: absolute;
  left: 50%;
  top: calc(54% + 104px);
  z-index: 2;
  width: min(520px, 68%);
  height: 54px;
  transform: translateX(-50%) perspective(220px) rotateX(58deg);
  border: 1px solid rgba(180, 255, 49, 0.22);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 255, 49, 0.16), rgba(8, 17, 26, 0.1) 66%);
  box-shadow: 0 0 35px rgba(180, 255, 49, 0.12);
}

.rig-illustration__metric {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(180, 255, 49, 0.18);
  border-radius: 12px;
  background: rgba(5, 14, 23, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.rig-illustration__metric span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.rig-illustration__metric strong {
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
}

.rig-illustration__metric--power { left: 7%; top: 32%; }
.rig-illustration__metric--temp { right: 6%; bottom: 16%; }

.rig-illustration__beam {
  position: absolute;
  z-index: 2;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 8px rgba(180, 255, 49, 0.55);
}

.rig-illustration__beam::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.rig-illustration__beam--one {
  left: 20%;
  top: 44%;
  width: 18%;
  transform: rotate(12deg);
}

.rig-illustration__beam--two {
  right: 18%;
  bottom: 34%;
  width: 17%;
  transform: rotate(196deg);
}

@media (max-width: 600px) {
  .rig-illustration__body { width: 78%; height: 168px; }
  .rig-illustration__fan { top: 34px; width: 96px; height: 96px; }
  .rig-illustration__fan--one { left: 24px; }
  .rig-illustration__fan--two { left: 132px; }
  .rig-illustration__metric { min-width: 108px; padding: 9px 10px; }
  .rig-illustration__metric--power { left: 3%; top: 20%; }
  .rig-illustration__metric--temp { right: 3%; bottom: 8%; }
}

.coin--faq-one {
  left: 80px;
  top: 62px;
}

.coin--faq-two {
  right: 92px;
  top: 38px;
  animation-delay: 1.2s;
}

.coin--faq-three {
  left: 190px;
  bottom: 44px;
  animation-delay: 0.6s;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 24px;
  margin: 0 34px 34px;
  padding: 24px;
}

.stats,
.section-grid,
.farm-specs,
.investment-block,
.footer {
  --block-start: var(--block-a-start);
  --block-end: var(--block-a-end);
  position: relative;
  isolation: isolate;
  margin: 18px 34px 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 28px;
  background: var(--block-start);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.about,
.faq {
  --block-start: var(--block-a-start);
  --block-end: var(--block-a-end);
  --checker-light: rgba(180, 255, 49, 0.058);
  --checker-dark: rgba(255, 255, 255, 0.018);
}

.stats,
.farm-specs,
.footer {
  --block-start: var(--block-b-start);
  --block-end: var(--block-b-end);
}

.stats,
.farm-specs,
.faq {
  --block-start: var(--surface-one);
}

.about,
.investment-block,
.footer {
  --block-start: var(--surface-two);
}

.about,
.investment-block,
.footer {
  color: #11151a;
}

.about h2,
.about p,
.about li,
.investment-block > h2,
.investment-block > p,
.footer p,
.footer strong,
.footer a,
.footer span {
  color: inherit;
}

.about .eyebrow,
.investment-block > .eyebrow,
.footer__brand p {
  color: #5f6873;
}

.footer {
  --block-start: #071321;
  --block-end: #030a12;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.footer__brand p,
.footer__column a,
.footer__column span {
  color: var(--muted);
}

.footer__column strong {
  color: var(--text);
}

.stat-card,
.farm-card,
.plan-card,
.accordion__item,
.auth-benefits__card {
  --card-start: var(--card-one);
}

.stat-card:nth-child(even),
.farm-card:nth-child(even),
.plan-card:nth-child(even),
.accordion__item:nth-child(even),
.auth-benefits__card:nth-child(even) {
  --card-start: var(--card-two);
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}

.stats .stat-card:nth-child(n) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}

.farm-card:nth-child(2),
.farm-card:nth-child(4) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}

.plan-card:nth-child(n) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}

.accordion__item:nth-child(n) {
  --card-start: var(--card-one);
  --card-end: var(--card-a-end);
}

.footer {
  margin-bottom: 34px;
}

.footer__column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.reveal {
  opacity: 0;
  transition:
    transform 0.85s cubic-bezier(0.2, 0.7, 0, 1),
    opacity 0.85s ease;
}

.reveal-left {
  transform: translateX(-44px);
}

.reveal-right {
  transform: translateX(44px);
}

.reveal-up {
  transform: translateY(44px);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
    box-shadow: inset 0 0 14px rgba(180, 255, 49, 0.14);
  }
  50% {
    opacity: 1;
    box-shadow:
      inset 0 0 14px rgba(180, 255, 49, 0.32),
      0 0 16px rgba(180, 255, 49, 0.18);
  }
}

@keyframes spin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes blink {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (max-width: 1180px) {
  .hero,
  .section-grid,
  .farm-specs,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .topbar__actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .topbar__menu {
    display: grid;
  }

  .topnav {
    position: fixed;
    top: 76px;
    right: clamp(22px, 5vw, 72px);
    z-index: 90;
    width: min(420px, calc(100vw - 44px));
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(180, 255, 49, 0.2);
    border-top: 0;
    border-radius: 0 0 24px 24px;
    background:
      linear-gradient(180deg, rgba(6, 13, 22, 0.98), rgba(7, 16, 26, 0.94));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .topnav > a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 13px;
  }

  .topnav__actions {
    display: grid;
    margin-left: 0;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topnav__actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
  }

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

  .calculator__form--simple .button {
    grid-column: 1 / -1;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__scene {
    min-height: 430px;
  }

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

  .map-card__network {
    padding-left: 104px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0;
  }

  .site-frame {
    padding-top: 68px;
  }

  .topbar,
  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer {
    margin: 14px 18px 0;
    padding: 18px;
    border-radius: 22px;
  }

  .hero {
    padding-top: 24px;
  }

  .topbar {
    min-height: 68px;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .topbar .brand {
    gap: 10px;
  }

  .topbar .brand__mark {
    width: 36px;
    height: 36px;
  }

  .topbar .brand__text strong {
    font-size: 1.32rem;
  }

  .topbar .brand__text span {
    font-size: 0.78rem;
  }

  .topbar__actions {
    gap: 8px;
  }

  .topbar__menu {
    width: 42px;
    height: 40px;
    padding: 0 11px;
  }

  .topbar__language {
    min-height: 40px;
    padding: 0 10px;
  }

  .topbar__language span {
    display: none;
  }

  .topnav {
    top: 68px;
    right: 18px;
    width: min(340px, calc(100vw - 36px));
    gap: 8px;
    font-size: 0.92rem;
  }

  .hero h1,
  .section-copy h2,
  .calculator h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero__visual,
  .hero__scene {
    min-height: 390px;
  }

  .hero__scene {
    --rack-width: min(250px, 70vw);
    --panel-width: min(230px, 68vw);
    overflow: hidden;
  }

  .hero__windmill {
    top: 34px;
    height: 112px;
  }

  .hero__windmill span,
  .hero__windmill span::before,
  .hero__windmill span::after {
    height: 40px;
  }

  .hero__windmill--left {
    right: min(52vw, 170px);
  }

  .hero__windmill--right {
    right: 42px;
    top: 76px;
  }

  .mining-rack {
    left: 50%;
    right: auto;
    bottom: 88px;
    transform: translateX(-42%) perspective(760px) rotateY(-8deg) skewX(-9deg);
  }

  .solar-panel {
    left: auto;
    right: 4px;
    bottom: 26px;
    transform: perspective(680px) rotateX(54deg) rotateZ(-8deg) skewX(-16deg);
  }

  .coin--one {
    left: 26px;
    bottom: 120px;
  }

  .coin--two {
    right: 24px;
    top: 136px;
  }

  .coin--three {
    right: min(51vw, 164px);
    bottom: 190px;
  }

  .calculator {
    margin: 0;
    padding: 0;
  }

  .calculator__header,
  .calculator__form {
    grid-template-columns: 1fr;
  }

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

  .calculator__header {
    align-items: start;
  }

  .calculator__result {
    text-align: left;
  }

  .calculator__result-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .faq__visual,
  .map-card {
    min-height: 280px;
  }

  .map-card__network {
    padding: 14px 10px 118px;
    justify-content: center;
  }

  .data-centers {
    right: 14px;
    left: 14px;
    bottom: 14px;
    min-width: 0;
  }

  .footer {
    margin: 14px 18px 18px;
  }
}

/* Mobile luxury layer. Kept isolated so the desktop presentation stays intact. */
@media (max-width: 768px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-glass: rgba(10, 18, 28, 0.72);
    --mobile-line: rgba(255, 255, 255, 0.095);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    background:
      radial-gradient(circle at 14% 9%, rgba(180, 255, 49, 0.055), transparent 28%),
      radial-gradient(circle at 92% 34%, rgba(232, 184, 84, 0.045), transparent 24%),
      #03070d;
  }

  .hero h1,
  .section-copy h2,
  .calculator h2,
  .farm-card h3 {
    font-size: clamp(1.85rem, 8.2vw, 2.55rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.015em;
    text-transform: none;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
  }

  .hero__lead,
  .hero__assist,
  .section-copy p,
  .farm-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  /* A single full card plus a visible cue for the next swipe target. */
  .stats,
  .farm-specs {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: 0;
    padding: 20px var(--mobile-gutter) 24px;
    border-inline: 0;
    border-radius: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--mobile-gutter);
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stats::-webkit-scrollbar,
  .farm-specs::-webkit-scrollbar {
    display: none;
  }

  .stat-card,
  .farm-card {
    flex: 0 0 calc(100vw - 58px);
    max-width: 420px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border: 1px solid var(--mobile-line);
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
      var(--mobile-glass);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.38),
      0 0 34px rgba(180, 255, 49, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .stat-card:nth-child(even),
  .farm-card:nth-child(even) {
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.38),
      0 0 34px rgba(224, 175, 74, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .stat-card {
    min-height: 230px;
    padding: 22px;
  }

  .stat-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .stat-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
  }

  .stat-card strong {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .farm-card {
    min-height: 470px;
    padding: 24px 22px;
  }

  .check-list,
  .farm-card ul {
    gap: 0;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }

  .check-list li,
  .farm-card li {
    position: relative;
    padding: 13px 6px 13px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: rgba(234, 241, 247, 0.88);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .check-list li:last-child,
  .farm-card li:last-child {
    border-bottom: 0;
  }

  .check-list li::before,
  .farm-card li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 17px;
    width: 9px;
    height: 5px;
    border: solid rgba(180, 255, 49, 0.9);
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
    text-shadow: none;
    filter: drop-shadow(0 0 5px rgba(180, 255, 49, 0.3));
  }

  .map-card {
    min-height: 500px;
    padding: 12px;
    border-color: var(--mobile-line);
    background: var(--mobile-glass);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  }

  .map-card__network {
    height: 235px;
    padding: 8px;
  }

  .data-centers {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .data-centers > strong {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
  }

  .data-centers__item {
    min-height: 76px;
    margin: 0;
    padding: 13px;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.028);
    color: rgba(238, 244, 248, 0.88);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .data-centers__item:nth-of-type(4),
  .data-centers__item:nth-of-type(5) {
    color: #dfffab;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
  }

  .data-centers__item i {
    display: none;
  }

  .button {
    min-height: 46px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: none;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .stats,
  .farm-specs {
    scroll-behavior: auto;
  }
}

/* Final mobile layout */
@media (max-width: 768px) {
  :root { --mobile-gutter: 14px; }

  body { overflow-x: hidden; }

  .site-frame {
    padding-top: 64px;
    border: 0;
  }

  .topbar {
    min-height: 64px;
    padding: 9px 14px;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(4, 10, 17, 0.92);
    backdrop-filter: blur(20px) saturate(140%);
  }

  .topbar .brand__mark { width: 34px; height: 34px; border-radius: 11px; }
  .topbar .brand__text strong { font-size: 1.15rem; }
  .topbar .brand__text span { font-size: 0.68rem; }
  .topbar__language {
    display: inline-flex;
    min-width: 48px;
    min-height: 38px;
    justify-content: center;
    padding: 0 7px;
    border-radius: 11px;
  }
  .topbar__language span { display: none; }
  .topbar__language select {
    width: 34px;
    padding: 0;
    font-size: 0.78rem;
  }
  .auth-page .topbar__actions > .button { display: none; }
  .topbar__menu { width: 42px; height: 42px; border-radius: 13px; }

  .topnav {
    top: 64px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - 76px);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow-y: auto;
  }

  .topnav > a { min-height: 46px; }

  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer {
    width: auto;
    margin: 12px 12px 0;
    padding: 20px;
    border-radius: 22px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    padding-top: 26px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 10.8vw, 3.15rem);
    line-height: 0.98;
    text-transform: uppercase;
  }

  .hero__lead { margin: 14px 0 18px; font-size: 0.95rem; line-height: 1.58; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__actions .button { width: 100%; }
  .crypto-strip { gap: 9px; margin-top: 20px; }
  .crypto-strip > span { width: 100%; }

  .hero__visual,
  .hero__scene { min-height: 300px; }

  .hero__scene {
    margin-inline: -8px;
    border-radius: 18px;
    --rack-width: min(210px, 64vw);
    --panel-width: min(190px, 58vw);
  }

  .hero__windmill--left { right: min(53vw, 165px); }
  .hero__windmill--right { right: 22px; }
  .mining-rack { bottom: 63px; }
  .solar-panel { bottom: 10px; }
  .coin--one { left: 14px; bottom: 92px; }
  .coin--two { right: 14px; top: 108px; }
  .coin--three { display: none; }

  .stats,
  .farm-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .stat-card,
  .farm-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 20px;
    scroll-snap-align: none;
    background: var(--card-one);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .stat-card { display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; }
  .stat-card__icon { grid-row: 1 / 4; margin: 0; }
  .stat-card h3 { margin: 0 0 3px; font-size: 1.6rem; }
  .stat-card strong { margin-bottom: 5px; font-size: 0.76rem; }
  .stat-card p { font-size: 0.84rem; line-height: 1.45; }

  .section-grid { gap: 20px; }
  .section-copy { padding: 0; }
  .section-copy h2,
  .calculator h2,
  .farm-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .check-list li,
  .farm-card li { padding-block: 11px; }

  .map-card { min-height: 430px; }
  .map-card__network { height: 190px; }
  .data-centers { grid-template-columns: 1fr 1fr; }

  .farm-card { padding: 22px 20px; }
  .farm-card p { margin-bottom: 4px; }
  .farm-card ul { margin-top: 12px; }

  .investment-block { gap: 28px; padding: 22px 16px; }
  .calculator__form { gap: 14px; margin-top: 18px; }
  .calculator label span { font-size: 0.82rem; }
  select, input { min-height: 52px; font-size: 1rem; }
  .calculator__form .button { width: 100%; min-height: 52px; }
  .calculator__note { font-size: 0.82rem; line-height: 1.5; }

  .plans__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .plan-card { padding: 20px; }
  .plan-card h3 { font-size: 3.2rem; }
  .plan-card ul { margin-bottom: 18px; }
  .plan-card .button { width: 100%; }

  .faq { align-items: initial; }
  .accordion__trigger { min-height: 58px; padding: 16px 48px 16px 16px; line-height: 1.35; }
  .accordion__content p { padding: 0 16px 16px; font-size: 0.88rem; line-height: 1.55; }
  .faq__visual { min-height: 230px; }
  .faq__image { position: absolute; object-fit: contain; }

  .footer { grid-template-columns: 1fr 1fr; gap: 22px 16px; margin-bottom: 12px; }
  .footer__brand { grid-column: 1 / -1; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer__column:last-child { grid-column: 1 / -1; }

  .button { min-height: 48px; padding-inline: 18px; }
}

@media (max-width: 390px) {
  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer { margin-inline: 8px; padding: 16px; }

  .stat-card { grid-template-columns: 42px 1fr; padding: 17px; }
  .stat-card__icon { width: 42px; height: 42px; }
  .footer { grid-template-columns: 1fr; }
  .footer__brand,
  .footer__column:last-child { grid-column: auto; }
}

/* Mobile redesign v2: clean, editorial and compact */
@media (max-width: 768px) {
  body {
    background: #050b13;
  }

  .site-frame {
    background: linear-gradient(180deg, #07111c 0%, #040911 100%);
  }

  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer {
    margin: 0;
    padding: 44px 18px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
    background:
      radial-gradient(circle at 85% 12%, rgba(180, 255, 49, 0.13), transparent 34%),
      linear-gradient(180deg, #081522, #06101a);
  }

  .hero__copy { text-align: center; }
  .hero .eyebrow { justify-content: center; }

  .hero h1 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.93;
    letter-spacing: -0.035em;
  }

  .hero__lead {
    max-width: 37ch;
    margin: 18px auto 22px;
    color: rgba(225, 234, 241, 0.72);
  }

  .hero__actions { max-width: 390px; margin-inline: auto; }
  .hero__assist { margin-inline: auto; font-size: 0.76rem; }
  .crypto-strip { justify-content: center; }
  .crypto-strip > span { text-align: center; }

  .hero__visual {
    min-height: 260px;
    margin: 0 -6px -22px;
  }

  .hero__scene {
    min-height: 260px;
    border: 0;
    border-radius: 24px 24px 0 0;
    background-color: rgba(4, 12, 20, 0.55);
    box-shadow: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: #050b13;
  }

  .stat-card {
    display: block;
    min-height: 170px;
    padding: 17px;
    border-radius: 18px;
    background: #0a1624;
  }

  .stat-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }

  .stat-card h3 { margin-bottom: 5px; font-size: 1.65rem; }
  .stat-card strong { display: block; min-height: 34px; font-size: 0.68rem; line-height: 1.3; }
  .stat-card p { display: none; }

  .section-grid {
    gap: 28px;
    background: #07111c;
  }

  .section-copy .eyebrow,
  .calculator .eyebrow,
  .plans > .eyebrow,
  .faq__list > .eyebrow {
    margin-bottom: 12px;
  }

  .section-copy h2,
  .calculator h2,
  .farm-card h3 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .check-list {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .check-list li { padding: 15px 4px 15px 28px; }

  .map-card {
    min-height: 400px;
    border-radius: 22px;
    background: #091725;
  }

  .farm-specs {
    gap: 10px;
    background: #050b13;
  }

  .farm-card {
    padding: 24px 20px;
    border: 0;
    border-left: 2px solid rgba(180, 255, 49, 0.45);
    border-radius: 4px 18px 18px 4px;
    background: #091522;
  }

  .farm-card .eyebrow { font-size: 0.66rem; }
  .farm-card h3 { margin-top: 9px; font-size: 1.8rem; }
  .farm-card p { font-size: 0.88rem; }
  .farm-card li { padding-block: 10px; font-size: 0.82rem; }

  .investment-block {
    padding-inline: 0;
    background: #07131c;
  }

  .calculator,
  .plans { padding-inline: 18px; }

  .calculator__form {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: #091522;
  }

  .calculator__note { padding-inline: 2px; }

  .plans { overflow: hidden; }
  .plans__grid {
    display: flex;
    gap: 12px;
    margin-inline: -18px;
    padding: 4px 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plans__grid::-webkit-scrollbar { display: none; }

  .plan-card {
    flex: 0 0 min(82vw, 310px);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    border-radius: 20px;
    background: #091522;
  }

  .plan-card ul { flex: 1; }
  .plan-card--featured { border-color: rgba(180, 255, 49, 0.55); }

  .faq { background: #050b13; }
  .accordion { gap: 0; border-top: 1px solid rgba(255,255,255,.1); }

  .accordion__item:nth-child(n) {
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    background: transparent;
  }

  .accordion__trigger { padding-inline: 2px 42px; font-weight: 600; }
  .accordion__trigger::before,
  .accordion__trigger::after { right: 8px; }
  .accordion__content p { padding-inline: 2px; }

  .faq__visual {
    min-height: 250px;
    border: 0;
    border-radius: 22px;
    background: #081520;
  }

  .footer {
    padding-bottom: 30px;
    background: #03070d;
  }
}

@media (max-width: 360px) {
  .stats { grid-template-columns: 1fr; }
  .stat-card { min-height: 0; }
  .stat-card strong { min-height: 0; }
  .plan-card { flex-basis: 88vw; }
}

/* Mobile redesign v3 */
@media (max-width: 768px) {
  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer {
    margin: 12px;
    padding: 22px 16px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 20px;
    background: #08131f;
  }

  .hero {
    padding-top: 30px;
    background: radial-gradient(circle at 80% 10%, rgba(180,255,49,.12), transparent 35%), #08131f;
  }

  .hero__copy { text-align: left; }
  .hero__copy,
  .hero__copy .button,
  .crypto-strip > span {
    font-family: Arial, Helvetica, sans-serif;
  }
  .hero .eyebrow { justify-content: flex-start; }
  .hero h1 { max-width: 11ch; margin: 0; font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .hero__lead { max-width: none; margin: 17px 0 22px; font-size: 0.88rem; }
  .hero__actions { max-width: none; margin: 0; }
  .hero__assist { margin-inline: 0; }
  .crypto-strip { justify-content: flex-start; }
  .crypto-strip > span { text-align: left; font-size: 0.82rem; }

  .hero__visual,
  .hero__scene {
    width: 100%;
    min-height: 340px;
  }

  .hero__photo {
    inset: 0;
    width: 100%;
    background-size: cover;
    background-position: center center;
  }

  .map-card__network {
    align-items: flex-start;
    height: 175px;
  }

  .map-card__network .kazakhstan-map {
    transform: translateY(-28px);
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .stats .stat-card,
  .stats .stat-card:nth-child(-n + 2) { grid-column: 1 / -1; }

  .stat-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    min-height: 0;
    padding: 18px;
  }

  .stat-card__icon { grid-row: 1 / 4; width: 42px; height: 42px; margin: 0; }
  .stat-card h3 { margin: 0 0 3px; }
  .stat-card strong { min-height: 0; }
  .stat-card p { display: block; margin-top: 5px; }

  .farm-specs { padding: 14px; }
  .farm-card {
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 18px;
    background: #0a1724;
    text-align: center;
  }

  .farm-card .eyebrow { justify-content: center; }

  .about,
  .investment-block {
    background: #ffffff;
    color: #11151a;
    border-color: rgba(11, 35, 64, 0.14);
  }

  .about p,
  .about li { color: #5f6873; }
  .about h2 { color: #0b1726; }

  .investment-block { padding: 24px 16px; }
  .calculator h2 { color: #0b1726; }
  .calculator__note { color: #7b8798; }
  .calculator .eyebrow,
  .plans > .eyebrow { color: #0b2340; }
  .calculator,
  .plans { padding-inline: 0; }

  .plans { overflow: visible; }
  .plans__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .plan-card {
    min-height: 0;
    width: 100%;
    display: block;
    --card-start: var(--card-one);
    --card-end: var(--card-a-end);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.075);
  }

  .plan-card h3 { color: #8cff24; font-size: 2.8rem; }
  .plan-card p,
  .plan-card ul { color: var(--muted); }
  .plan-card--featured { box-shadow: none; }

  .faq {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .faq__visual {
    width: calc(100% + 32px);
    min-height: 0;
    margin: 0 -16px -22px;
    border: 0;
    border-radius: 0 0 20px 20px;
    aspect-ratio: 16 / 10;
    background: #050b13;
  }

  .faq__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .footer {
    margin-bottom: 12px;
    text-align: center;
    background: #03070d;
    color: var(--text);
  }
  .footer .brand { justify-content: center; }
  .footer__brand p { margin-inline: auto; }
}

@media (max-width: 390px) {
  .hero,
  .stats,
  .section-grid,
  .farm-specs,
  .investment-block,
  .footer { margin-inline: 8px; }

  .faq__visual { width: calc(100% + 32px); }
}
