:root {
  --bg: #05060b;
  --bg-soft: #0b0d15;
  --panel: rgba(16, 17, 28, 0.82);
  --panel-solid: #10121d;
  --text: #f6f4fb;
  --muted: #9896a8;
  --line: rgba(255, 255, 255, 0.1);
  --lime: #b99cff;
  --lime-dark: #7554cf;
  --violet: #b99cff;
  --cyan: #6be6f4;
  --danger: #ff7b91;
  --success: #64e6a5;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(151, 112, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 10% 32%, rgba(107, 230, 244, 0.08), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.012), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.section-shell,
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.brand small {
  padding: 4px 6px;
  border: 1px solid rgba(185, 156, 255, 0.34);
  border-radius: 999px;
  color: var(--lime);
  font-family: "DM Sans", sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: linear-gradient(145deg, #d4c2ff, #7554cf);
  box-shadow: 0 0 28px rgba(185, 156, 255, 0.24);
  color: #0c0913;
  transform: rotate(-7deg);
}

.brand-mark span {
  font-weight: 700;
  transform: rotate(7deg);
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 0.76rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-action:hover {
  border-color: rgba(185, 156, 255, 0.5);
  background: rgba(185, 156, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: center;
  min-height: 690px;
  padding-block: 74px 92px;
}

.eyebrow,
.section-kicker {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(100, 230, 165, 0.1);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--success);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

.hero h1,
.section-heading h2,
.faq-intro h2,
.success-modal h2 {
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(3.7rem, 7.1vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 248, 255, 0.56);
}

.hero-copy > p {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d7c7ff, var(--lime));
  box-shadow: 0 14px 34px rgba(185, 156, 255, 0.16);
  color: #100c18;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  background: linear-gradient(135deg, #e5dcff, #c7b1ff);
  box-shadow: 0 18px 40px rgba(185, 156, 255, 0.24);
  transform: translateY(-2px);
}

.text-link {
  color: var(--muted);
  font-size: 0.84rem;
  text-underline-offset: 5px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--text);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  list-style: none;
  color: var(--muted);
  font-size: 0.72rem;
}

.trust-list span {
  margin-right: 5px;
  color: var(--lime);
}

.hero-visual {
  position: relative;
  min-height: 490px;
  perspective: 1100px;
}

.visual-card {
  position: absolute;
  inset: 34px 14px 42px 42px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 42%),
    rgba(15, 22, 43, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  bottom: -140px;
  border: 1px solid rgba(185, 156, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(185, 156, 255, 0.025), 0 0 0 100px rgba(185, 156, 255, 0.018);
}

.visual-topline,
.balance-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-topline {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.coin-stage {
  position: relative;
  flex: 1;
  min-height: 260px;
}

.crow-wing {
  position: absolute;
  width: 260px;
  height: 170px;
  top: 45px;
  left: 55px;
  opacity: 0.34;
  filter: drop-shadow(0 0 28px rgba(185, 156, 255, 0.2));
  transform: rotate(-10deg);
}

.crow-wing,
.crow-wing::before,
.crow-wing::after,
.crow-wing span {
  background: linear-gradient(135deg, rgba(208, 192, 255, 0.56), rgba(72, 51, 126, 0.08));
  clip-path: polygon(0 48%, 76% 0, 55% 32%, 100% 24%, 63% 55%, 91% 72%, 46% 67%, 57% 100%, 27% 75%);
}

.crow-wing::before,
.crow-wing::after,
.crow-wing span {
  content: "";
  position: absolute;
  inset: 0;
}

.crow-wing::before {
  opacity: 0.6;
  transform: translate(-18px, 12px) scale(0.84);
}

.crow-wing::after {
  opacity: 0.35;
  transform: translate(-32px, 24px) scale(0.68);
}

.crow-wing span {
  opacity: 0.2;
  transform: translate(-45px, 36px) scale(0.52);
}

.coin {
  position: absolute;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 10px solid rgba(30, 22, 48, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #efffc6 0 5%, transparent 6%),
    linear-gradient(145deg, #ded2ff, #8260d8);
  box-shadow:
    inset -18px -22px 35px rgba(53, 32, 102, 0.34),
    inset 12px 12px 28px rgba(255, 255, 255, 0.38),
    0 30px 45px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(185, 156, 255, 0.16);
  color: #160f25;
  font-family: "Unbounded", sans-serif;
  transform-style: preserve-3d;
}

.coin::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 2px solid rgba(22, 15, 37, 0.38);
  border-radius: 18px;
  transform: rotate(45deg);
}

.coin span {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  font-weight: 700;
}

.coin-back {
  width: 156px;
  top: 65px;
  left: 66px;
  filter: saturate(0.85) brightness(0.72);
  transform: rotateY(18deg) rotateZ(-18deg) translateZ(-20px);
}

.coin-front {
  width: 190px;
  top: 38px;
  left: 146px;
  z-index: 2;
  transform: rotateY(-14deg) rotateZ(12deg) translateZ(42px);
  animation: coin-float 5s ease-in-out infinite;
}

.coin-small {
  width: 98px;
  top: 170px;
  left: 62px;
  z-index: 3;
  border-width: 7px;
  transform: rotateY(12deg) rotateZ(-8deg) translateZ(68px);
  animation: coin-float 5s 0.8s ease-in-out infinite reverse;
}

.coin-small span {
  font-size: 1.45rem;
}

.balance-row {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.balance-row > div:first-child {
  display: grid;
  gap: 4px;
}

.balance-row span {
  color: var(--muted);
  font-size: 0.68rem;
}

.balance-row strong {
  font-family: "Unbounded", sans-serif;
  font-size: 1.3rem;
}

.trend-badge {
  padding: 8px 10px;
  border: 1px solid rgba(185, 156, 255, 0.24);
  border-radius: 999px;
  background: rgba(185, 156, 255, 0.08);
  color: var(--lime);
  font-size: 0.66rem;
}

.floating-order {
  position: absolute;
  right: -18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(9, 14, 29, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  animation: order-float 4s ease-in-out infinite;
}

.order-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #062115;
  font-weight: 800;
}

.floating-order div {
  display: grid;
  gap: 3px;
}

.floating-order strong {
  font-size: 0.76rem;
}

.floating-order div span {
  color: var(--muted);
  font-size: 0.65rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 160px;
  height: 160px;
  right: -35px;
  top: -6px;
  background: rgba(154, 124, 255, 0.25);
  box-shadow: 0 0 90px rgba(154, 124, 255, 0.35);
}

.orb-two {
  width: 90px;
  height: 90px;
  left: -8px;
  bottom: 28px;
  background: rgba(86, 214, 255, 0.16);
  box-shadow: 0 0 80px rgba(86, 214, 255, 0.26);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  animation: marquee 26s linear infinite;
}

.ticker span {
  color: var(--muted);
  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.topup-section,
.steps-section,
.faq-section {
  padding-block: 112px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.faq-intro h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-card,
.order-summary {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.form-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.step-heading {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(185, 156, 255, 0.24);
  border-radius: 10px;
  background: rgba(185, 156, 255, 0.07);
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
}

.step-heading h3,
.summary-head h3 {
  font-size: 1rem;
}

.step-heading p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

.account-field label,
.contact-grid label {
  display: grid;
  gap: 9px;
  color: #cbd1e0;
  font-size: 0.74rem;
  font-weight: 600;
}

.contact-grid label span {
  color: var(--muted);
  font-weight: 400;
}

.input-action-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: rgba(3, 7, 18, 0.48);
  color: var(--text);
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder {
  color: #616b83;
}

input:focus {
  border-color: rgba(185, 156, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(185, 156, 255, 0.07);
}

input.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 123, 145, 0.07);
}

.secondary-button {
  min-width: 104px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.74rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.secondary-button:hover {
  border-color: rgba(185, 156, 255, 0.38);
  background: rgba(185, 156, 255, 0.07);
}

.secondary-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.field-message {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
}

.field-message.is-success {
  color: var(--success);
}

.field-message.is-error {
  color: var(--danger);
}

.roblox-account-preview {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(105, 237, 179, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(105, 237, 179, 0.08), rgba(185, 156, 255, 0.05));
}

.roblox-account-preview[hidden] {
  display: none;
}

.roblox-account-preview img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  object-fit: cover;
}

.roblox-account-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.roblox-account-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.roblox-account-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roblox-account-copy > span,
.roblox-account-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.account-verification-badge {
  padding: 4px 7px;
  border: 1px solid rgba(185, 156, 255, 0.24);
  border-radius: 999px;
  color: #cdbaff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-verification-badge.is-ownership-verified {
  border-color: rgba(105, 237, 179, 0.3);
  color: var(--success);
}

.roblox-account-preview > a {
  color: #cdbaff;
  font-size: 0.7rem;
  font-weight: 700;
}

.roblox-oauth-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.roblox-oauth-panel strong {
  font-size: 0.76rem;
}

.roblox-oauth-panel p {
  max-width: 520px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.oauth-button:disabled {
  cursor: not-allowed;
}

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

.package-option,
.payment-option {
  position: relative;
  cursor: pointer;
}

.package-option input,
.payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.package-content {
  position: relative;
  display: grid;
  min-height: 136px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 20px;
  overflow: hidden;
  border: 2px solid rgba(185, 156, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(17, 26, 47, 0.92), rgba(8, 12, 27, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.package-option:hover .package-content {
  border-color: rgba(185, 156, 255, 0.62);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 0 24px rgba(185, 156, 255, 0.045);
  transform: translateY(-3px);
}

.package-option input:focus-visible + .package-content,
.payment-option input:focus-visible + .payment-content {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.package-option input:checked + .package-content {
  border-color: var(--lime);
  background: linear-gradient(145deg, rgba(185, 156, 255, 0.11), rgba(13, 17, 34, 0.9));
  box-shadow: 0 0 0 1px rgba(185, 156, 255, 0.16), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.package-option.is-unavailable {
  cursor: not-allowed;
}

.package-option.is-unavailable .package-content {
  opacity: 0.36;
  filter: grayscale(0.7);
}

.package-option.is-unavailable:hover .package-content {
  border-color: var(--line);
  transform: none;
}

.package-amount {
  color: #ffffff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.package-unit {
  margin-top: 7px;
  color: #9ebfe8;
  font-size: 0.72rem;
  font-weight: 500;
}

.package-price {
  align-self: end;
  margin-top: 18px;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.payment-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(3, 7, 18, 0.36);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.payment-option:hover .payment-content {
  border-color: rgba(255, 255, 255, 0.22);
}

.payment-option input:checked + .payment-content {
  border-color: var(--lime);
  background: rgba(185, 156, 255, 0.07);
}

.payment-content > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.payment-content strong {
  font-size: 0.76rem;
}

.payment-content small {
  color: var(--muted);
  font-size: 0.62rem;
}

.payment-content > i {
  width: 14px;
  height: 14px;
  border: 1px solid #59637b;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--panel-solid);
}

.payment-option input:checked + .payment-content > i {
  border-color: var(--lime);
  background: var(--lime);
}

.payment-option input:disabled + .payment-content {
  cursor: not-allowed;
  opacity: 0.42;
  filter: grayscale(0.7);
}

.payment-option input:disabled + .payment-content:hover {
  border-color: var(--line);
}

.payment-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  font-size: 0.68rem;
  font-weight: 800;
}

.qris-logo {
  background: #f6f7fb;
  color: #121212;
}

.dana-logo {
  background: #118eea;
}

.gopay-logo {
  background: #00aed6;
}

.bank-logo {
  background: #6b5ce7;
}

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

.order-summary {
  position: sticky;
  top: 24px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.summary-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.summary-head h3 {
  margin-top: 8px;
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.summary-coin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #63469f;
  border-radius: 50%;
  background: var(--lime);
  color: #160f25;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  transform: rotate(-8deg);
}

.summary-product > div:last-child {
  display: grid;
  gap: 4px;
}

.summary-product span {
  font-weight: 700;
}

.summary-product small {
  color: var(--muted);
  font-size: 0.68rem;
}

.summary-details {
  display: grid;
  gap: 13px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.summary-details div,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.summary-details dt,
.summary-details dd {
  font-size: 0.72rem;
}

.summary-details dt {
  color: var(--muted);
}

.summary-details dd {
  max-width: 180px;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-total {
  align-items: end;
  padding: 22px 0;
}

.summary-total span {
  color: var(--muted);
  font-size: 0.72rem;
}

.summary-total strong {
  font-family: "Unbounded", sans-serif;
  font-size: 1.18rem;
}

.checkout-button {
  width: 100%;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.61rem;
  text-align: center;
}

.steps-section {
  border-top: 1px solid var(--line);
}

.compact-heading {
  justify-content: flex-start;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.steps-grid article {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  background: var(--bg-soft);
}

.steps-grid article > span {
  color: var(--muted);
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
}

.step-symbol {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 74px 0 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent);
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
  transform: rotate(-6deg);
}

.steps-grid article:nth-child(2) .step-symbol {
  color: var(--violet);
  transform: rotate(6deg);
}

.steps-grid article:nth-child(3) .step-symbol {
  color: var(--cyan);
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.steps-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 88px;
  border-top: 1px solid var(--line);
}

.faq-intro {
  position: sticky;
  top: 30px;
  align-self: start;
}

.faq-intro h2 {
  max-width: 480px;
}

.faq-intro p {
  max-width: 370px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  color: var(--lime);
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 28px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.footer-brand {
  color: var(--text);
  font-size: 0.82rem;
}

.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.site-footer > span {
  justify-self: end;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 5, 13, 0.82);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.success-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
  text-align: center;
  animation: modal-in 0.3s ease both;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
}

.success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #d7c7ff, var(--lime));
  box-shadow: 0 18px 40px rgba(185, 156, 255, 0.18);
  color: #160f25;
  font-size: 1.5rem;
  font-weight: 800;
  transform: rotate(-6deg);
}

.success-modal h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.success-modal > p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.demo-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
}

.demo-order span {
  color: var(--muted);
}

.demo-order strong {
  color: var(--lime);
}

.modal-done {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #151d34;
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 0.74rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.hero-stock {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(185, 156, 255, 0.24);
  border-radius: 14px;
  background: rgba(185, 156, 255, 0.06);
}

.hero-stock span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-stock i,
.order-status > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 15px rgba(100, 230, 165, 0.7);
}

.hero-stock strong {
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-size: 0.76rem;
}

.catalog-meta {
  display: grid;
  gap: 4px;
  margin-left: auto;
  text-align: right;
}

.catalog-meta span {
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
}

.catalog-meta small {
  color: var(--muted);
  font-size: 0.62rem;
}

.order-identifiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-identifiers .demo-order {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  text-align: left;
}

.demo-order b {
  font-weight: 500;
}

.order-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 194, 107, 0.2);
  border-radius: 12px;
  background: rgba(255, 194, 107, 0.05);
  text-align: left;
}

.order-status > i {
  flex: 0 0 auto;
  margin-top: 5px;
  background: #ffc26b;
  box-shadow: 0 0 15px rgba(255, 194, 107, 0.6);
}

.order-status div {
  display: grid;
  gap: 3px;
}

.order-status strong {
  color: #ffd495;
  font-size: 0.74rem;
}

.order-status span {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.order-status.is-paid {
  border-color: rgba(100, 230, 165, 0.24);
  background: rgba(100, 230, 165, 0.06);
}

.order-status.is-paid > i {
  background: var(--success);
  box-shadow: 0 0 15px rgba(100, 230, 165, 0.7);
}

.order-status.is-paid strong {
  color: var(--success);
}

.order-status.is-cancelled {
  border-color: rgba(255, 113, 139, 0.25);
  background: rgba(255, 113, 139, 0.06);
}

.order-status.is-cancelled > i {
  background: #ff718b;
  box-shadow: 0 0 15px rgba(255, 113, 139, 0.55);
}

.order-status.is-cancelled strong {
  color: #ff9caf;
}

.dana-payment-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 4px 0 16px;
  padding: 20px;
  border: 1px solid rgba(185, 156, 255, 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(185, 156, 255, 0.09), rgba(8, 12, 27, 0.72));
}

.dana-payment-panel[hidden] {
  display: none;
}

.dana-qr-frame {
  display: grid;
  width: 244px;
  min-height: 244px;
  margin-top: 4px;
  padding: 12px;
  place-items: center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.dana-qr-frame:empty {
  display: none;
}

.dana-qr-frame img,
.dana-qr-frame canvas {
  display: block;
  max-width: 220px;
  height: auto;
}

.dana-payment-amount {
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
}

.dana-payment-panel p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.dana-payment-panel small {
  color: #c6b5f0;
  font-size: 0.66rem;
}

.dana-payment-panel .secondary-button {
  min-height: 42px;
  padding: 10px 16px;
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0 100px;
}

.admin-intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.admin-intro h1 {
  margin-top: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.admin-intro h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
}

.admin-intro p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.admin-auth {
  max-width: 720px;
}

.admin-auth h2,
.admin-toolbar h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.15rem;
}

.admin-login-form > label,
.admin-field-grid label {
  display: grid;
  gap: 9px;
  color: #cbd1e0;
  font-size: 0.74rem;
  font-weight: 600;
}

.admin-dashboard[hidden] {
  display: none;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-toolbar h2 {
  margin-top: 8px;
}

.admin-toolbar .secondary-button {
  min-height: 42px;
  padding-inline: 18px;
  cursor: pointer;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.admin-metrics article {
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 17, 28, 0.68);
}

.admin-metrics span,
.admin-metrics small {
  color: var(--muted);
  font-size: 0.67rem;
}

.admin-metrics strong {
  color: var(--lime);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 12px;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-price-field {
  grid-column: 1 / -1;
}

.admin-price-field > label {
  display: block;
  margin-bottom: 9px;
  color: #cbd1e0;
  font-size: 0.74rem;
  font-weight: 600;
}

.currency-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 7, 18, 0.48);
}

.currency-input:focus-within {
  border-color: rgba(185, 156, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(185, 156, 255, 0.07);
}

.currency-input span {
  padding-left: 14px;
  color: var(--muted);
}

.currency-input input {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.admin-save-row p {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.admin-save-row button {
  flex: 0 0 auto;
}

.price-preview .step-heading {
  margin-bottom: 18px;
}

.preview-list {
  display: grid;
}

.preview-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
}

.preview-list div:last-child {
  border-bottom: 0;
}

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

.admin-orders {
  margin-top: 12px;
}

.admin-orders-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.admin-orders-heading .secondary-button,
.admin-order-action .secondary-button {
  min-height: 38px;
  padding-inline: 14px;
  cursor: pointer;
}

.admin-order-list {
  display: grid;
  gap: 8px;
}

.admin-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.5fr) auto;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(3, 7, 18, 0.34);
}

.admin-order-main,
.admin-order-payment,
.admin-order-action {
  display: grid;
  gap: 4px;
}

.admin-order-main span,
.admin-order-main small,
.admin-order-payment span {
  color: var(--muted);
  font-size: 0.66rem;
}

.admin-order-main strong,
.admin-order-payment strong {
  font-size: 0.78rem;
}

.admin-order-action {
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
}

.status-chip {
  padding: 5px 8px;
  border: 1px solid rgba(255, 194, 107, 0.24);
  border-radius: 999px;
  background: rgba(255, 194, 107, 0.07);
  color: #ffd495;
  font-size: 0.57rem;
  font-weight: 700;
}

.status-chip.paid {
  border-color: rgba(100, 230, 165, 0.24);
  background: rgba(100, 230, 165, 0.07);
  color: var(--success);
}

.status-chip.cancelled {
  border-color: rgba(255, 123, 145, 0.24);
  color: var(--danger);
}

.empty-orders {
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 850px) {
  .admin-metrics,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .catalog-meta {
    grid-column: 1 / -1;
    margin: 6px 0 0 52px;
    text-align: left;
  }

  .admin-order-item {
    grid-template-columns: 1fr auto;
  }

  .admin-order-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero-stock,
  .admin-save-row {
    align-items: stretch;
    flex-direction: column;
  }

  .order-identifiers,
  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 46px;
  }

  .admin-intro h1 {
    font-size: clamp(2.3rem, 15vw, 4rem);
  }

  .admin-login-form .input-action-row {
    grid-template-columns: 1fr;
  }

  .admin-login-form button,
  .admin-save-row button {
    width: 100%;
  }

  .admin-orders-heading,
  .admin-order-item {
    grid-template-columns: 1fr;
  }

  .admin-orders-heading {
    display: grid;
  }

  .admin-orders-heading .secondary-button {
    width: 100%;
  }

  .admin-order-main,
  .admin-order-payment,
  .admin-order-action {
    grid-column: auto;
  }

  .admin-order-action {
    grid-auto-flow: row;
  }
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.65); }
  75%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes coin-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .header-action {
    padding-inline: 12px;
  }

  .header-action span {
    display: none;
  }

  .hero {
    gap: 42px;
    padding-block: 62px 76px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15.5vw, 5rem);
  }

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

  .visual-card {
    inset: 18px 4px 36px 16px;
    padding: 22px;
  }

  .coin-front {
    left: 42%;
  }

  .coin-back,
  .coin-small {
    left: 12%;
  }

  .floating-order {
    right: 4px;
  }

  .orb-one {
    right: 0;
  }

  .topup-section,
  .steps-section,
  .faq-section {
    padding-block: 82px;
  }

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

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

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

  .steps-grid article {
    min-height: 280px;
  }

  .step-symbol {
    margin: 46px 0 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .site-footer > span {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-list {
    gap: 10px;
  }

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

  .visual-card {
    border-radius: 24px;
  }

  .coin-front {
    width: 150px;
    left: 39%;
  }

  .coin-back {
    width: 125px;
  }

  .coin-small {
    width: 80px;
    top: 150px;
  }

  .balance-row strong {
    font-size: 1rem;
  }

  .floating-order {
    bottom: 4px;
  }

  .form-card,
  .order-summary {
    padding: 20px;
  }

  .input-action-row,
  .payment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .secondary-button {
    min-height: 44px;
  }

  .roblox-account-preview {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .roblox-account-preview img {
    width: 54px;
    height: 54px;
  }

  .roblox-account-preview > a {
    grid-column: 2;
    justify-self: start;
  }

  .roblox-oauth-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .package-content {
    min-height: 126px;
    padding: 16px;
  }

  .success-modal {
    padding: 34px 22px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
