:root {
  --bg: #eef4f1;
  --surface: #f8fcfa;
  --surface-alt: #dfece6;
  --surface-deep: #123b3d;
  --text: #182726;
  --muted: #58706d;
  --line: rgba(18, 59, 61, 0.11);
  --line-strong: rgba(18, 59, 61, 0.2);
  --brand: #0f9d8a;
  --brand-hover: #0b7f70;
  --brand-soft: #d8f3ed;
  --accent: #d2a35c;
  --accent-soft: #f0e0c7;
  --radius: 20px;
  --shadow: 0 18px 38px rgba(16, 53, 53, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(188, 232, 223, 0.78), transparent 30%),
    linear-gradient(180deg, #edf6f3 0%, #f6fbf8 24%, #edf4ef 100%);
  line-height: 1.5;
}

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

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: #21281e;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.16rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.15rem;
}

.nav a {
  color: #344031;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 157, 138, 0.18);
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-hover);
  box-shadow: 0 10px 20px rgba(15, 157, 138, 0.24);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(248, 252, 250, 0.8);
  border-color: var(--line-strong);
  color: #1d4e4e;
}

.btn-ghost:hover {
  border-color: #7dd3c5;
  color: #0f7f72;
  background: #ecfaf6;
  box-shadow: none;
}

.hero {
  padding: 2rem 0 1.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy,
.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(248, 252, 250, 0.98) 0%, rgba(226, 243, 238, 0.94) 100%);
  border: 1px solid rgba(15, 157, 138, 0.14);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -10% -32% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 157, 138, 0.17) 0%, transparent 62%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #0d7668;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

h1 {
  margin: 0;
  max-width: 12ch;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-metrics article {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 59, 61, 0.09);
}

