:root {
  --dark-bg: #09091f;
  --dark-purple: #151236;
  --panel: #1a1244;
  --panel-soft: rgba(28, 18, 68, 0.78);
  --purple: #6c3cff;
  --blue: #1ca7ff;
  --yellow: #ffd43b;
  --orange: #ff9f1c;
  --white: #ffffff;
  --text-muted: #b8b8d4;
  --glass: rgba(9, 9, 31, 0.68);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --heading: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 60, 255, 0.3), transparent 34rem),
    linear-gradient(180deg, #07071a 0%, var(--dark-bg) 34%, #0f0826 72%, #080816 100%);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(5rem);
  opacity: 0.28;
  z-index: -1;
}

.page-glow-one {
  top: 7rem;
  left: -10rem;
  background: var(--purple);
}

.page-glow-two {
  right: -11rem;
  bottom: 10rem;
  background: var(--blue);
}

.section {
  position: relative;
  scroll-margin-top: 88px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(8, 8, 28, 0.9);
  border-color: var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1220px, calc(100% - 36px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 78px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 16px rgba(255, 159, 28, 0.38));
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 10px 0;
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--heading);
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.store-button:hover {
  transform: translateY(-3px);
}

.btn-primary,
.btn-amazon {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #191018;
  box-shadow: 0 0 30px rgba(255, 159, 28, 0.3);
}

.btn-ghost {
  border-color: rgba(186, 87, 255, 0.82);
  background: rgba(108, 60, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 18px rgba(108, 60, 255, 0.16);
}

.btn:hover {
  box-shadow: 0 0 32px rgba(255, 212, 59, 0.32), 0 0 50px rgba(108, 60, 255, 0.18);
}

.hero {
  min-height: 760px;
  padding-top: 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 31, 0.9) 0%, rgba(9, 9, 31, 0.55) 45%, rgba(9, 9, 31, 0.25) 100%),
    url("../images/standing-pose2.png") center top / cover no-repeat;
  filter: saturate(0.9);
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 212, 59, 0.32), transparent 18rem),
    linear-gradient(180deg, transparent 65%, var(--dark-bg) 100%);
}

.hero-slider {
  position: relative;
  z-index: 1;
  min-height: calc(760px - 84px);
  display: grid;
  align-items: center;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: block;
}

.hero-logo {
  width: min(280px, 70vw);
  margin-bottom: 18px;
  border-radius: 8px;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.45));
}

.hero-tagline {
  margin: 0 0 18px;
  font-family: var(--heading);
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.34);
}

.hero-description {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  width: 196px;
  height: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #000000;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-button img {
  width: 100%;
  height: auto;
  display: block;
}

.store-button:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 28px rgba(255, 212, 59, 0.25), 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-art {
  display: none;
}

.hero-art img {
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.5));
}

.slider-arrow {
  position: absolute;
  top: 54%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(8, 8, 28, 0.42);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(108, 60, 255, 0.6);
  transform: scale(1.06);
}

.slider-prev {
  left: max(18px, calc((100vw - 1240px) / 2));
}

.slider-next {
  right: max(18px, calc((100vw - 1240px) / 2));
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.slider-dots button.active {
  background: var(--white);
  box-shadow: 0 0 18px var(--yellow);
}

.empower-strip {
  padding: 42px 0 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 59, 0.18), transparent 25rem),
    linear-gradient(90deg, rgba(108, 60, 255, 0.25), rgba(28, 167, 255, 0.12), rgba(255, 159, 28, 0.18));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.empower-strip::before,
.empower-strip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 59, 0.75), transparent);
}

.empower-strip::before {
  left: 0;
}

.empower-strip::after {
  right: 0;
}

.empower-text {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.48), 0 0 28px rgba(255, 212, 59, 0.18);
}

.company-about,
.about,
.books {
  background: linear-gradient(180deg, rgba(14, 10, 44, 0.92), rgba(11, 9, 35, 0.98));
}

.company-about {
  padding: 96px 0 88px;
  overflow: hidden;
}

.company-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 212, 59, 0.15), transparent 22rem),
    radial-gradient(circle at 15% 80%, rgba(28, 167, 255, 0.12), transparent 20rem);
  pointer-events: none;
}

.company-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 52px;
}

.company-copy {
  max-width: 720px;
}

.company-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.company-copy p {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.company-copy .company-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 10px 12px 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 212, 59, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 700;
}

.company-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 28, 0.1), rgba(8, 8, 28, 0.86)),
    url("../images/blured.png") center / cover;
  box-shadow: var(--shadow);
}

.company-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(108, 60, 255, 0.18), rgba(255, 159, 28, 0.1)),
    linear-gradient(180deg, transparent 42%, rgba(8, 8, 28, 0.88));
}

