:root {
  --bg: #09090d;
  --bg-soft: #11111a;
  --panel: rgba(20, 20, 30, 0.78);
  --panel-strong: rgba(28, 28, 40, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f4ff;
  --muted: rgba(246, 244, 255, 0.72);
  --muted-soft: rgba(246, 244, 255, 0.52);
  --violet: #874bff;
  --blue: #2ba8ff;
  --lime: #8de649;
  --gold: #ffbc42;
  --coral: #ff7e57;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.25);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(135, 75, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(43, 168, 255, 0.18), transparent 24%),
    radial-gradient(circle at 25% 75%, rgba(255, 126, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #08080c 0%, #0d0d12 52%, #09090d 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(10, 10, 14, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

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

.brand-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(135, 75, 255, 0.3), rgba(43, 168, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

.brand-badge-image {
  overflow: hidden;
  padding: 4px;
}

.brand-badge-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark,
h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  letter-spacing: 0.01em;
}

.brand-wordmark {
  font-size: 1.65rem;
  line-height: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.section {
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #d6c8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.hero-text,
.section-heading p,
.feature-copy p,
.info-panel p,
.benefit-card p,
.step-card p,
.cta-panel p,
.category-meta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 28px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--violet), #c04dff);
  box-shadow: 0 14px 34px rgba(135, 75, 255, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.hero-orbit-one {
  inset: 8% 8% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(43, 168, 255, 0.25), transparent 70%);
}

.hero-orbit-two {
  inset: auto auto 16% 2%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 126, 87, 0.18), transparent 72%);
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-card-main {
  inset: 2% 0 auto 2%;
  width: min(100%, 580px);
  padding: 18px;
}

.hero-card-main img {
  border-radius: 22px;
}

.hero-card-mascot {
  right: -4%;
  bottom: 6%;
  width: min(220px, 36%);
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 188, 66, 0.16), rgba(135, 75, 255, 0.12));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-item strong {
  font-size: 1rem;
}

.trust-item span:last-child {
  color: var(--muted-soft);
  line-height: 1.6;
}

.trust-emoji {
  font-size: 1.35rem;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading h2,
.info-panel h2,
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
}

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

.category-card,
.benefit-card,
.step-card,
.feature-card,
.info-panel,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.category-card {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.category-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.category-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(135, 75, 255, 0.28), rgba(43, 168, 255, 0.16));
}

.category-meta {
  padding: 18px 18px 20px;
}

.category-meta span,
.feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #efe6ff;
  font-size: 0.85rem;
  font-weight: 800;
}

.category-meta p,
.feature-list,
.feature-copy p {
  margin: 12px 0 0;
}

.feature-stack {
  display: grid;
  gap: 24px;
}

.feature-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.feature-card-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-card-reverse .feature-copy {
  order: 2;
}

.feature-card-reverse .feature-shot {
  order: 1;
}

.feature-copy h3,
.benefit-card h3,
.step-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.feature-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.feature-shot {
  padding: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(43, 168, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-shot img {
  width: 100%;
  border-radius: 20px;
}

.utility-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.info-panel {
  padding: 28px;
  position: sticky;
  top: 110px;
}

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

.benefit-card,
.step-card {
  padding: 24px;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(135, 75, 255, 0.22), rgba(43, 168, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
}

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

.step-index {
  display: inline-block;
  margin-bottom: 14px;
  color: #cdb6ff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cta-section {
  padding-bottom: 24px;
}

.cta-panel {
  position: relative;
  padding: 40px;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 75, 255, 0.28), transparent 72%);
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 22px 6px 8px;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.page-shell-legal {
  min-height: 100vh;
}

.site-header-static {
  position: sticky;
}

.legal-page {
  padding-top: 24px;
}

.legal-hero {
  max-width: 860px;
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 18px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.legal-intro {
  max-width: 760px;
}

.legal-effective {
  color: var(--muted-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 110px;
}

.legal-side-card,
.legal-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.legal-side-card,
.legal-card,
.contact-card {
  padding: 26px;
}

.legal-side-card h2,
.legal-card h2,
.contact-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card p,
.legal-side-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.legal-list,
.legal-mini-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-mini-list {
  padding-left: 16px;
}

.text-link {
  color: #d6c8ff;
  font-weight: 700;
}

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

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-placeholder {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--muted);
}

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

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

.float-card {
  animation: floatY 7s ease-in-out infinite;
}

.hero-card-mascot {
  animation-duration: 6.2s;
}

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

@media (max-width: 1080px) {
  .hero,
  .utility-grid,
  .feature-card,
  .feature-card-reverse,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .feature-card-reverse .feature-copy,
  .feature-card-reverse .feature-shot {
    order: initial;
  }

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

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

  .hero-visual {
    min-height: 620px;
  }

  .info-panel {
    position: relative;
    top: auto;
  }

  .legal-aside {
    position: relative;
    top: auto;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-card-main {
    inset: 0;
    width: 100%;
  }

  .hero-card-mascot {
    right: 0;
    bottom: 2%;
    width: 44%;
  }

  .trust-strip,
  .category-grid,
  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .benefit-card,
  .step-card,
  .info-panel,
  .cta-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .float-card,
  .category-card,
  .button {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}
