:root {
  color-scheme: light;
  --ink: #10202c;
  --muted: #5f6d78;
  --line: #dbe5e9;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --mist: #e9f5f1;
  --teal: #00a88f;
  --teal-dark: #007866;
  --green: #52c878;
  --amber: #ffb547;
  --coral: #ff6f61;
  --violet: #7357d8;
  --sky: #4aa8ff;
  --shadow: 0 24px 70px rgba(16, 32, 44, 0.14);
  --shadow-soft: 0 18px 42px rgba(16, 32, 44, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f6f9f8;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 19, 29, 0.94);
  border-bottom: 1px solid rgba(180, 255, 236, 0.16);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.18rem;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 28%, #fff7 0 18%, transparent 19%),
    linear-gradient(135deg, var(--teal), var(--green) 50%, var(--amber));
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 168, 143, 0.28);
}

.brand-mark span {
  font-size: 0.8rem;
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(238, 255, 250, 0.82);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(0, 168, 143, 0.18);
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(180, 255, 236, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 168, 143, 0.24);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(16, 32, 44, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  display: grid;
  align-items: center;
  padding: 58px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(255, 181, 71, 0.3), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(0, 168, 143, 0.32), transparent 34%),
    linear-gradient(135deg, #06131d 0%, #0c2230 44%, #08372f 100%);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -170px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 168, 143, 0.2), transparent 64%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, #fbfdfc);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100vh - 170px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: var(--line);
  background: var(--mist);
  color: var(--teal-dark);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 690px;
  padding: 46px 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  max-width: 760px;
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  text-transform: uppercase;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(246, 255, 252, 0.94);
  font-size: clamp(1rem, 1.45vw, 1.23rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 720px;
}

.trust-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(4, 18, 28, 0.76);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.trust-item span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: rgba(232, 255, 249, 0.82);
}

.dashboard-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: auto;
  pointer-events: none;
}