.company-visual img {
  position: absolute;
  right: -110px;
  bottom: -340px;
  width: 620px;
  max-width: none;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.52));
  animation: floatNinja 4.5s ease-in-out infinite;
}

.credential-card {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 9, 31, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 26px rgba(108, 60, 255, 0.22);
  backdrop-filter: blur(14px);
}

.credential-card strong {
  display: block;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 2.3rem;
  line-height: 1;
}

.credential-card span {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.credential-card-one {
  top: 28px;
  left: 26px;
}

.credential-card-two {
  top: 190px;
  right: 24px;
}

.credential-card-three {
  left: 34px;
  bottom: 38px;
}

.capabilities {
  padding: 42px 0 72px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 212, 59, 0.13), transparent 20rem),
    linear-gradient(180deg, rgba(11, 9, 35, 0.98), #0d0928);
}

.capabilities-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 212, 59, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(108, 60, 255, 0.28), rgba(255, 159, 28, 0.1)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 212, 59, 0.1);
}

.capabilities-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.capabilities-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.capabilities-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.services {
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 212, 59, 0.12), transparent 22rem),
    radial-gradient(circle at 85% 60%, rgba(28, 167, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #0d0928, #17072e);
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(37, 22, 91, 0.88), rgba(9, 9, 31, 0.9)),
    radial-gradient(circle at 85% 5%, rgba(255, 212, 59, 0.2), transparent 12rem);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.08), transparent 42%, rgba(28, 167, 255, 0.09));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 59, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46), 0 0 36px rgba(108, 60, 255, 0.24);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--heading);
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #180f24;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(255, 159, 28, 0.28);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 0 22px;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 212, 59, 0.5);
  transform: translateY(-50%);
}

.budget-form {
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 212, 59, 0.16), transparent 22rem),
    radial-gradient(circle at 78% 60%, rgba(108, 60, 255, 0.24), transparent 30rem),
    linear-gradient(180deg, #17072e, #0b0924);
}

.budget-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: 34px;
}

.budget-copy {
  position: relative;
  z-index: 2;
}

.budget-copy p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--text-muted);
  line-height: 1.75;
}

.budget-preview {
  position: relative;
  border: 1px solid rgba(255, 212, 59, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 38px rgba(255, 212, 59, 0.14);
}

.budget-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 38px rgba(255, 212, 59, 0.2), inset 0 0 80px rgba(108, 60, 255, 0.16);
  pointer-events: none;
  z-index: 1;
}

.budget-preview img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.budget-preview:hover img {
  transform: scale(1.025);
}

.about {
  padding: 92px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr 1.15fr;
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 1.14rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-copy p:not(.eyebrow),
.book-copy p,
.newsletter p,
.cta-copy p {
  color: var(--text-muted);
  line-height: 1.75;
}

.about-copy .btn {
  margin-top: 14px;
}

.about-character {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-character img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 49% center;
}

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

.feature-card,
.book-card,
.game-card,
.cta-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(38, 20, 91, 0.84), rgba(12, 10, 38, 0.86));
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 184px;
  padding: 26px;
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.book-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 59, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 35px rgba(108, 60, 255, 0.24);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 212, 59, 0.4);
  background: rgba(108, 60, 255, 0.22);
  color: var(--yellow);
  font-size: 1.7rem;
  box-shadow: 0 0 22px rgba(108, 60, 255, 0.34);
}

.feature-card h3,
.book-copy h3,
.footer-column h3,
.newsletter h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.gameplay {
  padding: 88px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(108, 60, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #16092f, #100824);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

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

.game-card {
  position: relative;
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(6, 6, 20, 0.88));
  z-index: 1;
}

.game-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:nth-child(1) img {
  object-position: 70% center;
}

.game-card:nth-child(2) img {
  object-position: center;
}

.game-card:nth-child(3) img {
  object-position: 76% center;
}

.game-card:nth-child(4) img {
  object-position: center;
}

.game-card:hover img {
  transform: scale(1.08);
}

.game-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.books {
  padding: 88px 0 70px;
}

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

.book-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.book-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.book-cover {
  min-height: 270px;
  padding: 24px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.25), inset 0 0 34px rgba(255, 255, 255, 0.08);
}

