
:root {
  --ink: #101626;
  --ink-2: #26324a;
  --muted: #65728b;
  --soft: #eef4ff;
  --soft-2: #f8fbff;
  --white: #ffffff;
  --line: rgba(24, 34, 56, .12);
  --line-strong: rgba(24, 34, 56, .2);
  --glass: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .9);
  --shadow-sm: 0 12px 34px rgba(26, 38, 68, .1);
  --shadow: 0 28px 90px rgba(26, 38, 68, .16);
  --shadow-glow: 0 32px 110px rgba(77, 122, 255, .18);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --accent: #5b7cff;
  --accent-2: #12d6a7;
  --accent-3: #ff5ab8;
  --accent-4: #ffd166;
  --rainbow: linear-gradient(105deg, #ff4f93 0%, #ffd166 24%, #36e7b4 47%, #62a8ff 70%, #a972ff 100%);
  --rainbow-soft: linear-gradient(135deg, rgba(255, 79, 147, .15), rgba(255, 209, 102, .16), rgba(54, 231, 180, .16), rgba(98, 168, 255, .18), rgba(169, 114, 255, .16));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 209, 102, .42), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(98, 168, 255, .34), transparent 32rem),
    radial-gradient(circle at 38% 74%, rgba(255, 90, 184, .18), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 22, 38, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 38, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 70%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  right: -18vmax;
  top: 18vmax;
  width: 48vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 160deg, rgba(255, 79, 147, .2), rgba(255, 209, 102, .2), rgba(54, 231, 180, .18), rgba(98, 168, 255, .2), rgba(169, 114, 255, .2), rgba(255, 79, 147, .2));
  filter: blur(30px);
  opacity: .82;
  pointer-events: none;
  z-index: -3;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(26, 38, 68, .12);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -.04em;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(16, 22, 38, .08);
  box-shadow: 0 14px 30px rgba(26, 38, 68, .14), inset 0 0 0 5px rgba(255,255,255,.65);
}
.brand-mark img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: rotate(-12deg) scale(1.12);
}
.brand-text { font-size: 1.12rem; white-space: nowrap; }
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 850;
  font-size: .92rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-links a:hover {
  background: rgba(91, 124, 255, .09);
  color: var(--accent);
  transform: translateY(-1px);
}
.lang-switch {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.lang-btn {
  border: 1px solid rgba(16, 22, 38, .1);
  background: rgba(255,255,255,.74);
  color: var(--ink-2);
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 9px;
  font-size: .74rem;
  line-height: 1;
  font-weight: 1000;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.active {
  color: #fff;
  background: #101626;
  border-color: #101626;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 74px 0 50px;
}
.hero-copy { position: relative; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--glass-strong);
  border: 1px solid rgba(16,22,38,.08);
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-weight: 950;
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rainbow);
  box-shadow: 0 0 0 6px rgba(91, 124, 255, .1), 0 0 20px rgba(255, 90, 184, .38);
}
h1 {
  margin: 25px 0 22px;
  max-width: 860px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.08em;
}
.gradient-text, h1 span {
  background: linear-gradient(105deg, #101626 4%, #3f58ff 28%, #0fc49a 45%, #ff5ab8 67%, #101626 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: #3d4961;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.7;
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 49px;
  padding: 13px 20px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #101626, #314cff 42%, #00bf9a 100%);
  box-shadow: 0 18px 45px rgba(49, 76, 255, .24);
}
.btn-primary:hover { box-shadow: 0 24px 60px rgba(49, 76, 255, .3); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(16, 22, 38, .11);
  box-shadow: 0 13px 35px rgba(26, 38, 68, .08);
}
.btn-dark {
  color: #fff;
  background: #101626;
  border: 1px solid rgba(16, 22, 38, .1);
  min-height: 42px;
  padding: 11px 16px;
  box-shadow: 0 14px 34px rgba(16, 22, 38, .2);
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto auto;
  width: min(88%, 520px);
  aspect-ratio: 1;
  border-radius: 40% 60% 45% 55%;
  background: var(--rainbow);
  filter: blur(3px);
  opacity: .82;
  animation: floatBlob 10s ease-in-out infinite alternate;
}
@keyframes floatBlob {
  from { transform: rotate(-8deg) translateY(0) scale(.96); border-radius: 40% 60% 45% 55%; }
  to { transform: rotate(10deg) translateY(-12px) scale(1.02); border-radius: 58% 42% 55% 45%; }
}
.hero-image-card {
  position: relative;
  width: min(100%, 548px);
  padding: 14px;
  border-radius: 44px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  isolation: isolate;
  transform: rotate(1.5deg);
}
.hero-glow {
  position: absolute;
  inset: auto -24px -30px 36px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(91, 124, 255, .22), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}
.hero-product-img {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  border-radius: 33px;
  box-shadow: 0 22px 55px rgba(26, 38, 68, .18);
  background: #fff;
}
.hero-chip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(26, 38, 68, .16);
}
.hero-chip strong {
  font-size: 1.55rem;
  letter-spacing: -.06em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-chip span { color: var(--ink-2); font-weight: 950; }

.section { padding: 58px 0; }
.section-title {
  max-width: 800px;
  margin-bottom: 24px;
}
.section-title h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.7vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 620;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.product-showcase img {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(26, 38, 68, .11);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-showcase img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 55px rgba(26, 38, 68, .15);
}
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.columns { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: start; }

.card, .order-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}
.card { padding: 25px; }
.card h3, .card h2 { margin-top: 0; letter-spacing: -.035em; }
.card h3 { font-size: 1.28rem; }
.muted { color: var(--muted); line-height: 1.66; }
.small { font-size: .88rem; line-height: 1.48; }