.main-dashboard {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(560px, 47vw);
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(180, 255, 236, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(9, 26, 38, 0.94), rgba(5, 44, 38, 0.88)),
    rgba(9, 26, 38, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  transform: translateY(-50%);
  animation: liftCentered 5s ease-in-out infinite;
}

.main-dashboard .dash-title strong,
.main-dashboard .dash-card strong,
.main-dashboard .chart-panel strong {
  color: #ffffff;
}

.main-dashboard .dash-title span,
.main-dashboard .dash-card span,
.main-dashboard .chart-panel span {
  color: rgba(232, 255, 249, 0.78);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dash-title strong,
.dash-card strong,
.mini-panel strong,
.earning-tile strong {
  display: block;
  color: var(--ink);
}

.dash-title span,
.dash-card span,
.mini-panel span,
.earning-tile span {
  color: var(--muted);
  font-size: 0.85rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: rgba(82, 200, 120, 0.14);
  color: #177b41;
  font-size: 0.78rem;
  font-weight: 900;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(82, 200, 120, 0.15);
}

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

.dash-card,
.mini-panel,
.earning-tile,
.stat-card,
.service-card,
.category-card,
.blog-card,
.legal-card,
.contact-card {
  border: 1px solid #c8d7dc;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 52px rgba(16, 32, 44, 0.11);
}

.dash-card {
  min-height: 112px;
  padding: 16px;
}

.main-dashboard .dash-card {
  border-color: rgba(180, 255, 236, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.dash-card strong {
  margin-top: 8px;
  font-size: 1.65rem;
}

.delta {
  color: #23b268;
  font-size: 0.82rem;
  font-weight: 900;
}

.main-dashboard .delta {
  color: #7df0a1;
}

.chart-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(16, 32, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 44, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 44px 44px;
}

.main-dashboard .chart-panel {
  border-color: rgba(180, 255, 236, 0.16);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(3, 18, 27, 0.58);
  background-size: 44px 44px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: end;
  gap: 8px;
  height: 210px;
  margin-top: 18px;
}

.chart-bars span {
  display: block;
  min-height: 24px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--green), var(--teal));
  animation: growBar 1.3s ease both;
  transform-origin: bottom;
}

.chart-bars span:nth-child(3n) {
  background: linear-gradient(180deg, var(--amber), var(--coral));
}

.chart-bars span:nth-child(4n) {
  background: linear-gradient(180deg, var(--sky), var(--teal));
}

.floating-stat,
.mini-panel {
  position: absolute;
  z-index: 3;
}

.floating-stat {
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  animation: drift 6s ease-in-out infinite;
}

.floating-stat strong {
  font-size: 1.2rem;
}

.floating-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-stat.one {
  top: 46px;
  right: 18px;
}

.floating-stat.two {
  top: 280px;
  left: auto;
  right: min(530px, 44vw);
  animation-delay: -1.7s;
}

.floating-stat.three {
  right: 38px;
  bottom: 68px;
  animation-delay: -3.1s;
}

.mini-panel {
  left: auto;
  right: 7%;
  bottom: 28px;
  width: min(430px, 38vw);
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.line-chart {
  position: relative;
  height: 78px;
  margin-top: 14px;
  overflow: hidden;
}

.line-chart::before {
  content: "";
  position: absolute;
  inset: 12px 0 0;
  background:
    linear-gradient(150deg, transparent 8%, rgba(0, 168, 143, 0.18) 8% 18%, transparent 18% 30%, rgba(255, 181, 71, 0.22) 30% 40%, transparent 40% 52%, rgba(82, 200, 120, 0.26) 52% 72%, transparent 72%);
  clip-path: polygon(0 68%, 14% 60%, 27% 48%, 39% 50%, 52% 34%, 64% 38%, 78% 18%, 100% 7%, 100% 100%, 0 100%);
}

.line-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  transform: rotate(-9deg);
  transform-origin: left;
}

.section {
  padding: 88px 0;
  background: #fbfdfc;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(233, 245, 241, 0.72), rgba(246, 249, 248, 0.92)),
    var(--soft);
}

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

.section-head h2 {
  max-width: 740px;
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  color: #071923;
}

.section-head p {
  max-width: 520px;
  color: #2d3f4a;
  font-weight: 650;
}

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

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

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(0, 168, 143, 0.12);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.stat-card h3 {
  margin-top: 22px;
  font-size: 1rem;
  color: #243944;
  font-weight: 850;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.earnings-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.earnings-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.earnings-copy h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.earnings-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

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

.earning-tile {
  min-height: 178px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 241, 0.86)),
    #fff;
}

.earning-tile strong {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: #071923;
}

.tile-meter {
  width: 100%;
  height: 8px;
  margin-top: 20px;
  border-radius: 99px;
  background: #d9e8e4;
  overflow: hidden;
}

.tile-meter span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

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

.service-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-color: #c6d6d9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 246, 0.92)),
    #fff;
  box-shadow: 0 24px 56px rgba(16, 32, 44, 0.13);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.service-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(0, 168, 143, 0.11);
  pointer-events: none;
}

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

.service-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
  color: #071923;
}

.service-card p {
  margin-top: 12px;
  color: #263943;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.feature-list li {
  display: flex;
  gap: 8px;
  color: #10202c;
  font-weight: 800;
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--teal);
}

.service-card .stat-icon {
  background: linear-gradient(135deg, #10202c, var(--teal-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 32, 44, 0.2);
}

.premium-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-top: 16px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: #10202c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  padding: 104px 0 78px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 22%, rgba(255, 181, 71, 0.25), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(0, 168, 143, 0.28), transparent 34%),
    linear-gradient(135deg, #06131d 0%, #0c2230 48%, #08372f 100%);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 72%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  background: linear-gradient(180deg, transparent, #fbfdfc);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 940px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.55);
}

.page-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(246, 255, 252, 0.94);
  font-size: 1.08rem;
  font-weight: 650;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.visual-panel {
  min-height: 360px;
  border: 1px solid #c8d7dc;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(0, 168, 143, 0.18) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 181, 71, 0.2) 0 1px, transparent 1px 42px);
  box-shadow: 0 24px 56px rgba(16, 32, 44, 0.12);
  padding: 22px;
}

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

.country-chip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
  color: #384a55;
  text-align: center;
}

.price-card {
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 246, 0.92)),
    #fff;
  border: 1px solid #c8d7dc;
  box-shadow: 0 24px 56px rgba(16, 32, 44, 0.12);
}

.price-card h3,
.category-card h3,
.blog-card h3,
.legal-card h3,
.contact-card h2 {
  color: #071923;
}

.price-card p,
.category-card p,
.blog-card p,
.legal-card p,
.contact-card p {
  color: #263943;
  font-weight: 600;
}

.price {
  display: block;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 950;
  color: var(--ink);
}

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

.category-card,
.blog-card,
.legal-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(240, 248, 246, 0.9)),
    #fff;
}

