:root {
  --bg: #071423;
  --bg-deep: #050f1d;
  --panel: rgba(18, 37, 65, .96);
  --panel-deep: rgba(10, 26, 47, .96);
  --line: #29496f;
  --line-bright: #35608f;
  --text: #f6f8ff;
  --muted: #b3c0d4;
  --blue: #5b86f7;
  --gold: #ffc05c;
  --green: #45db8c;
  --danger: #ff6b78;
  --header-h: 100px;
  --shadow: 0 22px 68px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  background: var(--bg);
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
body.landing-page {
  position: relative;
  background: var(--bg);
}
body.landing-page::before {
  content: "";
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url('/assets/img/fixed-bubbles.png') center center / 100% 100% no-repeat;
  pointer-events: none;
}
body.landing-page::after {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(5, 17, 31, .015);
}
body.landing-page main {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  background: #07111f;
  border-bottom: 1px solid rgba(58, 87, 123, .08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 31px;
  font-weight: 820;
  letter-spacing: -.7px;
}
.brand img {
  width: 92px;
  height: 78px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #bac6d8;
  font-size: 20px;
}
.site-nav > a { transition: color .18s ease, transform .18s ease; }
.site-nav > a:hover { color: #fff; transform: translateY(-1px); }
.nav-actions { display: flex; gap: 12px; margin-left: 6px; }
.btn {
  border: 1px solid #315176;
  border-radius: 13px;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  background: #101f35;
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); border-color: #6c91c5; }
.btn-primary { background: #5d86f4; border-color: #6f97ff; }
.btn-ghost { background: rgba(12, 28, 50, .88); }
.btn-danger { background: rgba(111, 24, 38, .72); border-color: rgba(255,107,120,.5); }

.section {
  min-height: 100svh;
  padding: calc(var(--header-h) + 8px) 5.8vw 28px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  position: relative;
}
.section-inner {
  width: min(1510px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero-section {
  padding-top: var(--header-h);
  padding-bottom: 0;
  align-items: flex-start;
}
.hero-grid {
  display: grid;
  grid-template-columns: 49% 51%;
  gap: 24px;
  align-items: start;
  min-height: calc(100svh - var(--header-h));
}
.hero-copy { text-align: center; padding-top: 88px; }
.hero-copy h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(68px, 5.5vw, 92px);
  line-height: .95;
  letter-spacing: -2px;
  font-weight: 790;
}
.hero-copy h2 {
  margin: 35px auto 0;
  color: var(--gold);
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.47;
  letter-spacing: -1.2px;
  font-weight: 760;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 72px 0 40px;
}
.hero-buttons .btn { min-height: 83px; font-size: 22px; padding-inline: 26px; }
.hero-buttons .btn-primary { min-width: 200px; }
.hero-buttons .btn-ghost { min-width: 202px; }
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 24px;
  margin-top: 6px;
}
.feature {
  display: grid;
  grid-template-columns: 48px auto;
  gap: 10px;
  align-items: center;
  text-align: left;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #315076;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #78a4ff;
  font-size: 20px;
  background: rgba(12,30,54,.88);
}
.feature strong { display: block; font-size: 15px; line-height: 1.15; white-space: nowrap; }
.feature span { display: block; color: #c3cde0; font-size: 13px; margin-top: 3px; white-space: nowrap; }
.orbit-card {
  width: min(620px, 96%);
  aspect-ratio: .95 / 1;
  margin: 0 auto;
  border: 2px solid #2d4e79;
  border-radius: 90px;
  background: rgba(18, 36, 63, .97);
  box-shadow: var(--shadow), inset 0 0 60px rgba(24,64,118,.06);
  position: relative;
}
.orbit-ring {
  position: absolute;
  width: 74%;
  height: 74%;
  left: 13%;
  top: 15%;
  border: 1px solid #264772;
  border-radius: 50%;
}
.orbit-center {
  position: absolute;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  border: 1px solid #29486f;
  background: #071425;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.orbit-center img { width: 118px; height: 98px; object-fit: contain; }
.orbit-logo { position: absolute; width: 96px; height: 96px; display: grid; place-items: center; }
.orbit-logo img { width: 100%; height: 100%; object-fit: contain; }
.orbit-logo.gpt { left: 14%; top: 27%; }
.orbit-logo.claude { left: 50%; top: 9%; transform: translateX(-50%); }
.orbit-logo.gemini { right: 8%; top: 26%; }
.orbit-logo.deepseek { left: 15%; bottom: 16%; }
.orbit-logo.grok { right: 8%; bottom: 17%; }
.orbit-logo.extra {
  left: 50%;
  bottom: 4.2%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
}
.orbit-logo.extra img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TOP UP */
.topup-grid, .withdraw-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 20px;
  align-items: center;
}
.topup-left { text-align: center; padding-top: 16px; }
.section-title {
  margin: 0;
  font-size: clamp(52px, 4.5vw, 76px);
  line-height: 1.03;
  letter-spacing: -1.5px;
  font-weight: 760;
}
.section-accent {
  color: #76a4ff;
  font-size: clamp(45px, 4.2vw, 68px);
  margin: 72px 0 0;
  font-weight: 760;
}
.section-sub {
  color: #bac5d8;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.5;
  margin: 0;
}
.topup-note {
  min-height: 170px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.megaphone { width: 165px; height: 165px; object-fit: contain; flex: 0 0 auto; }
.topup-button { min-height: 76px; font-size: 23px; padding-inline: 26px; margin-top: -20px; }
.qris-stage { position: relative; width: min(700px, 100%); margin: 0 auto; }
.qris-card {
  width: min(600px, 86%);
  min-height: 615px;
  margin: 0 auto;
  border: 2px solid #2c4c78;
  border-radius: 88px;
  background: rgba(18,36,63,.97);
  position: relative;
  padding: 26px 34px;
  box-shadow: var(--shadow);
}
.pixel-title {
  color: #ffc45d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  text-transform: uppercase;
}
.qris-wrap { width: 270px; height: 270px; margin: 55px auto 34px; background: #fff; padding: 8px; }
.qris-wrap img { width: 100%; height: 100%; object-fit: cover; }
.success-chip {
  position: absolute;
  right: -18px;
  top: 62px;
  color: var(--green);
  border: 1px solid #315477;
  border-radius: 7px;
  padding: 9px 15px;
  background: #0b1b31;
  font-size: 15px;
}
.amount-chip {
  position: absolute;
  border: 1px solid #33557e;
  background: #0e223e;
  color: #78a5ff;
  padding: 12px 17px;
  border-radius: 11px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.amount-chip.a { left: -145px; top: 145px; font-size: 30px; transform: rotate(10deg); }
.amount-chip.b { right: -95px; top: 270px; font-size: 17px; transform: rotate(-10deg); }
.amount-chip.c { left: -42px; top: 360px; font-size: 13px; transform: rotate(10deg); }
.qris-steps { display: flex; justify-content: center; gap: 76px; margin-top: 10px; }
.qris-steps span { border: 1px solid #315176; padding: 10px 22px; border-radius: 7px; color: #dce5f5; background: #0b1b31; }
.glitch-word {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 27px;
  font-weight: 900;
  text-shadow: -2px 0 #f0f, 2px 0 #0ff;
  letter-spacing: -2px;
}
.glitch-word.tinggal { left: 7px; bottom: 100px; transform: rotate(7deg); }
.glitch-word.lalu { left: 260px; bottom: -18px; transform: rotate(-15deg); }
.glitch-word.masuk { right: -44px; bottom: 30px; transform: rotate(29deg); }

/* WITHDRAW */
.withdraw-left { text-align: center; padding: 8px 20px 0; }
.withdraw-left .section-title { font-size: clamp(66px, 6vw, 98px); }
.withdraw-left .section-accent { margin-top: 38px; font-size: clamp(48px, 4.6vw, 74px); }
.withdraw-copy .section-sub { margin: 70px auto 0; max-width: 680px; font-size: clamp(19px, 1.65vw, 27px); }
.withdraw-button { margin-top: 42px; min-height: 82px; min-width: 224px; font-size: 21px; line-height: 1.15; }
.policy-box {
  margin: 44px auto 0;
  max-width: 560px;
  min-height: 185px;
  border: 1.5px solid #315176;
  background: rgba(17,35,61,.94);
  border-radius: 30px;
  padding: 28px 34px;
  text-align: left;
  color: #c0cbdd;
}
.policy-box strong { color: #fff; display: block; margin-bottom: 22px; font-size: 19px; }
.policy-box span { font-size: 14px; line-height: 1.5; }
.balance-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.balance-flow { display: flex; flex-direction: column; align-items: center; gap: 12px; width: min(560px, 82%); margin-left: 80px; }
.balance-card {
  width: 100%;
  border: 2px solid #1f6dff;
  background: linear-gradient(135deg, rgba(10,35,70,.99), rgba(15,31,57,.99));
  border-radius: 30px;
  padding: 30px 42px 26px;
  box-shadow: 0 0 45px rgba(40,112,255,.14), inset 0 0 28px rgba(60,104,205,.05);
}
.balance-label { font-size: 26px; font-weight: 800; color: #eef5ff; display: flex; gap: 12px; align-items: center; }
.balance-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(145deg,#234e9b,#0b2f6e); box-shadow: 0 0 20px rgba(83,143,255,.22); }
.balance-value { font-size: 55px; font-weight: 900; margin: 8px 0 17px; }
.balance-card .btn { width: 100%; border-radius: 999px; min-height: 58px; font-size: 21px; background: linear-gradient(90deg,#19a2ff,#1773ff); border-color: #1b8eff; }
.flow-arrow { font-size: 42px; color: #4ca2ff; height: 48px; line-height: 42px; }
.destination-card {
  width: 104%;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 2px solid #1b5fca;
  border-radius: 22px;
  background: rgba(16,36,65,.97);
  padding: 20px 22px;
}
.bank-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(145deg,#214e9a,#0d306e); color: #dfeaff; font-size: 28px; }
.destination-card .dest-main { font-size: 22px; font-weight: 800; }
.destination-card .dest-sub { font-size: 13px; color: #9db0ca; margin-bottom: 4px; }
.ready-chip { color: var(--green); background: rgba(0,83,50,.4); border: 1px solid rgba(48,205,126,.45); padding: 10px 14px; border-radius: 999px; white-space: nowrap; }
.mini-wallet {
  position: absolute;
  left: 2px;
  top: 265px;
  width: 175px;
  height: 220px;
  padding: 20px;
  transform: rotate(-16deg);
  border-radius: 24px;
  border: 2px solid #187cff;
  background: linear-gradient(145deg,#102d73,#071c50);
  box-shadow: 0 0 32px rgba(15,129,255,.45), inset 0 0 30px rgba(75,117,255,.22);
  z-index: 4;
}
.wallet-icon { width: 70px; height: 70px; border: 2px solid #4998ff; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 16px; font-size: 30px; background: #163b85; }
.wallet-input { height: 50px; border: 1px solid #3c69e4; border-radius: 12px; display: flex; align-items: center; gap: 6px; padding: 0 12px; font-size: 20px; font-weight: 800; }
.wallet-input span { height: 1px; flex: 1; background: #6894ff; }
.wallet-topup { margin-top: 12px; border-radius: 999px; min-height: 48px; display: grid; place-items: center; background: linear-gradient(90deg,#16baff,#1e7cff); font-size: 13px; font-weight: 850; }

/* MODELS - follows approved MeyKey mockup */
.models-section { padding-top: calc(var(--header-h) + 10px); }
.models-head {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 22px;
  align-items: center;
  margin-bottom: 52px;
}
.models-title h2 { margin: 0; font-size: 68px; line-height: 1; letter-spacing: -2px; }
.models-title p { color: #b7c5da; font-size: 21px; margin: 12px 0 0; }
.tier-nav { display: block; }
.circle-nav {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(16,36,64,.92);
  color: #fff;
  border: 1.5px solid #416a9f;
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 20px rgba(57,107,183,.08);
}
.circle-nav:hover { box-shadow: 0 0 22px rgba(255,255,255,.14); }
.tier-tabs {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: stretch;
  border: 1.5px solid #294c79;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(10,25,46,.9);
}
.tier-tab { color: #a9bad2; background: transparent; border: 0; font-weight: 800; font-size: 20px; position: relative; }
.tier-tab + .tier-tab::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: #294563; }
.tier-tab.selected {
  color: #152341;
  background: linear-gradient(180deg,#fff,#f0f3f8);
  box-shadow: 0 0 27px rgba(255,255,255,.72), inset 0 0 14px rgba(255,255,255,.9);
  border-radius: 21px;
  margin: 8px;
}
.tier-tab.selected::before { display: none; }
.provider-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 15px; }
.provider-card {
  min-width: 0;
  min-height: 286px;
  border: 1.5px solid #31537f;
  border-radius: 29px;
  background: linear-gradient(145deg,rgba(17,36,62,.98),rgba(14,31,55,.98));
  padding: 26px 20px 22px;
  box-shadow: inset 0 0 38px rgba(35,86,150,.045);
}
.provider-top { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center; }
.provider-logo { width: 72px; height: 72px; object-fit: contain; border-radius: 14px; }
.provider-name { font-size: 21px; font-weight: 850; }
.provider-company { font-size: 15px; color: #aebdd3; margin-top: 4px; }
.variant-box {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  min-height: 70px;
  border: 1px solid #33557e;
  border-radius: 13px;
  background: rgba(17,38,68,.98);
  padding: 7px 4px;
}
.variant-arrow { background: transparent; color: #fff; border: 0; font-size: 31px; line-height: 1; padding: 0; }
.variant-arrow:hover { text-shadow: 0 0 12px rgba(255,255,255,.65); }
.variant-text { text-align: center; min-width: 0; }
.variant-name { color: #e2eaf6; font-size: 14px; font-weight: 760; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.variant-caption { color: #91a5c0; font-size: 11px; margin-top: 4px; }
.provider-price { margin-top: 20px; padding-top: 18px; border-top: 1px solid #263f60; font-size: 18px; font-weight: 850; }
.why-box {
  width: min(710px,70vw);
  margin: 50px auto 0;
  border: 1.5px solid #31537d;
  border-radius: 31px;
  background: rgba(16,34,58,.95);
  padding: 23px 32px 24px;
}
.why-box h3 { text-align: center; font-size: 22px; margin: 0 0 18px; }
.why-row { display: flex; align-items: center; gap: 18px; margin: 12px 0; font-weight: 700; }
.check { width: 36px; height: 36px; border: 3px solid #050b13; display: grid; place-items: center; color: #58b63d; font-size: 37px; line-height: 1; }

/* FAQ */
.faq-section { padding-top: calc(var(--header-h) + 20px); }
.faq-section .section-inner { width: min(1430px, 88%); }
.faq-title { text-align: center; margin: 0 0 34px; font-size: 56px; line-height: 1; }
.faq-sub { text-align: center; color: #9fb0c8; margin: 0 0 46px; font-size: 18px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 32px; }
.faq-card {
  border: 1.5px solid #315176;
  border-radius: 22px;
  background: rgba(16,34,58,.94);
  padding: 25px 28px;
  min-height: 126px;
}
.faq-card h3 { margin: 0 0 15px; font-size: 17px; }
.faq-card p { margin: 0; color: #b6c2d4; line-height: 1.55; font-size: 15px; }
.desktop-only { display: inline; }
/* Auth / account pages */
.simple-page { min-height: 100vh; padding-top: var(--header-h); display: grid; place-items: center; }
.auth-shell { width: min(1050px, 92vw); display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #315176; border-radius: 34px; overflow: hidden; background: rgba(7,23,42,.94); box-shadow: var(--shadow); }
.auth-art { padding: 56px; background: radial-gradient(circle at 30% 30%, rgba(75,119,225,.22), transparent 48%), rgba(13,31,54,.94); display: flex; flex-direction: column; justify-content: space-between; min-height: 620px; }
.auth-art h1 { font-size: 53px; margin: 0; line-height: 1.05; }
.auth-art p { color: #b7c4d8; font-size: 19px; line-height: 1.55; }
.auth-form { padding: 54px 50px; background: rgba(5,17,31,.97); }
.auth-form h2 { font-size: 34px; margin: 0 0 8px; }
.auth-form > p { color: #9eb0ca; margin: 0 0 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; color: #d8e1ef; font-size: 14px; margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; color: #fff; border: 1px solid #315176; background: #0d2039; border-radius: 12px; padding: 14px 15px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #79a3df; box-shadow: 0 0 0 3px rgba(93,135,247,.12); }
.form-message { min-height: 24px; margin: 10px 0; color: #ffb6bd; font-size: 14px; }
.or-divider { display: flex; align-items: center; gap: 12px; color: #7488a4; margin: 22px 0; font-size: 13px; }
.or-divider::before, .or-divider::after { content: ""; height: 1px; background: #233e60; flex: 1; }
.google-btn { width: 100%; min-height: 52px; border: 1px solid #476481; border-radius: 12px; background: #fff; color: #152238; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 10px; }
.google-g { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 950; color: #4285f4; background: white; border: 1px solid #e2e6ea; }
.auth-switch { text-align: center; margin-top: 22px; color: #9aabc2; }
.auth-switch a { color: #86aaff; font-weight: 750; }

.account-page { min-height: 100vh; padding: calc(var(--header-h) + 36px) 5vw 60px; }
.account-wrap { width: min(1180px, 100%); margin: 0 auto; }
.account-head { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 28px; }
.account-head h1 { margin: 0; font-size: 44px; }
.account-head p { color: #9daec7; margin: 7px 0 0; }
.panel { border: 1px solid #315176; border-radius: 24px; background: rgba(12,29,52,.95); padding: 26px; box-shadow: 0 14px 44px rgba(0,0,0,.13); }
.dashboard-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.balance-mini { font-size: 40px; font-weight: 900; margin: 10px 0 22px; }
.key-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.key-list { display: grid; gap: 12px; margin-top: 18px; }
.key-item { display: flex; justify-content: space-between; align-items: center; gap: 18px; background: #0a1c33; border: 1px solid #27466a; border-radius: 14px; padding: 14px 16px; }
.key-preview { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #d9e5f5; }
.key-meta { color: #869ab5; font-size: 12px; }
.key-reveal { margin-top: 16px; border: 1px solid rgba(67,217,139,.38); background: rgba(5,75,47,.28); border-radius: 14px; padding: 16px; display: none; }
.key-reveal.show { display: block; }
.key-reveal code { display: block; word-break: break-all; margin-top: 8px; font-size: 15px; }

.admin-tabs { display: flex; gap: 10px; margin: 18px 0 24px; }
.admin-tab { border: 1px solid #315176; background: #0d213b; color: #bac7d9; border-radius: 12px; padding: 12px 18px; }
.admin-tab.active { background: #fff; color: #13213b; box-shadow: 0 0 18px rgba(255,255,255,.24); }
.admin-provider { border-top: 1px solid #274463; padding: 22px 0; }
.admin-provider:first-child { border-top: 0; padding-top: 0; }
.admin-provider-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.admin-provider-head img { width: 44px; height: 44px; object-fit: contain; }
.variant-editor-row { display: grid; grid-template-columns: 1.4fr .6fr auto; gap: 10px; margin: 10px 0; }
.admin-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px; }

.status-card { width: min(740px, 92vw); text-align: center; }
.status-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px rgba(67,217,139,.7); display: inline-block; margin-right: 10px; }
.status-big { font-size: 34px; font-weight: 900; margin: 24px 0 10px; }
.status-meta { color: #a6b5c9; }

@media (max-width: 1150px) {
  .site-nav { gap: 20px; font-size: 16px; }
  .hero-grid, .topup-grid, .withdraw-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-left: 0; text-align: center; }
  .hero-copy h2 { margin-left: auto; margin-right: auto; }
  .orbit-card, .qris-card { margin: 0 auto; width: min(560px, 94vw); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .models-head { grid-template-columns: 1fr; }
  .section { min-height: auto; scroll-snap-align: none; padding-top: calc(var(--header-h) + 48px); }
  html { scroll-snap-type: none; }
  .withdraw-left { padding-left: 0; }
}

@media (max-width: 780px) {
  :root { --header-h: 78px; }
  body::before { opacity: .35; background-size: auto 100vh; }
  .site-header { height: var(--header-h); padding: 0 12px; }
  .brand { font-size: 22px; gap: 7px; }
  .brand img { width: 52px; height: 48px; }
  .site-nav { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn { min-height: 42px; padding: 0 13px; font-size: 13px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .feature-row { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .feature strong, .feature span { white-space: normal; }
  .orbit-card { border-radius: 54px; }
  .orbit-logo { width: 58px; height: 58px; }
  .orbit-center { width: 90px; height: 90px; }
  .orbit-center img { width: 70px; }
  .qris-card { min-height: 520px; border-radius: 54px; padding: 28px 20px; }
  .qris-wrap { width: 230px; height: 230px; margin-top: 54px; }
  .amount-chip.a, .amount-chip.b, .amount-chip.c { display: none; }
  .qris-steps { gap: 12px; }
  .qris-steps span { padding: 8px 14px; }
  .provider-grid, .faq-grid, .dashboard-grid { grid-template-columns: 1fr; }
  .why-box { width: 100%; padding: 22px; }
  .tier-nav { display: block; }
  .tier-tabs { min-height: 64px; border-radius: 20px; }
  .tier-tab { font-size: 13px; }
  .tier-tab.selected { margin: 5px; border-radius: 16px; }
  .models-title h2 { font-size: 52px; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-art { display: none; }
  .auth-form { padding: 36px 24px; }
  .account-head { align-items: flex-start; flex-direction: column; }
  .variant-editor-row { grid-template-columns: 1fr; }
}
#mobileActions { display: none; }
@media (max-width: 780px) { #mobileActions { display: flex; } }

/* Responsive landing adjustments */
@media (max-width: 1180px) {
  .site-nav { gap: 22px; font-size: 16px; }
  .brand img { width: 72px; height: 64px; }
  .hero-grid, .topup-grid, .withdraw-grid { grid-template-columns: 1fr; }
  .section { min-height: auto; scroll-snap-align: none; padding-top: calc(var(--header-h) + 50px); padding-bottom: 70px; }
  html { scroll-snap-type: none; }
  .hero-copy { padding-top: 0; }
  .orbit-card { width: min(560px,92vw); margin-top: 26px; }
  .topup-note { margin-top: 30px; }
  .qris-stage { margin-top: 48px; }
  .balance-stage { margin-top: 40px; }
  .provider-grid { grid-template-columns: repeat(2,1fr); }
  .models-head { grid-template-columns: 1fr; gap: 26px; }
  .why-box { width: min(710px,100%); }
}

@media (max-width: 780px) {
  :root { --header-h: 78px; }
  body.landing-page::before { opacity: .42; background-size: auto 100%; }
  .site-header { height: var(--header-h); padding: 0 12px; }
  .brand { font-size: 22px; gap: 7px; }
  .brand img { width: 55px; height: 50px; }
  .site-nav { display: none; }
  #mobileActions { display: flex; }
  .nav-actions .btn { min-height: 42px; padding: 0 13px; font-size: 13px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .hero-copy h1 { font-size: 64px; }
  .hero-copy h2 { font-size: 39px; }
  .hero-buttons { margin-top: 36px; }
  .hero-buttons .btn { min-height: 58px; font-size: 16px; }
  .feature-row { grid-template-columns: 1fr; justify-items: start; width: 280px; margin-inline: auto; }
  .orbit-card { border-radius: 52px; }
  .orbit-logo { width: 58px; height: 58px; }
  .orbit-center { width: 90px; height: 90px; }
  .orbit-center img { width: 72px; }
  .section-title { font-size: 46px; }
  .section-accent { font-size: 40px; margin-top: 35px; }
  .topup-note { display: block; min-height: 0; }
  .megaphone { width: 120px; height: 120px; }
  .section-sub { font-size: 20px; }
  .qris-card { width: min(100%, 520px); min-height: 520px; border-radius: 50px; padding: 24px 18px; }
  .qris-wrap { width: 220px; height: 220px; margin-top: 54px; }
  .amount-chip.a, .amount-chip.b, .amount-chip.c, .glitch-word { display: none; }
  .qris-steps { gap: 12px; }
  .qris-steps span { padding: 8px 14px; }
  .withdraw-left .section-title { font-size: 60px; }
  .withdraw-left .section-accent { font-size: 42px; }
  .withdraw-copy .section-sub { margin-top: 34px; }
  .desktop-only { display: none; }
  .policy-box { min-height: 0; }
  .balance-flow { width: 100%; margin-left: 0; }
  .mini-wallet { display: none; }
  .balance-card { padding: 24px; }
  .balance-value { font-size: 42px; }
  .destination-card { width: 100%; grid-template-columns: 48px 1fr; }
  .destination-card .ready-chip { grid-column: 1 / -1; justify-self: start; }
  .provider-grid, .faq-grid, .dashboard-grid { grid-template-columns: 1fr; }
  .tier-nav { display: block; }
  .tier-tabs { min-height: 64px; border-radius: 20px; }
  .tier-tab { font-size: 13px; }
  .tier-tab.selected { margin: 5px; border-radius: 16px; }
  .models-title h2 { font-size: 52px; }
  .faq-section .section-inner { width: 100%; }
  .faq-title { font-size: 50px; }
  .faq-grid { gap: 18px; }
}

/* =========================================================
   MeyKey v1.5 — Page 2 + Page 3 follow Canva composition.
   IMPORTANT: this does not redesign the Canva artwork; it
   recreates the same model/layout with website elements.
   Page 1, Page 4, login, dashboard and admin stay untouched.
   ========================================================= */
@media (min-width: 1181px) {
  .topup-section,
  .withdraw-section {
    padding: var(--header-h) 0 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .topup-section .section-inner,
  .withdraw-section .section-inner {
    width: min(1700px, 92vw);
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    container-type: inline-size;
  }

  /* ---------- PAGE 2 / TOP UP ---------- */
  .topup-grid {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .topup-left {
    position: absolute;
    inset: 0;
    padding: 0;
    text-align: left;
  }

  .topup-left .section-title {
    position: absolute;
    left: 12.8%;
    top: 23.2%;
    margin: 0;
    width: 43%;
    max-width: none;
    white-space: nowrap;
    font-size: 3.95cqw;
    line-height: 1;
    letter-spacing: -0.10cqw;
    font-weight: 780;
  }

  .topup-left .section-accent {
    position: absolute;
    left: 21.2%;
    top: 40.8%;
    margin: 0;
    color: #79a3ff;
    font-size: 3.95cqw;
    line-height: 1;
    letter-spacing: -0.08cqw;
    font-weight: 780;
  }

  .topup-note {
    position: absolute;
    left: 6.4%;
    top: 57.2%;
    width: 39.5%;
    height: 26%;
    min-height: 0;
    margin: 0;
    display: block;
  }

  .topup-note .megaphone {
    position: absolute;
    left: 0;
    bottom: 1%;
    width: 11.8cqw;
    height: 11.8cqw;
    object-fit: contain;
  }

  .topup-note .section-sub {
    position: absolute;
    left: 9.8cqw;
    top: 5.5%;
    margin: 0;
    width: max-content;
    white-space: nowrap;
    color: #b8c2d4;
    font-size: 2.18cqw;
    line-height: 1.2;
    font-weight: 420;
  }

  .topup-button {
    position: absolute;
    left: 21.2%;
    top: 69.5%;
    width: 18.8%;
    min-width: 0;
    min-height: 0;
    height: 10.4%;
    margin: 0;
    padding: 0 1.4cqw;
    border-radius: 0.75cqw;
    font-size: 1.62cqw;
    font-weight: 780;
  }

  .qris-stage {
    position: absolute;
    left: 47.0%;
    top: 23.5%;
    width: 47.3%;
    height: 65.5%;
    min-height: 0;
    margin: 0;
  }

  .qris-card {
    position: absolute;
    left: 5.4%;
    top: 0;
    width: 73.3%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 2.2% 4.2% 3.5%;
    border: 0.12cqw solid #2f5079;
    border-radius: 4.2cqw;
    background: rgba(18,36,63,.97);
    box-shadow: var(--shadow);
  }

  .pixel-title {
    position: absolute;
    top: 3.6%;
    left: 20%;
    width: 60%;
    font-size: 1.42cqw;
    line-height: 1.15;
    letter-spacing: .04cqw;
  }

  .success-chip {
    right: -8.5%;
    top: 10.2%;
    padding: 1.1% 2.5%;
    border-radius: .42cqw;
    font-size: .95cqw;
    white-space: nowrap;
  }

  .qris-wrap {
    position: absolute;
    left: 28.6%;
    top: 24.2%;
    width: 43.8%;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    padding: .52cqw;
  }

  .qris-steps {
    position: absolute;
    left: 11.5%;
    right: 11.5%;
    bottom: 6.5%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .qris-steps span {
    min-width: 5.6cqw;
    padding: .55cqw 1.05cqw;
    text-align: center;
    border-radius: .38cqw;
    font-size: 1.02cqw;
  }

  .amount-chip {
    padding: .72cqw 1.05cqw;
    border-radius: .62cqw;
  }

  .amount-chip.a {
    left: -13.5%;
    top: 18.2%;
    font-size: 2.35cqw;
    transform: rotate(10deg);
  }

  .amount-chip.b {
    right: -10.8%;
    top: 37.5%;
    font-size: 1.15cqw;
    transform: rotate(-10deg);
  }

  .amount-chip.c {
    left: 0.7%;
    top: 54.0%;
    font-size: .80cqw;
    transform: rotate(10deg);
  }

  .glitch-word {
    font-size: 1.42cqw;
  }

  .glitch-word.tinggal {
    left: -8.5%;
    bottom: 15.0%;
    transform: rotate(7deg);
  }

  .glitch-word.lalu {
    left: 31%;
    bottom: -5.0%;
    transform: rotate(-15deg);
  }

  .glitch-word.masuk {
    right: -2.0%;
    bottom: 0.8%;
    transform: rotate(29deg);
  }

  /* ---------- PAGE 3 / WITHDRAW ---------- */
  .withdraw-grid {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .withdraw-left {
    position: absolute;
    inset: 0;
    padding: 0;
    text-align: left;
  }

  .withdraw-left .section-title {
    position: absolute;
    left: 13.7%;
    top: 17.0%;
    margin: 0;
    font-size: 5.78cqw;
    line-height: .95;
    letter-spacing: -0.20cqw;
  }

  .withdraw-left .section-accent {
    position: absolute;
    left: 13.9%;
    top: 29.7%;
    margin: 0;
    color: #79a3ff;
    font-size: 3.72cqw;
    line-height: 1;
    letter-spacing: -0.08cqw;
  }

  .withdraw-copy .section-sub {
    position: absolute;
    left: 8.5%;
    top: 46.0%;
    width: 38%;
    max-width: none;
    margin: 0;
    text-align: center;
    color: #b8c2d4;
    font-size: 1.48cqw;
    line-height: 1.35;
    font-weight: 420;
  }

  .withdraw-button {
    position: absolute;
    left: 24.2%;
    top: 58.2%;
    width: 13.4%;
    height: 9.4%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0 1cqw;
    border-radius: .65cqw;
    font-size: 1.30cqw;
    line-height: 1.08;
    text-align: center;
  }

  .policy-box {
    position: absolute;
    left: 9.3%;
    top: 72.0%;
    width: 34.3%;
    height: 21.8%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 2.05% 2.3%;
    border-radius: 1.8cqw;
  }

  .policy-box strong {
    margin: 0 0 1.35cqw;
    font-size: 1.10cqw;
    line-height: 1.1;
  }

  .policy-box span {
    display: block;
    width: 100%;
    font-size: .86cqw;
    line-height: 1.40;
  }

  .balance-stage {
    position: absolute;
    inset: 0;
    min-height: 0;
    display: block;
    padding: 0;
  }

  .balance-flow {
    position: absolute;
    left: 57.1%;
    top: 29.6%;
    width: 32.1%;
    margin: 0;
    gap: 0;
    display: block;
  }

  .balance-card {
    width: 100%;
    height: 17.1cqw;
    max-height: 17.1cqw;
    min-height: 0;
    border-radius: 1.65cqw;
    padding: 2.05cqw 2.7cqw 1.9cqw;
  }

  .balance-label {
    font-size: 1.72cqw;
    gap: .82cqw;
    line-height: 1;
  }

  .balance-icon {
    width: 3.7cqw;
    height: 3.7cqw;
    border-radius: .82cqw;
    padding: .62cqw;
  }
  .balance-icon img,
  .wallet-icon img,
  .bank-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .balance-value {
    font-size: 3.55cqw;
    line-height: 1;
    margin: 1.0cqw 0 1.35cqw;
  }

  .balance-card .btn {
    width: 100%;
    min-height: 0;
    height: 4.25cqw;
    border-radius: 999px;
    font-size: 1.42cqw;
  }

  .flow-arrow {
    position: absolute;
    left: 48%;
    top: 17.7cqw;
    height: auto;
    line-height: 1;
    font-size: 2.45cqw;
  }

  .destination-card {
    position: absolute;
    left: -1.7%;
    top: 21.7cqw;
    width: 106%;
    height: 7.0cqw;
    min-height: 0;
    grid-template-columns: 3.7cqw 1fr auto;
    gap: 1.15cqw;
    padding: 1.0cqw 1.25cqw;
    border-radius: 1.15cqw;
  }

  .bank-icon {
    width: 3.7cqw;
    height: 3.7cqw;
    border-radius: .72cqw;
    padding: .62cqw;
  }

  .destination-card .dest-sub {
    font-size: .82cqw;
    margin-bottom: .24cqw;
  }

  .destination-card .dest-main {
    font-size: 1.38cqw;
  }

  .ready-chip {
    font-size: .82cqw;
    padding: .62cqw .78cqw;
  }

  .mini-wallet {
    left: 45.4%;
    top: 47.8%;
    width: 12.9%;
    height: 27.8%;
    padding: 1.12cqw;
    transform: rotate(-16deg);
    border-radius: 1.35cqw;
  }

  .wallet-icon {
    width: 4.2cqw;
    height: 4.2cqw;
    margin: 0 0 .88cqw;
    padding: .72cqw;
    border-radius: .82cqw;
  }

  .wallet-input {
    height: 3.15cqw;
    font-size: 1.15cqw;
    padding: 0 .75cqw;
  }

  .wallet-topup {
    min-height: 0;
    height: 3.0cqw;
    margin-top: .72cqw;
    font-size: .82cqw;
  }
}

/* MeyKey auth v1.6 */
.verify-card {
  width: min(610px, 92vw);
  border: 1px solid #315176;
  border-radius: 28px;
  background: rgba(7,23,42,.97);
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow);
}
.verify-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #142d50;
  border: 1px solid #365d8e;
  font-size: 34px;
}
.verify-card h1 { margin: 0 0 12px; font-size: 38px; }
.verify-card > p { color: #9fb0c8; line-height: 1.55; }
.verify-email {
  display: inline-block;
  margin: 14px 0 4px;
  padding: 10px 14px;
  border: 1px solid #315176;
  border-radius: 12px;
  background: #0d2039;
  color: #e8eef8;
  font-weight: 800;
  word-break: break-all;
}
.verify-message { min-height: 28px; margin: 18px 0; }
.verify-message.success, .account-notice.success { color: #68dfa2; }
.verify-card .btn { margin: 7px 5px; }
.verify-help { font-size: 13px; margin-top: 22px !important; }
.google-connect-row {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #274463;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.google-connect-row > div { display: grid; gap: 3px; }
.google-connect-row strong { color: #eef4ff; }
.google-connect-row span { color: #8fa4c0; font-size: 13px; }
.is-disabled { opacity: .55; pointer-events: none; }
.account-notice { min-height: 20px; margin-top: 8px; color: #ffb6bd; font-size: 13px; }

@media (max-width: 780px) {
  .verify-card { padding: 30px 20px; }
  .google-connect-row { align-items: flex-start; flex-direction: column; }
}

/* =========================================================
   MeyKey v1.8 — account navigation only.
   Landing/auth/admin visuals and auth/database logic unchanged.
   ========================================================= */
.account-nav-active { border-color: #6f97ff; background: rgba(35,61,103,.94); }
.balance-account-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 10px 0 22px; }
.balance-account-row .balance-mini { margin: 0; }
.balance-withdraw { min-height: 42px; padding: 0 17px; }
.account-model-page { padding-bottom: 80px; }
.account-model-wrap { width: min(1480px,100%); }
.account-model-head { margin-top: 8px; }
.deposit-form { margin-top: 24px; }
.deposit-presets { display: flex; flex-wrap: wrap; gap: 10px; margin: -2px 0 20px; }
.deposit-presets button { border: 1px solid #315176; border-radius: 11px; background: #0d213b; color: #dce7f7; padding: 10px 14px; font-weight: 750; cursor: pointer; }
.deposit-presets button:hover { border-color: #6c91c5; }
.deposit-submit { width: 100%; }
.deposit-submit:disabled { opacity: .52; cursor: not-allowed; transform: none; filter: none; }
.deposit-note { color: #849ab7; line-height: 1.55; margin-top: 14px; }
.withdraw-account-panel { max-width: 680px; }
@media (max-width: 780px) {
  .balance-account-row { align-items: flex-start; flex-direction: column; }
  .nav-actions .account-nav-active { display: none; }
}

/* =========================================================
   MeyKey Core v3.0 — account/admin operational UI only.
   Landing page rules above are intentionally untouched.
   ========================================================= */
.core-wide { width: min(1440px,100%); }
.core-two-col { display:grid; grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr); gap:22px; }
.core-section-gap { margin-top:22px; }
.core-section-title { margin:0 0 20px; }
.core-eyebrow { color:#9fb0c7; }
.core-muted { color:#91a4bf; line-height:1.55; }
.core-copy { max-width:760px; }
.core-center { text-align:center; }
.core-divider { height:1px; background:#274463; margin:24px 0; }
.core-message { min-height:22px; margin-top:8px; color:#ffb6bd; font-size:14px; }
.core-message.success { color:#68dfa2; }
.core-info-box { display:grid; gap:7px; margin-top:22px; padding:18px; border:1px solid #315176; border-radius:16px; background:#0a1b31; }
.core-info-box span { color:#9fb0c7; line-height:1.55; }
.core-empty { min-height:440px; display:grid; place-content:center; justify-items:center; text-align:center; gap:8px; color:#8fa1ba; }
.core-empty strong { color:#eef4ff; font-size:22px; }
.core-empty-row { color:#8fa1ba; padding:18px 2px; }
.core-qr-panel { min-height:520px; }
.core-qr-wrap { width:min(330px,82vw); aspect-ratio:1; padding:16px; background:#fff; border-radius:18px; margin:28px auto 16px; display:grid; place-items:center; }
.core-qr-wrap img { width:100%; height:100%; object-fit:contain; }
.core-pay-amount { text-align:center; font-size:34px; font-weight:850; margin:12px 0 4px; }
.core-inline-actions { display:flex; justify-content:center; gap:10px; margin-top:22px; flex-wrap:wrap; }
.core-status { display:inline-flex; align-items:center; min-height:32px; padding:5px 11px; border-radius:999px; border:1px solid #415d82; color:#bdd0e8; background:#11233b; font-size:13px; font-weight:750; white-space:nowrap; }
.core-status.success { color:#78e8aa; border-color:rgba(69,219,140,.38); background:rgba(24,102,67,.2); }
.core-status.danger { color:#ffafb8; border-color:rgba(255,107,120,.38); background:rgba(111,24,38,.24); }
.core-status.pending { color:#b9ceff; border-color:#3d5f8c; background:#102541; }
.core-list { display:grid; gap:10px; margin-top:20px; }
.core-list-row { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:70px; padding:14px 16px; border:1px solid #274463; border-radius:14px; background:#0b1c32; }
.core-row-meta { color:#879db9; font-size:13px; margin-top:5px; overflow-wrap:anywhere; }
.core-list-actions { display:flex; align-items:center; justify-content:flex-end; gap:8px; flex-wrap:wrap; }
.core-small-btn { min-height:36px; padding:0 12px; border-radius:10px; font-size:13px; }
.core-money-positive { color:#68dfa2; }
.core-money-negative { color:#ffadb6; }
.core-table-wrap { overflow:auto; margin-top:20px; border:1px solid #274463; border-radius:15px; }
.core-table { width:100%; border-collapse:collapse; min-width:860px; }
.core-table th,.core-table td { text-align:left; padding:13px 14px; border-bottom:1px solid #203b5a; vertical-align:middle; }
.core-table th { color:#9fb0c7; background:#0a1a2f; font-size:13px; position:sticky; top:0; }
.core-table tr:last-child td { border-bottom:0; }
.core-table td { color:#e7edf8; font-size:13px; }
.core-table-actions { display:flex; gap:7px; flex-wrap:wrap; }
.core-table-input { width:100%; min-width:120px; border:1px solid #315176; border-radius:9px; background:#091b31; color:#fff; padding:9px 10px; outline:none; }
.core-table-input:focus { border-color:#79a3df; }
.core-gateway-table { min-width:1120px; }
.core-health-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.core-health-grid > div { display:grid; gap:6px; padding:15px; border:1px solid #274463; border-radius:13px; background:#0a1b31; }
.core-health-grid span { color:#8fa2bd; font-size:13px; }
.core-health-grid strong { font-size:18px; }
.core-code-lines { display:grid; gap:9px; margin:18px 0; }
.core-code-lines code { display:block; padding:12px 14px; background:#07172a; border:1px solid #274463; border-radius:10px; overflow-wrap:anywhere; }
.core-admin-nav { flex-wrap:wrap; justify-content:flex-end; }

@media (max-width: 980px) {
  .core-two-col,.core-health-grid { grid-template-columns:1fr; }
  .core-admin-nav .btn { padding-inline:12px; }
}
@media (max-width: 700px) {
  .core-list-row { align-items:flex-start; flex-direction:column; }
  .core-list-actions { justify-content:flex-start; }
  .core-qr-panel { min-height:0; }
  .core-empty { min-height:280px; }
}

/* MeyKey v3.2.9 — profile, search, finance workflow, API analytics */
.finance-pagebar{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin:12px 0}.finance-limit{display:flex;align-items:center;gap:8px;color:#94a7c1;font-size:13px}.finance-limit select{width:auto;min-width:72px}.finance-pager{display:flex;gap:6px;align-items:center;flex-wrap:wrap}.finance-page-btn{min-width:36px;padding:6px 9px}.finance-page-btn.active{border-color:#7297ff;background:#4264bd;color:#fff}.finance-summary{color:#94a7c1;font-size:13px}
.profile-shell{position:relative;margin-left:auto}.profile-button{width:50px;height:50px;border-radius:50%;border:1px solid #315176;background:#12233c;color:#fff;display:grid;place-items:center;padding:0;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.18)}.profile-button:hover{border-color:#6f91d8}.profile-avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#6688ef,#8bb8ff);color:#071426;font-weight:900;font-size:15px;overflow:hidden}.profile-avatar img,.account-avatar-large img{width:100%;height:100%;object-fit:cover}.profile-menu{position:absolute;right:0;top:60px;z-index:80;width:230px;border:1px solid #315176;border-radius:16px;background:#0c1b31;box-shadow:0 18px 60px rgba(0,0,0,.38);padding:8px}.profile-menu-head{padding:10px 12px 12px;border-bottom:1px solid #203b5a;margin-bottom:6px}.profile-menu-head strong,.profile-menu-head span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.profile-menu-head span{font-size:12px;color:#8fa2bd;margin-top:4px}.profile-menu a,.profile-menu button{display:flex;width:100%;border:0;background:transparent;color:#dfe9f7;text-decoration:none;padding:11px 12px;border-radius:10px;font:inherit;text-align:left;cursor:pointer}.profile-menu a:hover,.profile-menu button:hover,.profile-menu a.active{background:#142b49;color:#fff}.profile-menu button{margin-top:4px;border-top:1px solid #203b5a;border-radius:0 0 10px 10px;color:#ffb1b8}.compact-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.user-list-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin:16px 0 12px}.user-list-toolbar-bottom{margin:14px 0 0}.account-profile-panel{display:flex;gap:22px;align-items:center}.account-avatar-large{width:94px;height:94px;min-width:94px;border-radius:50%;display:grid;place-items:center;overflow:hidden;background:linear-gradient(135deg,#6688ef,#8bb8ff);color:#071426;font-size:28px;font-weight:900;border:2px solid #41628c}.account-profile-main h2{margin:0 0 5px}.account-badges{margin-top:12px}.account-setting-line{margin-top:18px;border:1px solid #274463;border-radius:14px;padding:14px 16px;background:#0a1b31}.account-setting-line strong,.account-setting-line span{display:block}.account-setting-line span{color:#8fa2bd;font-size:13px;margin-top:4px}.account-quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}.account-quick-card{display:block;border:1px solid #315176;border-radius:14px;background:#0a1b31;text-decoration:none;padding:16px;color:#fff}.account-quick-card:hover{border-color:#6f91d8}.account-quick-card strong,.account-quick-card span{display:block}.account-quick-card span{color:#91a5bf;font-size:13px;margin-top:5px}.api-usage-head{display:flex;align-items:end;justify-content:space-between;gap:16px}.api-date-control{display:flex;gap:8px;align-items:center}.api-date-control input,.table-search{border:1px solid #315176;border-radius:10px;background:#091b31;color:#fff;padding:10px 12px;outline:none}.api-date-control input:focus,.table-search:focus{border-color:#79a3df}.api-summary-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.api-summary-grid .panel{padding:18px}.api-summary-grid span{display:block;color:#91a5bf;font-size:13px}.api-summary-grid strong{display:block;margin-top:7px;font-size:24px}.api-chart{height:240px;display:grid;grid-template-columns:repeat(24,minmax(9px,1fr));align-items:end;gap:5px;margin-top:24px;padding:12px 8px 0;border-left:1px solid #203b5a;border-bottom:1px solid #203b5a;background:linear-gradient(180deg,rgba(74,116,190,.05),transparent)}.api-chart-col{height:100%;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;gap:4px;min-width:0}.api-chart-col span{font-size:9px;color:#9fb7d3;min-height:12px}.api-chart-bar{width:100%;min-height:2px;border-radius:5px 5px 1px 1px;background:linear-gradient(180deg,#7fa5ff,#4d6fd4);transition:height .2s ease}.api-chart-axis{display:flex;justify-content:space-between;color:#7f96b2;font-size:11px;margin:7px 3px 0}.api-two-col{display:grid;grid-template-columns:1.3fr 1fr;gap:16px}.api-breakdown,.api-history{display:grid;gap:9px;margin-top:16px}.api-breakdown-row,.api-history-row{border:1px solid #274463;border-radius:12px;background:#0a1b31;padding:12px 14px;display:flex;justify-content:space-between;align-items:center;gap:12px;color:#fff}.api-breakdown-row span,.api-history-row span{display:block;color:#8fa2bd;font-size:12px;margin-top:4px}.api-history-row{width:100%;font:inherit;text-align:left;cursor:pointer}.api-history-row:hover,.api-history-row.active{border-color:#6f91d8;background:#122845}.table-search-wrap{min-width:min(320px,100%)}.table-search{width:100%;min-width:260px}.modal-backdrop[hidden]{display:none}.modal-backdrop{position:fixed;inset:0;z-index:120;background:rgba(2,8,18,.72);display:grid;place-items:center;padding:18px}.modal-card{width:min(600px,100%);max-height:90vh;overflow:auto;border:1px solid #315176;border-radius:20px;background:#0c1b31;padding:24px;box-shadow:0 28px 90px rgba(0,0,0,.5)}.modal-card h2{margin-top:0}.modal-info{display:grid;gap:10px;margin:14px 0 18px}.modal-info>div{border:1px solid #274463;border-radius:12px;padding:12px;background:#09182b}.modal-info span,.modal-info strong{display:block}.modal-info span{font-size:12px;color:#8fa2bd;margin-top:3px}.modal-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:18px}.modal-label{display:block;color:#aabbd0;font-size:13px;margin:13px 0 6px}.modal-input{width:100%}.withdraw-qr-wrap{display:grid;place-items:center;margin:14px 0}.withdraw-qr-wrap img{width:min(300px,80vw);height:auto;background:#fff;padding:12px;border-radius:14px}.withdraw-mobile-page{min-height:100vh;display:grid;place-items:center;padding:22px}.withdraw-mobile-card{width:min(560px,100%)}.withdraw-mobile-logo{display:flex;align-items:center;gap:10px}.withdraw-mobile-logo img{width:34px;height:34px}.withdraw-pay-details{display:grid;gap:10px;margin:18px 0}.withdraw-pay-details>div{border:1px solid #274463;border-radius:12px;padding:13px;background:#09182b}.withdraw-pay-details span,.withdraw-pay-details strong{display:block}.withdraw-pay-details span{color:#8fa2bd;font-size:12px;margin-bottom:4px}.gw-search-control{min-width:230px;max-width:360px}.gw-list-toggle{gap:8px;align-items:center}.admin-model-search{display:flex;justify-content:flex-end;margin:0 0 14px}.admin-model-search .table-search{max-width:360px}
@media(max-width:900px){.account-quick-grid,.api-summary-grid{grid-template-columns:1fr 1fr}.api-two-col{grid-template-columns:1fr}}@media(max-width:620px){.profile-button{width:46px;height:46px}.profile-avatar{width:38px;height:38px}.account-profile-panel{align-items:flex-start}.account-avatar-large{width:72px;height:72px;min-width:72px}.account-quick-grid,.api-summary-grid{grid-template-columns:1fr}.api-usage-head{align-items:flex-start;flex-direction:column}.api-date-control{width:100%}.api-date-control input{flex:1}.api-chart{gap:2px;height:190px}.api-chart-col span{display:none}.table-search{min-width:0}.modal-actions .btn{flex:1}.finance-pagebar{align-items:flex-start}}
/* v3.2.10 unified user navigation + model pricing */
[hidden]{display:none!important}
.user-header-actions{display:flex;align-items:center;gap:10px;margin-left:auto}.user-header-actions>.btn{min-height:44px;padding:0 16px}.user-header-actions .profile-shell{margin-left:2px}.dashboard-overview-grid{display:grid;grid-template-columns:minmax(300px,.8fr) minmax(520px,1.2fr);gap:22px;align-items:stretch}.dashboard-summary-grid{grid-template-columns:repeat(2,1fr);height:100%}.dashboard-summary-grid .panel{border-radius:18px}.variant-editor-row-model-only{grid-template-columns:minmax(260px,1fr) auto}.user-model-page{padding-top:calc(var(--header-h) + 38px)}.user-model-page .models-head{margin-bottom:26px}.user-model-page .why-box{margin-top:42px}.provider-price{line-height:1.45}.profile-menu a[href="/dashboard"]{border-top:1px solid #203b5a;margin-top:4px}.profile-menu button{border-top:0}.landing-user-nav{display:flex;align-items:center;gap:10px}.landing-user-nav .profile-shell{margin-left:0}
@media(max-width:1050px){.dashboard-overview-grid{grid-template-columns:1fr}.user-header-actions>.btn{padding:0 12px;font-size:13px}}
@media(max-width:780px){.user-header-actions>.btn{display:none}.user-header-actions{gap:0}.dashboard-summary-grid{grid-template-columns:1fr 1fr}.variant-editor-row-model-only{grid-template-columns:1fr}.user-model-page{padding-left:16px;padding-right:16px}.user-model-page .provider-grid{grid-template-columns:1fr}}
@media(max-width:520px){.dashboard-summary-grid{grid-template-columns:1fr}.api-summary-grid strong{font-size:20px}}
/* v3.2.11 user model catalog + landing split pricing */
.account-dashboard-button{min-width:126px;justify-content:center}
.provider-price.provider-price-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:20px;padding-top:18px;border-top:1px solid #263f60;font-weight:700}
.provider-price-side{min-width:0;padding:0 12px;text-align:left}
.provider-price-side:first-child{padding-left:0}
.provider-price-side+ .provider-price-side{border-left:1px solid #315071;padding-right:0}
.provider-price-label{color:#9fb1ca;font-size:12px;font-weight:750;text-transform:uppercase;letter-spacing:.04em;margin-bottom:7px}
.provider-price-value{font-size:17px;font-weight:850;line-height:1.25;color:#f4f7fb;overflow-wrap:anywhere}
.user-model-catalog{padding-top:calc(var(--header-h) + 38px)}
.user-model-catalog .account-wrap{width:min(1320px,calc(100% - 56px))}
.user-model-catalog-head{margin-bottom:22px}
.model-catalog-tabs{margin-bottom:22px;min-height:72px}
.model-catalog-panel{padding:0;overflow:hidden}
.model-catalog-summary{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px 26px;border-bottom:1px solid #29425f}
.model-catalog-summary strong{font-size:22px}.model-catalog-summary span{color:#9eb0c9}
.model-catalog-table-wrap{overflow-x:auto}
.model-catalog-table{width:100%;border-collapse:collapse;min-width:760px}
.model-catalog-table th,.model-catalog-table td{text-align:left;padding:18px 24px;border-bottom:1px solid #223b57;vertical-align:middle}
.model-catalog-table th{color:#9eb2ce;font-size:12px;text-transform:uppercase;letter-spacing:.045em;background:rgba(8,24,43,.3)}
.model-catalog-table td{font-size:15px;color:#e8eef7}
.model-catalog-table tbody tr:last-child td{border-bottom:0}
.model-catalog-table td:nth-child(3),.model-catalog-table td:nth-child(4){font-weight:800;white-space:nowrap}
.model-catalog-model{font-weight:850;color:#fff!important}
.model-catalog-table td:nth-child(2) strong,.model-catalog-table td:nth-child(2) span{display:block}
.model-catalog-table td:nth-child(2) span{color:#8fa3bf;font-size:12px;margin-top:3px}
.model-catalog-empty{padding:34px 24px;text-align:center;color:#9dafc7}
@media(max-width:780px){.user-model-catalog .account-wrap{width:100%}.model-catalog-tabs{grid-template-columns:repeat(3,minmax(0,1fr))}.provider-price-value{font-size:14px}.provider-price-side{padding:0 8px}}

/* user-model-sections-v3246 */
.model-catalog-tabs,.model-catalog-panel,.v3246-legacy-hidden{display:none!important}.model-catalog-sections-v3246{display:grid;gap:18px}.model-tier-section-v3246{overflow:hidden}.model-tier-header-v3246{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;border-bottom:1px solid #263e5d}.model-tier-header-v3246 h2{margin:0;font-size:20px}.model-tier-search-v3246{width:min(360px,48vw);min-width:180px;border:1px solid #315176;border-radius:10px;background:#091b31;color:#fff;padding:10px 12px;outline:none}.model-tier-search-v3246:focus{border-color:#79a3df}.model-tier-table-wrap-v3246{overflow-x:auto}.model-tier-table-v3246{width:100%;border-collapse:collapse;min-width:850px}.model-tier-table-v3246 th,.model-tier-table-v3246 td{padding:16px 22px;border-bottom:1px solid #263e5d;text-align:left;vertical-align:middle}.model-tier-table-v3246 th{font-size:12px;color:#91abd0;text-transform:uppercase;letter-spacing:.03em}.model-tier-table-v3246 tbody tr:last-child td{border-bottom:0}.model-tier-model-v3246{font-weight:800}.model-tier-model-line-v3246{display:flex;align-items:center;gap:10px}.model-tier-provider-v3246 strong{display:block}.model-tier-provider-v3246 span{display:block;color:#829abb;font-size:12px;margin-top:3px}.model-tier-price-v3246{font-size:15px;font-weight:800;color:#f3f6ff;white-space:nowrap}.model-tier-copy-v3246{width:34px;height:30px;border:1px solid #315176;border-radius:8px;background:#10223a;color:#dbe8ff;cursor:pointer;font-size:18px;line-height:1}.model-tier-copy-v3246:hover{border-color:#7297ff}.model-tier-empty-v3246{padding:24px;text-align:center;color:#8fa5c1}.model-tier-footer-v3246{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 22px;border-top:1px solid #263e5d;flex-wrap:wrap}.model-tier-size-v3246{display:flex;align-items:center;gap:8px;color:#9fb0c6;font-size:13px}.model-tier-size-v3246 select{border:1px solid #315176;border-radius:9px;background:#0b2038;color:#eef4ff;padding:8px 10px}.model-tier-pager-v3246{display:flex;align-items:center;gap:6px;flex-wrap:wrap}.model-tier-page-v3246{min-width:38px;height:38px;border:1px solid #315176;border-radius:9px;background:#0b2038;color:#eef4ff;padding:0 10px;cursor:pointer}.model-tier-page-v3246.active,.model-tier-page-v3246:disabled{background:#5879d9;border-color:#7a9cff;color:#fff;cursor:default}.model-tier-page-v3246.nav{min-width:auto;padding:0 14px}.model-tier-ellipsis-v3246{color:#8fa5c1;padding:0 3px}
@media(max-width:720px){.model-tier-header-v3246{align-items:stretch;flex-direction:column}.model-tier-search-v3246{width:100%;min-width:0}.model-tier-footer-v3246{align-items:flex-start;flex-direction:column}}

/* user-model-availability-v3250 */
.model-tier-table-v3246{min-width:980px}.model-tier-availability-v3250{font-size:15px;font-weight:800;color:#f3f6ff;white-space:nowrap}.model-tier-row-unavailable-v3250{opacity:.42}.model-tier-row-unavailable-v3250 .model-tier-price-v3246,.model-tier-row-unavailable-v3250 .model-tier-availability-v3250,.model-tier-row-unavailable-v3250 .model-tier-model-v3246,.model-tier-row-unavailable-v3250 .model-tier-provider-v3246 strong{color:#8290a5!important}.model-tier-row-unavailable-v3250 .model-tier-copy-v3246{opacity:.72}.model-tier-availability-v3250.available{color:#68dfa2}.model-tier-availability-v3250.unavailable{color:#b1bac8}

/* user-model-refresh-v3251 */
.model-catalog-refreshbar-v3251{display:flex;align-items:center;justify-content:flex-end;gap:10px;margin:0 0 14px;flex-wrap:wrap}.model-catalog-refreshbtn-v3251{appearance:none;border:1px solid #5f82e8;border-radius:10px;background:#5879d9;color:#fff;padding:8px 15px;font:inherit;font-weight:800;cursor:pointer}.model-catalog-refreshbtn-v3251:hover{filter:brightness(1.08)}.model-catalog-refreshbtn-v3251:disabled{opacity:.58;cursor:wait}.model-catalog-refreshstatus-v3251{font-size:12px;color:#8fa5c1}.model-catalog-refreshstatus-v3251.error{color:#e7a2a2}

/* shared-admin-nav-v3252 */
.core-admin-nav{display:flex!important;flex-wrap:nowrap!important;gap:8px!important;align-items:center;overflow-x:auto;overflow-y:hidden;max-width:100%;padding-bottom:3px;scrollbar-width:thin}
.core-admin-nav .btn{flex:0 0 auto!important;white-space:nowrap;padding:10px 16px!important;min-width:auto!important}
.core-admin-nav .admin-nav-v3252-exit{margin-left:auto!important;position:sticky;right:0;z-index:2}
@media(max-width:1100px){.core-admin-nav .btn{padding:9px 13px!important;font-size:14px}}

/* user-model-api-off-v3258 */
.model-tier-row-unavailable-v3250 .model-tier-copy-v3246:disabled{opacity:.28!important;cursor:not-allowed!important;pointer-events:none!important;filter:grayscale(1)}