.variant-card {
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border-color: rgba(16,22,38,.08);
}
.variant-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--rainbow);
}
.variant-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: var(--rainbow-soft);
  pointer-events: none;
}
.variant-card .pack-img { display: none; }
.variant-card .pack-label {
  position: relative;
  margin: 0 0 4px;
  color: var(--accent);
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}
.variant-card h3 {
  position: relative;
  margin: 0 0 8px;
  font-size: 2.55rem;
  line-height: .96;
  letter-spacing: -.07em;
  color: var(--ink);
}
.price {
  position: relative;
  margin-bottom: 7px;
  font-size: 1.62rem;
  font-weight: 1000;
  letter-spacing: -.04em;
}
.price-alt { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 14px; }
.price-pill {
  border: 1px solid rgba(16, 22, 38, .09);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #3d4961;
  font-size: .86rem;
  font-weight: 950;
  padding: 6px 10px;
  box-shadow: 0 8px 24px rgba(26, 38, 68, .07);
}
.variant-card .btn { margin-top: auto; width: 100%; }
.feature-list { margin: 0 0 20px; padding-left: 20px; color: var(--ink-2); line-height: 1.66; }

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr);
  gap: 18px;
  align-items: stretch;
}
.moonpay-card {
  overflow: hidden;
  padding: 28px;
}
.moonpay-card::before {
  content: "";
  position: absolute;
  inset: -110px auto auto -90px;
  width: 270px;
  height: 270px;
  border-radius: 999px;
  background: var(--rainbow-soft);
  pointer-events: none;
}
.moonpay-head {
  position: relative;
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.moonpay-logo {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 1000;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, #7c5cff, #ff5ab8 48%, #ffd166 100%);
  box-shadow: 0 20px 48px rgba(124, 92, 255, .24);
}
.moonpay-head p {
  margin: 0;
  color: #35435d;
  line-height: 1.64;
  font-weight: 700;
}
.moonpay-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.moonpay-steps article {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(16,22,38,.08);
  box-shadow: 0 14px 36px rgba(26, 38, 68, .07);
}
.moonpay-steps article:last-child { grid-column: 1 / -1; }
.moonpay-steps span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 1000;
  background: linear-gradient(135deg, #101626, #5b7cff);
  margin-bottom: 10px;
}
.moonpay-steps h3 { margin: 0 0 6px; font-size: 1.08rem; }
.moonpay-steps p { margin: 0; color: var(--muted); line-height: 1.56; }
.warning {
  position: relative;
  padding: 16px 18px;
  border-radius: 22px;
  color: #5a3d00;
  line-height: 1.58;
  font-weight: 850;
  background: rgba(255, 209, 102, .28);
  border: 1px solid rgba(255, 209, 102, .42);
}
.moonpay-links-card {
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 100%;
}
.moonpay-links-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -100px auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: var(--rainbow-soft);
  pointer-events: none;
}
.link-orb {
  position: relative;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  color: #fff;
  font-size: 3rem;
  font-weight: 1000;
  background: linear-gradient(135deg, #101626, #314cff 45%, #00bf9a);
  box-shadow: 0 22px 55px rgba(49, 76, 255, .24);
}
.moonpay-links-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.moonpay-link-buttons { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }
.moonpay-links-card .small { position: relative; margin: 0; }
.qr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.qr-card { padding: 16px; border-radius: 24px; background: rgba(255,255,255,.65); border: 1px solid rgba(16,22,38,.08); overflow: hidden; }
.qr-card img { width: 120px; background: #fff; padding: 9px; border-radius: 16px; margin-bottom: 10px; }
.address { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .79rem; overflow-wrap: anywhere; margin: 7px 0 12px; }

.order-panel {
  padding: 28px;
  overflow: hidden;
}
.order-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--rainbow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--ink-2); font-weight: 950; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(16, 22, 38, .12);
  background: rgba(255,255,255,.9);
  color: var(--ink);
  border-radius: 18px;
  padding: 13px 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(91, 124, 255, .58);
  box-shadow: 0 0 0 5px rgba(91, 124, 255, .13), inset 0 1px 0 rgba(255,255,255,.8);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.summary {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 22, 38, .96), rgba(40, 50, 82, .92));
  color: #fff;
  box-shadow: 0 20px 55px rgba(16,22,38,.18);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  grid-column: 1;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-row span { color: #bfcaff; }
.summary-row strong {
  text-align: right;
  overflow-wrap: anywhere;
  color: #fff;
}
.selected-qr {
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: center;
  width: 172px;
  max-width: 172px;
  background: #fff;
  border-radius: 24px;
  padding: 11px;
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.check input { width: 18px; min-width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }

.contact-card, .terms-card { overflow: hidden; }
.contact-card::before, .terms-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: var(--rainbow-soft);
  pointer-events: none;
}
.contact-card a {
  color: var(--accent);
  font-weight: 1000;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.terms-list { display: grid; gap: 12px; position: relative; }
.terms-list p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 21px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(16,22,38,.08);
}
.footer { color: var(--muted); padding: 36px 0 56px; border-top: 1px solid rgba(16,22,38,.1); margin-top: 30px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #101626;
  color: #fff;
  font-weight: 1000;
  box-shadow: var(--shadow);
  transition: .2s ease;
  z-index: 99;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1040px) {
  .topbar { top: 10px; border-radius: 28px; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
  .hero-visual { min-height: 460px; }
  .grid-4, .grid-3, .payment-layout, .columns { grid-template-columns: 1fr 1fr; }
  .product-showcase { grid-template-columns: repeat(2, 1fr); }
  .summary { grid-template-columns: 1fr; }
  .selected-qr { grid-column: 1; grid-row: auto; justify-self: start; }
}
@media (max-width: 700px) {
  .shell { width: min(100% - 22px, 1180px); }
  .topbar { width: min(100% - 22px, 1180px); }
  .nav { gap: 10px; padding: 10px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 15px; }
  .brand-text { font-size: 1.02rem; }
  .lang-switch { justify-content: flex-end; }
  .lang-btn { padding: 8px 8px; font-size: .7rem; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 10px; font-size: .86rem; }
  .hero { gap: 20px; padding: 42px 0 34px; }
  h1 { font-size: clamp(2.85rem, 16vw, 4.4rem); }
  .lead { font-size: 1.04rem; }
  .hero-visual { min-height: auto; }
  .hero-image-card { border-radius: 32px; padding: 10px; transform: rotate(0); }
  .hero-product-img { border-radius: 24px; }
  .hero-chip { position: static; margin-top: 10px; flex-direction: column; align-items: flex-start; }
  .section { padding: 42px 0; }
  .grid-4, .grid-3, .payment-layout, .columns, .qr-grid, .form-grid, .product-showcase, .moonpay-head, .moonpay-steps { grid-template-columns: 1fr; }
  .card, .order-panel, .moonpay-card, .moonpay-links-card { padding: 20px; border-radius: 25px; }
  .variant-card { min-height: auto; }
  .summary-row { flex-direction: column; gap: 3px; }
  .summary-row strong { text-align: left; }
}