.category-card h3,
.blog-card h3,
.legal-card h3 {
  margin-top: 18px;
  font-size: 1.1rem;
}

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

.soon-card {
  min-height: 142px;
  padding: 22px;
  border: 1px dashed rgba(0, 168, 143, 0.45);
  border-radius: var(--radius);
  background: rgba(233, 245, 241, 0.9);
}

.soon-card h3 {
  font-size: 1.08rem;
  color: #071923;
}

.soon-card p {
  color: #263943;
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 24px;
  align-items: start;
}

.home-contact {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 168, 143, 0.14), transparent 32%),
    linear-gradient(135deg, #071923 0%, #0c2230 55%, #08372f 100%);
}

.home-contact .contact-card {
  border-color: rgba(180, 255, 236, 0.2);
}

.home-contact .contact-layout > .contact-card:first-child {
  background:
    linear-gradient(145deg, rgba(9, 26, 38, 0.96), rgba(5, 44, 38, 0.9)),
    #091a26;
  color: #fff;
}

.home-contact .contact-layout > .contact-card:first-child h2 {
  color: #fff;
}

.home-contact .contact-layout > .contact-card:first-child p {
  color: rgba(246, 255, 252, 0.86);
}

.contact-card {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(240, 248, 246, 0.9)),
    #fff;
}

.contact-method {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius);
  background: #e3f4ef;
  color: #071923;
}

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

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

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

label {
  color: #334550;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: #263943;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.success {
  color: #117745;
}

.form-status.error {
  color: #b43f35;
}

.telegram-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.telegram-panel {
  width: min(310px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(180, 255, 236, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(9, 26, 38, 0.97), rgba(5, 44, 38, 0.94)),
    #091a26;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.telegram-widget.is-open .telegram-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.telegram-panel strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
}

.telegram-panel p {
  margin-top: 8px;
  color: rgba(246, 255, 252, 0.78);
  font-size: 0.92rem;
}

.telegram-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.telegram-toggle {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1b91d1, #00a88f);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 168, 143, 0.28);
}

.telegram-close {
  min-height: 40px;
}

.policy-content {
  max-width: 860px;
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-size: 1.65rem;
}

.policy-content p,
.policy-content li {
  color: #263943;
  font-weight: 580;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  list-style: disc;
  padding-left: 20px;
}

.footer {
  padding: 58px 0 26px;
  background: #10202c;
  color: #fff;
}

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

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

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

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

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

@keyframes liftCentered {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

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

@keyframes growBar {
  from {
    transform: scaleY(0.18);
  }
  to {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .topbar.open .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(180, 255, 236, 0.2);
    border-radius: var(--radius);
    background: rgba(6, 19, 29, 0.98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }

  .hero-grid,
  .split,
  .contact-layout,
  .earnings-board {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
    padding: 0;
  }

  .hero {
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 78% 18%, rgba(255, 181, 71, 0.26), transparent 30%),
      radial-gradient(circle at 88% 72%, rgba(0, 168, 143, 0.3), transparent 36%),
      linear-gradient(135deg, #06131d 0%, #0c2230 48%, #08372f 100%);
    background-size: 54px 54px, 54px 54px, auto, auto, auto;
  }

  .dashboard-scene {
    position: relative;
    inset: auto;
    margin-top: 34px;
    min-height: 560px;
    pointer-events: auto;
  }

  .main-dashboard {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    animation: lift 5s ease-in-out infinite;
  }

  .mini-panel {
    left: 24px;
    right: 92px;
    bottom: 8px;
    width: auto;
  }

  .stats-grid,
  .service-grid,
  .store-grid,
  .blog-grid,
  .legal-grid,
  .coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section,
  .hero {
    padding: 58px 0;
  }

  .page-hero {
    padding: 66px 0 48px;
  }

  .section-head {
    display: grid;
  }

  .trust-strip,
  .kpi-grid,
  .stats-grid,
  .service-grid,
  .store-grid,
  .blog-grid,
  .legal-grid,
  .coming-grid,
  .earning-tiles,
  .form-grid,
  .traffic-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .dashboard-scene {
    min-height: auto;
  }

  .main-dashboard {
    padding: 16px;
  }

  .floating-stat,
  .mini-panel {
    position: static;
    margin-top: 12px;
  }

  .chart-bars {
    height: 160px;
  }

  .contact-layout {
    gap: 18px;
  }

  .footer-bottom {
    display: grid;
  }
}