.hero-metrics strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.34rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: space-between;
  padding: 1.35rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(155deg, #103637 0%, #165356 55%, #2c7c72 100%);
  color: #f6f2ea;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-stage-card {
  position: relative;
  border-radius: 24px;
  padding: 1.2rem 1.2rem 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-stage-primary {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stage-primary h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.55rem;
}

.hero-stage-primary p,
.hero-stage-accent li {
  color: rgba(246, 242, 234, 0.82);
}

.hero-stage-accent {
  background: rgba(210, 163, 92, 0.16);
  border: 1px solid rgba(240, 224, 199, 0.18);
}

.hero-stage-accent ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.hero-stage-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

.hero-stage-note {
  border-radius: 18px;
  padding: 0.95rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100%;
}

.hero-stage-note strong {
  display: block;
  color: #f6f2ea;
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-stage-label,
.section-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage-label {
  color: #f4d7ac;
}

.section-kicker {
  color: #946426;
}

.hero-orbit {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
}

.hero-orbit span {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: #f4ede2;
}

section {
  padding: 2rem 0;
}

.market-strip {
  padding-top: 0.4rem;
}

.market-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.market-pill {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(31, 39, 26, 0.08);
}

.market-pill-label {
  display: block;
  margin-bottom: 0.32rem;
  color: #7e6b3f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.01em;
}

.section-head a,
.section-head span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.section-description {
  max-width: 58ch;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-controls {
  display: flex;
  gap: 0.6rem;
}

.slider-btn {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 249, 0.78);
  color: #2f3a2c;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 157, 138, 0.32);
  background: #eefcf8;
}

.feature-slider-wrap {
  position: relative;
}

.feature-slider {
  display: flex;
  gap: 0.95rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.feature-slider::-webkit-scrollbar {
  display: none;
}

.feature-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  border-radius: 24px;
  padding: 0.85rem;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(31, 39, 26, 0.08);
  color: #2a3449;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #9fded3;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0.16rem 0 0;
  min-height: 2.6rem;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #25314a;
}

.feature-meta {
  margin: 0.9rem 0 0;
  color: #7e6957;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-media {
  height: 156px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-media span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.brand-steam {
  background: linear-gradient(145deg, #0e1f35 0%, #16467f 100%);
  color: #ffffff;
}
.brand-steam span { background: rgba(255, 255, 255, 0.24); }

.brand-psn {
  background: linear-gradient(145deg, #1457d1 0%, #0e3a95 100%);
  padding: 18px;
}
.brand-psn span { background: rgba(255, 255, 255, 0.2); }

.brand-xbox {
  background: linear-gradient(145deg, #198f26 0%, #4ab834 100%);
  padding: 20px;
}
.brand-xbox span { background: rgba(255, 255, 255, 0.22); }

.brand-roblox {
  background: linear-gradient(145deg, #0f1117 0%, #2d3040 100%);
  color: #ffffff;
}
.brand-roblox span { background: rgba(255, 255, 255, 0.2); }

.brand-gplay {
  background: linear-gradient(145deg, #1f2a38 0%, #24384d 100%);
  padding: 20px;
}
.brand-gplay span { background: rgba(255, 255, 255, 0.22); }

.brand-apple {
  background:
    linear-gradient(160deg, #f3f4f6 0%, #d1d5db 38%, #9ca3af 62%, #e5e7eb 100%);
  padding: 22px;
  color: #1f2937;
}
.brand-apple span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #1f2937;
}

.brand-netflix {
  background: linear-gradient(145deg, #5b0000 0%, #b20710 58%, #e50914 100%);
  color: #ffffff;
  padding: 24px;
}
.brand-netflix span {
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.brand-paypal {
  background: linear-gradient(145deg, #00308a 0%, #00a0e5 100%);
  padding: 18px;
}
.brand-paypal span { background: rgba(255, 255, 255, 0.2); }

.benefits {
  padding: 1.8rem 0 1.9rem;
}

.benefits-head {
  margin-bottom: 1.05rem;
}

.benefits-panel {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.85) 0%, rgba(244, 239, 230, 0.92) 100%);
  border: 1px solid rgba(215, 101, 27, 0.14);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: 0 14px 30px rgba(52, 63, 47, 0.06);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.benefit-card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(31, 39, 26, 0.08);
  border-radius: 18px;
  padding: 1.05rem 1.05rem 1.15rem;
}

.benefit-index {
  margin: 0 0 0.55rem;
  color: #b28642;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
}

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

.how-it-works {
  padding-top: 1.3rem;
}

.how-head {
  background: linear-gradient(160deg, #242d22 0%, #394635 100%);
  color: #f6f2ea;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px 28px 0 0;
  padding: 1.5rem 1rem 3.5rem;
  text-align: left;
}

.how-head h2 {
  margin: 0;
}

.how-head p {
  margin: 0.35rem 0 0;
  color: rgba(246, 242, 234, 0.76);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
  padding-inline: 0.8rem;
}

.step-card {
  position: relative;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(215, 101, 27, 0.18);
  border-radius: 18px;
  padding: 2.1rem 0.9rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-label {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #0f7b6f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #e8f8f4;
  border: 1px solid #9fded3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.categories {
  padding-top: 1.2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.76rem;
}

.category-card {
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(31, 39, 26, 0.08);
  padding: 1rem 1rem;
  color: #2a3326;
  font-weight: 600;
  min-height: 82px;
  display: flex;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #9fded3;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: start;
}

.faq-head {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(215, 101, 27, 0.12);
}

.faq-list {
  display: grid;
  gap: 0.64rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
}

.trust-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1.07rem;
}

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

.faq {
  padding-top: 1.15rem;
}

.faq details {
  border: 1px solid rgba(31, 39, 26, 0.08);
  border-radius: 16px;
  padding: 0.82rem 0.92rem;
  background: rgba(255, 253, 249, 0.82);
}

.faq details + details {
  margin-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.52rem 0 0;
  color: var(--muted);
}

.seo-home {
  padding: 1.2rem 0 0.4rem;
}

.seo-home .container {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(31, 39, 26, 0.08);
  border-radius: 24px;
  padding: 1.25rem;
}

.seo-home h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.seo-home h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.08rem;
}

.seo-home p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.seo-home ul {
  margin: 0.4rem 0 0.7rem 1.2rem;
  color: var(--muted);
}

.seo-home li + li {
  margin-top: 0.35rem;
}

.footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.3rem;
  background: transparent;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 1060px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics,
  .hero-stage-footer,
  .market-strip-grid {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

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

  .cards-grid,
  .trust-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .hero-stage {
    border-radius: 24px;
  }

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

  .feature-card {
    flex-basis: 240px;
  }
}

@media (max-width: 560px) {
  .cards-grid,
  .trust-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-head {
    padding-bottom: 2.4rem;
  }

  .hero-copy {
    padding: 1.35rem;
  }

  .hero-stage {
    padding: 1rem;
  }

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

  .feature-controls {
    width: 100%;
  }

  .slider-btn {
    flex: 1 1 0;
  }

  .btn-small {
    display: none;
  }

  .container {
    width: min(1160px, calc(100% - 1.3rem));
  }
}