.book-cover strong {
  font-family: var(--heading);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.book-cover span {
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-book {
  background:
    linear-gradient(rgba(8, 9, 32, 0.25), rgba(8, 9, 32, 0.84)),
    url("../images/standing-pose.png") center / cover,
    linear-gradient(140deg, #091329, #2e1675);
}

.kids-book {
  background:
    linear-gradient(rgba(10, 14, 48, 0.16), rgba(10, 14, 48, 0.86)),
    url("../images/running-pose.png") center / cover,
    linear-gradient(140deg, #071a42, #3b1a8f);
}

.book-copy h3 {
  min-height: 3.15em;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.book-copy {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.book-copy p {
  margin: 0 0 12px;
}

.book-copy .btn {
  width: fit-content;
  margin-top: auto;
}

.book-subtitle {
  min-height: 1.75em;
  margin-top: 0;
  color: var(--yellow) !important;
  font-weight: 800;
}

.cta {
  padding: 30px 0 70px;
  background: linear-gradient(180deg, #100824, #080816);
}

.cta-panel {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 38px;
  padding: 0 56px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(108, 60, 255, 0.58), rgba(28, 167, 255, 0.18)),
    url("../images/standing-pose2.png") center / cover;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 7, 35, 0.35), rgba(10, 7, 35, 0.82));
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel > img {
  align-self: end;
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: 33.5% center;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 0, 0.5));
}

.cta-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.cta-copy p {
  margin: 12px 0 24px;
  font-size: 1.1rem;
}

.cta-copy .store-actions {
  align-items: center;
}

.cta-copy .store-button {
  width: 170px;
}

.contact {
  padding: 88px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(108, 60, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 70%, rgba(255, 212, 59, 0.12), transparent 22rem),
    linear-gradient(180deg, #080816, #120827);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 46px;
  align-items: center;
}

.contact-copy p {
  max-width: 560px;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 212, 59, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--yellow);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(38, 20, 91, 0.84), rgba(12, 10, 38, 0.92));
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

.contact-form label {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 212, 59, 0.12);
}

.consultants-strip {
  padding: 52px 0;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(108, 60, 255, 0.28), rgba(255, 159, 28, 0.16), rgba(28, 167, 255, 0.2)),
    #09091f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.consultants-strip p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.consultants-strip h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--border);
  background: #070718;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) 0.7fr 0.85fr minmax(250px, 1.1fr);
  gap: 42px;
}

.footer-brand img {
  width: 120px;
}

.footer-brand p,
.footer-column a,
.newsletter p {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--purple);
}

.footer-column,
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3,
.newsletter h3 {
  font-size: 1.35rem;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--yellow);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  outline: none;
}

.newsletter input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 212, 59, 0.12);
}

.newsletter .btn {
  width: 100%;
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .company-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-copy {
    grid-column: 1 / -1;
  }

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

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

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

  .book-cover {
    max-width: 230px;
  }
}

@media (max-width: 860px) {
  .section {
    scroll-margin-top: 72px;
  }

  .navbar {
    min-height: 72px;
  }

  .brand {
    width: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(9, 9, 31, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
  }

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

  .nav-links {
    width: 100%;
    display: grid;
    gap: 6px;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .play-now {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-slider {
    min-height: auto;
    padding: 70px 0 74px;
  }

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

  .hero-art {
    justify-self: center;
    width: min(520px, 100%);
  }

  .slider-arrow {
    display: none;
  }

  .company-grid,
  .about-grid,
  .budget-grid,
  .capabilities-panel,
  .services-grid,
  .contact-grid,
  .book-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .company-visual {
    min-height: 440px;
  }

  .company-visual img {
    width: 540px;
  }

  .about-character img,
  .cta-panel > img {
    height: 360px;
  }

  .cta-panel {
    padding: 28px;
    gap: 8px;
  }
}

@media (max-width: 580px) {
  .section-inner,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero-slider {
    padding-top: 50px;
  }

  .store-button {
    width: min(100%, 196px);
  }

  .company-about,
  .capabilities,
  .services,
  .budget-form,
  .about,
  .gameplay,
  .books,
  .contact {
    padding: 64px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .capabilities-panel {
    padding: 24px;
  }

  .capabilities-actions {
    justify-content: flex-start;
  }

  .company-copy .company-badge {
    display: flex;
    width: 100%;
    margin-right: 0;
  }

  .company-visual {
    min-height: 430px;
  }

  .company-visual img {
    right: -150px;
    width: 520px;
  }

  .credential-card {
    width: 142px;
    padding: 14px;
  }

  .credential-card strong {
    font-size: 1.9rem;
  }

  .credential-card-one {
    top: 18px;
    left: 16px;
  }

  .credential-card-two {
    top: 145px;
    right: 14px;
  }

  .credential-card-three {
    left: 16px;
    bottom: 22px;
  }

  .feature-grid,
  .gameplay-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .game-card,
  .game-card img {
    min-height: 300px;
  }

  .book-card {
    padding: 22px;
  }

  .book-copy {
    min-height: auto;
  }

  .book-cover {
    width: 100%;
    max-width: none;
  }

  .cta-panel {
    padding: 22px;
  }

  .footer-grid {
    gap: 28px;
  }
}
