:root {
  --bg: #070707;
  --panel: rgba(20, 20, 22, .78);
  --panel2: rgba(31, 31, 34, .72);
  --text: #f7f7f7;
  --muted: #a7a7a7;
  --line: rgba(255,255,255,.09);
  --orange: #ff7a18;
  --orange2: #ffb347;
  --danger: #ff4d4d;
  --ok: #38d996;
  --wait: #ffc857;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 24px;
}
* { box-sizing: border-box; }
html, body { margin:0; min-height:100%; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.page-glow { position: fixed; width: 520px; height: 520px; border-radius: 999px; filter: blur(70px); opacity: .22; pointer-events: none; z-index: 0; }
.page-glow.one { background: var(--orange); top: -180px; right: -120px; }
.page-glow.two { background: #fff; bottom: -260px; left: -280px; opacity: .07; }
.icon { width: 18px; height: 18px; display:inline-block; vertical-align:-3px; fill:none; stroke:currentColor; stroke-width:2.1; stroke-linecap:round; stroke-linejoin:round; }
.big-icon { width:54px; height:54px; color:var(--orange); }
.topbar { position: sticky; top: 0; z-index: 5; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:16px 28px; border-bottom:1px solid var(--line); backdrop-filter: blur(18px); background: rgba(7,7,7,.72); }
.brand { display:flex; align-items:center; gap:12px; min-width:180px; }
.brand-mark { width:42px; height:42px; border-radius:14px; display:grid; place-items:center; color:#111; background:linear-gradient(135deg,var(--orange),var(--orange2)); box-shadow:0 12px 35px rgba(255,122,24,.22); }
.brand small { display:block; color:var(--muted); font-size:12px; margin-top:1px; }
.nav { display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center; }
.nav-link { display:flex; align-items:center; gap:7px; padding:10px 12px; border:1px solid transparent; border-radius:999px; color:var(--muted); transition:.18s; }
.nav-link:hover, .nav-link.active { color:var(--text); border-color:var(--line); background:rgba(255,255,255,.055); }
.nav-link.admin { color:#ffd2a7; }
.profile-chip { display:flex; align-items:center; gap:10px; padding:8px 10px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.04); }
.profile-chip img { width:28px; height:28px; border-radius:50%; }
.icon-btn { width:30px; height:30px; display:grid; place-items:center; background:rgba(255,255,255,.06); border:1px solid var(--line); border-radius:50%; color:var(--text); cursor:pointer; }
.container { position:relative; z-index:1; width:min(1180px, calc(100% - 36px)); margin:28px auto 60px; }
.hero { display:grid; grid-template-columns: 1.5fr .9fr; gap:24px; align-items:stretch; margin-bottom:24px; }
.login-hero { min-height:560px; align-items:center; }
.hero-text, .panel, .hero-card, .mini-panel { border:1px solid var(--line); background:linear-gradient(180deg, var(--panel), rgba(11,11,12,.78)); border-radius:var(--radius); box-shadow:var(--shadow); }
.hero-text { padding:42px; }
.hero-text h1, .panel h1 { font-size: clamp(34px, 5vw, 64px); line-height:.95; margin:12px 0 18px; letter-spacing:-.05em; }
.hero-text p, .panel p { color:var(--muted); line-height:1.65; }
.eyebrow { display:inline-flex; gap:8px; align-items:center; color:#ffc08a; background:rgba(255,122,24,.12); border:1px solid rgba(255,122,24,.2); padding:8px 11px; border-radius:999px; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.hero-actions, .form-actions, .admin-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:22px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; border:1px solid var(--line); min-height:44px; padding:11px 16px; border-radius:14px; cursor:pointer; color:var(--text); background:rgba(255,255,255,.055); transition:.18s; }
.btn:hover { transform:translateY(-1px); background:rgba(255,255,255,.09); }
.btn.primary { border-color:rgba(255,122,24,.35); background:linear-gradient(135deg,var(--orange),var(--orange2)); color:#120904; font-weight:800; }
.btn.ghost { color:var(--text); }
.btn.danger { background:rgba(255,77,77,.12); border-color:rgba(255,77,77,.3); color:#ffb7b7; }
.btn.small { min-height:34px; padding:7px 10px; border-radius:10px; }
.hero-card { padding:28px; display:flex; flex-direction:column; justify-content:center; }
.glass { background:rgba(20,20,22,.55); backdrop-filter:blur(20px); }
.login-widget { margin-top:26px; min-height:52px; display:flex; align-items:center; }
.flash { margin-bottom:18px; padding:14px 16px; border-radius:16px; border:1px solid var(--line); background:rgba(255,255,255,.06); }
.flash.success { border-color:rgba(56,217,150,.25); color:#baffe0; }
.flash.error { border-color:rgba(255,77,77,.3); color:#ffc7c7; }
.flash.warn { border-color:rgba(255,200,87,.3); color:#ffe0a3; }
.panel { padding:28px; margin-bottom:24px; }
.panel.wide { width:100%; }
.panel-head { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-bottom:20px; }
.panel-head h1, .panel-head h2 { margin:0; }
.panel-head a:not(.btn) { color:#ffc08a; }
.grid.two { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.stats-grid.compact { grid-template-columns:repeat(2,1fr); }
.stat-card { padding:22px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(180deg,var(--panel2),rgba(16,16,18,.75)); box-shadow:var(--shadow); }
.stat-card span { color:var(--muted); display:block; margin-bottom:8px; }
.stat-card b { font-size:36px; letter-spacing:-.04em; }
.list { display:flex; flex-direction:column; gap:10px; }
.list-row { display:grid; grid-template-columns:auto 1fr auto; gap:14px; align-items:center; padding:14px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.035); }
.block-row { align-items:flex-start; }
.block-row code { display:block; margin-top:8px; word-break:break-all; }
.row-icon { width:40px; height:40px; border-radius:13px; display:grid; place-items:center; color:var(--orange2); background:rgba(255,122,24,.1); }
.list-row small { display:block; color:var(--muted); margin-top:3px; }
.status { font-style:normal; font-size:12px; padding:6px 9px; border-radius:999px; border:1px solid var(--line); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.status.ok { color:#baffe0; border-color:rgba(56,217,150,.25); background:rgba(56,217,150,.08); }
.status.bad { color:#ffb7b7; border-color:rgba(255,77,77,.25); background:rgba(255,77,77,.08); }
.status.wait { color:#ffe0a3; border-color:rgba(255,200,87,.25); background:rgba(255,200,87,.08); }
.empty-state { padding:24px; border:1px dashed var(--line); border-radius:18px; color:var(--muted); background:rgba(255,255,255,.025); }
.tariff-form { display:flex; flex-direction:column; gap:18px; }
.tariffs { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.tariff-card { position:relative; padding:22px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.04); cursor:pointer; transition:.18s; }
.tariff-card:hover { border-color:rgba(255,122,24,.32); transform:translateY(-1px); }
.tariff-card input { position:absolute; opacity:0; }
.tariff-card:has(input:checked), .tariff-card.picked:has(input:checked) { border-color:rgba(255,122,24,.55); background:linear-gradient(180deg,rgba(255,122,24,.16),rgba(255,255,255,.04)); }
.tariff-card span { display:block; color:var(--muted); }
.tariff-card b { display:block; font-size:34px; margin:9px 0; }
.tariff-card small { color:#ffc08a; }
.field { display:flex; flex-direction:column; gap:8px; }
.field span { color:var(--muted); }
input { width:100%; min-height:46px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.06); color:var(--text); padding:0 14px; outline:none; }
input:focus { border-color:rgba(255,122,24,.55); box-shadow:0 0 0 4px rgba(255,122,24,.08); }
.receipt { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:22px; }
.receipt div, .info-card { padding:18px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.04); }
.receipt span, .info-card span { display:block; color:var(--muted); margin-bottom:6px; }
.muted { color:var(--muted); }
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.cards-grid.small { margin-top:18px; }
.access-card { padding:20px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.04); transition:.18s; }
.access-card:hover { transform:translateY(-2px); border-color:rgba(255,122,24,.3); }
.access-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.access-card h3 { margin:0 0 6px; }
.access-card p { margin:0 0 10px; word-break:break-all; }
.access-card small { color:var(--muted); }
.mini-panel { padding:22px; }
.mt { margin-top:18px; }
.codebox { display:block; width:100%; padding:14px; border-radius:14px; background:#050505; border:1px solid var(--line); color:#ffd2a7; word-break:break-all; white-space:pre-wrap; }
.inline-form { display:flex; gap:10px; align-items:center; }
.inline-form input { max-width:320px; }
.admin-links, .promo-form, .search-form { display:flex; gap:10px; flex-wrap:wrap; margin:18px 0; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius:18px; }
table { width:100%; border-collapse:collapse; min-width:760px; }
th, td { padding:13px 14px; border-bottom:1px solid var(--line); text-align:left; }
th { color:#ffc08a; font-size:13px; text-transform:uppercase; letter-spacing:.07em; background:rgba(255,255,255,.035); }
td { color:#e9e9e9; }
tr:last-child td { border-bottom:0; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.logs .list-row p { margin:8px 0 0; color:var(--muted); }
@media (max-width: 920px) {
  .topbar { align-items:flex-start; flex-direction:column; }
  .nav { justify-content:flex-start; }
  .hero, .grid.two, .cards-grid, .tariffs, .stats-grid, .receipt { grid-template-columns:1fr; }
  .hero-text { padding:28px; }
  .profile-chip { width:100%; justify-content:space-between; }
}

/* Landing */
.cabinet-btn { white-space: nowrap; }
.landing-hero { display:grid; grid-template-columns:1.25fr .75fr; gap:24px; align-items:stretch; margin-bottom:24px; }
.landing-copy, .landing-card, .section-block, .final-cta { border:1px solid var(--line); background:linear-gradient(180deg, var(--panel), rgba(11,11,12,.78)); border-radius:var(--radius); box-shadow:var(--shadow); }
.landing-copy { padding:46px; min-height:560px; display:flex; flex-direction:column; justify-content:center; }
.landing-copy h1 { font-size:clamp(42px, 7vw, 82px); line-height:.9; margin:16px 0 18px; letter-spacing:-.065em; max-width:900px; }
.lead { color:#d9d9d9; font-size:18px; line-height:1.7; max-width:740px; }
.hero-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.hero-pills span { display:inline-flex; align-items:center; gap:8px; padding:10px 12px; border-radius:999px; border:1px solid var(--line); color:#ffd2a7; background:rgba(255,122,24,.08); }
.landing-card { padding:28px; display:grid; place-items:center; overflow:hidden; position:relative; }
.landing-card:before { content:""; position:absolute; width:260px; height:260px; border-radius:999px; background:var(--orange); filter:blur(60px); opacity:.18; }
.phone-preview { position:relative; width:min(340px, 100%); padding:18px; border:1px solid rgba(255,255,255,.13); border-radius:34px; background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow:0 30px 80px rgba(0,0,0,.4); }
.phone-top { display:flex; justify-content:space-between; margin-bottom:18px; }
.phone-top span:first-child { width:72px; height:11px; border-radius:999px; background:rgba(255,255,255,.14); }
.phone-top span:last-child { width:38px; height:11px; border-radius:999px; background:rgba(255,122,24,.45); }
.phone-message, .phone-code { padding:14px; border-radius:17px; margin-bottom:10px; background:rgba(255,255,255,.07); border:1px solid var(--line); color:#eee; }
.phone-message.accent { background:linear-gradient(135deg, var(--orange), var(--orange2)); color:#130903; font-weight:900; border:0; }
.phone-code { font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color:#ffd2a7; word-break:break-all; background:#050505; }
.phone-actions { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; margin-top:14px; }
.phone-actions span { height:40px; border-radius:14px; background:rgba(255,255,255,.07); border:1px solid var(--line); }
.section-block { padding:34px; margin-bottom:24px; scroll-margin-top:110px; }
.section-head { max-width:820px; margin-bottom:22px; }
.section-head h2, .split-block h2, .gift-block h2, .final-cta h2 { font-size:clamp(30px, 4vw, 54px); line-height:1; letter-spacing:-.045em; margin:14px 0 12px; }
.section-head p, .split-block p, .gift-block p, .final-cta p { color:var(--muted); line-height:1.7; }
.compact-head { display:flex; flex-direction:column; }
.feature-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
.feature-card, .price-card, .step, .loyalty-row, .gift-points div { border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.04); }
.feature-card { padding:22px; }
.feature-icon { width:34px; height:34px; color:var(--orange2); margin-bottom:16px; }
.feature-card h3 { margin:0 0 8px; }
.feature-card p { margin:0; color:var(--muted); line-height:1.6; }
.split-block { display:grid; grid-template-columns:.9fr 1.1fr; gap:24px; align-items:start; }
.steps { display:grid; gap:12px; }
.step { padding:20px; display:grid; grid-template-columns:70px 1fr; gap:8px 16px; align-items:start; }
.step b { grid-row:span 2; font-size:34px; color:var(--orange2); letter-spacing:-.04em; }
.step span { font-weight:800; font-size:18px; }
.step p { margin:0; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.price-card { padding:24px; }
.price-card span { color:var(--muted); }
.price-card b { display:block; font-size:46px; letter-spacing:-.05em; margin:8px 0; }
.price-card p { color:var(--muted); margin:0 0 18px; }
.loyalty-list { display:grid; gap:12px; }
.loyalty-row { display:flex; justify-content:space-between; align-items:center; gap:14px; padding:18px; }
.loyalty-row strong { color:#120904; background:linear-gradient(135deg,var(--orange),var(--orange2)); border-radius:999px; padding:9px 12px; white-space:nowrap; }
.gift-block { display:grid; grid-template-columns:1.2fr .8fr; gap:24px; align-items:center; }
.gift-points { display:grid; gap:12px; }
.gift-points div { display:flex; align-items:center; gap:10px; padding:16px; color:#e9e9e9; }
.gift-points .icon { color:var(--ok); }
.final-cta { padding:42px; text-align:center; }
.final-cta p { max-width:620px; margin:0 auto 22px; }
.hint-text { font-size:13px; color:var(--muted); margin-top:18px; }
@media (max-width: 1060px) {
  .feature-grid { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .landing-hero, .split-block, .gift-block, .pricing-grid { grid-template-columns:1fr; }
  .landing-copy { min-height:auto; padding:30px; }
  .public-nav { width:100%; justify-content:flex-start; }
  .cabinet-btn { width:100%; }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns:1fr; }
  .section-block, .final-cta { padding:24px; }
  .step { grid-template-columns:1fr; }
  .step b { grid-row:auto; }
}

/* v3 polish: landing + auth */
body { overflow-x:hidden; background:
  radial-gradient(circle at 18% 10%, rgba(255, 122, 24, .18), transparent 34%),
  radial-gradient(circle at 92% 18%, rgba(255, 179, 71, .11), transparent 30%),
  radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .055), transparent 35%),
  #060606;
}
body:before {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
}
.container { width:min(1220px, calc(100% - 36px)); }
.topbar { box-shadow:0 20px 80px rgba(0,0,0,.2); }
.brand-mark .icon { stroke-width:2.4; }
.btn-xl { min-height:54px; padding:14px 20px; border-radius:18px; font-size:16px; }
.btn.primary { position:relative; overflow:hidden; }
.btn.primary:before {
  content:"";
  position:absolute;
  top:0; bottom:0; left:-80%;
  width:55%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform:skewX(-18deg);
  animation:buttonShine 4.8s ease-in-out infinite;
}
.btn.primary > * { position:relative; }
@keyframes buttonShine { 0%, 55% { left:-80%; } 76%, 100% { left:135%; } }

.neo-hero {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(380px, .92fr);
  gap:22px;
  min-height:650px;
  align-items:stretch;
  margin:18px 0 22px;
}
.neo-hero:after {
  content:"";
  position:absolute;
  inset:auto 12% -34px 12%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,122,24,.7), transparent);
  box-shadow:0 0 44px rgba(255,122,24,.55);
}
.hero-orb { position:absolute; border-radius:999px; filter:blur(55px); pointer-events:none; opacity:.36; animation:orbFloat 8s ease-in-out infinite alternate; }
.orb-a { width:260px; height:260px; background:var(--orange); top:12%; left:-80px; }
.orb-b { width:320px; height:320px; background:#fff; opacity:.07; right:8%; bottom:6%; animation-delay:-2s; }
@keyframes orbFloat { from { transform:translate3d(0,0,0) scale(1); } to { transform:translate3d(34px,-24px,0) scale(1.1); } }
.neo-hero-copy,
.hero-visual,
.glass-card,
.premium-section,
.workflow-section,
.pricing-section,
.loyalty-section,
.gift-showcase,
.premium-cta {
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(145deg, rgba(24,24,27,.84), rgba(8,8,9,.84));
  box-shadow:0 34px 110px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}
.neo-hero-copy {
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:56px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.neo-hero-copy:before {
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,122,24,.2), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.055), transparent 38%);
  pointer-events:none;
}
.neo-hero-copy > * { position:relative; }
.neo-hero-copy h1 {
  font-size:clamp(46px, 6.9vw, 88px);
  line-height:.88;
  letter-spacing:-.072em;
  margin:18px 0 20px;
  max-width:850px;
}
.neo-hero-copy h1:after {
  content:"";
  display:block;
  width:min(360px, 52%);
  height:8px;
  margin-top:20px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--orange), var(--orange2), transparent);
  animation:pulseWidth 4s ease-in-out infinite;
}
@keyframes pulseWidth { 0%,100% { opacity:.75; transform:scaleX(.72); transform-origin:left; } 50% { opacity:1; transform:scaleX(1); transform-origin:left; } }
.trust-strip {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.trust-strip span {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.045);
  color:#ffd8b4;
}
.hero-visual {
  position:relative;
  overflow:hidden;
  min-height:650px;
  border-radius:34px;
  display:grid;
  place-items:center;
  transition:transform .16s ease, border-color .16s ease;
}
.hero-visual:hover { border-color:rgba(255,122,24,.32); }
.signal-ring {
  position:absolute;
  width:470px;
  height:470px;
  border-radius:999px;
  border:1px solid rgba(255,122,24,.22);
  box-shadow:inset 0 0 60px rgba(255,122,24,.05), 0 0 60px rgba(255,122,24,.06);
  animation:slowSpin 20s linear infinite;
}
.signal-ring:before,
.signal-ring:after {
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border-radius:999px;
  background:var(--orange2);
  box-shadow:0 0 28px rgba(255,179,71,.85);
}
.signal-ring:before { top:30px; left:72px; }
.signal-ring:after { right:52px; bottom:58px; }
.ring-two { width:310px; height:310px; animation-duration:13s; animation-direction:reverse; opacity:.75; }
@keyframes slowSpin { to { transform:rotate(360deg); } }
.orbit-dot { position:absolute; width:10px; height:10px; border-radius:999px; background:#fff; box-shadow:0 0 24px rgba(255,255,255,.65); }
.dot-one { top:20%; right:22%; animation:floatDot 5s ease-in-out infinite; }
.dot-two { bottom:24%; left:19%; animation:floatDot 6s ease-in-out infinite reverse; }
@keyframes floatDot { 0%,100% { transform:translateY(0); opacity:.45; } 50% { transform:translateY(-18px); opacity:1; } }
.device-card {
  position:relative;
  z-index:2;
  width:min(390px, calc(100% - 48px));
  padding:20px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow:0 40px 110px rgba(0,0,0,.5);
}
.device-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.device-head span { width:72px; height:12px; border-radius:999px; background:rgba(255,255,255,.15); }
.device-head i { width:38px; height:12px; border-radius:999px; background:rgba(255,122,24,.6); }
.status-line { display:flex; align-items:center; gap:10px; padding:15px; border-radius:18px; background:linear-gradient(135deg, var(--orange), var(--orange2)); color:#120904; font-weight:900; }
.status-line span { width:10px; height:10px; border-radius:999px; background:#120904; animation:blink 1.4s ease infinite; }
@keyframes blink { 50% { opacity:.35; } }
.sub-preview { margin-top:12px; padding:14px; border-radius:18px; border:1px solid rgba(255,255,255,.1); background:#050505; color:#ffd2a7; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; word-break:break-all; }
.mini-bars { display:grid; grid-template-columns:1fr 1fr 1fr; gap:9px; margin-top:14px; }
.mini-bars span { height:52px; border-radius:16px; background:rgba(255,255,255,.075); position:relative; overflow:hidden; }
.mini-bars span:after { content:""; position:absolute; inset:auto 0 0; height:45%; background:linear-gradient(180deg, rgba(255,122,24,.2), rgba(255,122,24,.55)); animation:barMove 2.8s ease-in-out infinite; }
.mini-bars span:nth-child(2):after { animation-delay:.35s; height:72%; }
.mini-bars span:nth-child(3):after { animation-delay:.7s; height:58%; }
@keyframes barMove { 0%,100% { transform:translateY(12px); } 50% { transform:translateY(0); } }
.floating-card {
  position:absolute;
  z-index:3;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:2px 10px;
  align-items:center;
  min-width:150px;
  padding:14px 15px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,10,11,.76);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 60px rgba(0,0,0,.38);
  animation:softFloat 4.8s ease-in-out infinite;
}
.floating-card .icon { grid-row:span 2; color:var(--orange2); width:24px; height:24px; }
.floating-card b { line-height:1; }
.floating-card span { color:var(--muted); font-size:12px; }
.card-speed { top:12%; left:8%; }
.card-price { right:8%; top:28%; animation-delay:-1s; }
.card-gift { left:10%; bottom:15%; animation-delay:-2s; }
@keyframes softFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
.marquee { overflow:hidden; margin:0 0 22px; border:1px solid rgba(255,255,255,.09); border-radius:999px; background:rgba(255,255,255,.035); }
.marquee-track { display:flex; gap:28px; width:max-content; padding:12px 0; animation:marqueeMove 28s linear infinite; }
.marquee-track span { color:#ffc08a; text-transform:uppercase; letter-spacing:.1em; font-size:12px; font-weight:800; white-space:nowrap; }
.marquee-track span:before { content:"•"; margin-right:28px; color:rgba(255,255,255,.35); }
@keyframes marqueeMove { to { transform:translateX(-50%); } }
.center-head { max-width:860px; margin-left:auto; margin-right:auto; text-align:center; }
.center-head .eyebrow { margin-inline:auto; }
.premium-section,
.workflow-section,
.pricing-section,
.loyalty-section,
.gift-showcase { border-radius:34px; padding:42px; overflow:hidden; position:relative; }
.premium-section:before,
.pricing-section:before,
.gift-showcase:before { content:""; position:absolute; width:280px; height:280px; border-radius:999px; background:var(--orange); filter:blur(70px); opacity:.12; right:-80px; top:-90px; pointer-events:none; }
.modern-grid { grid-template-columns:1.2fr repeat(2, .9fr); }
.big-feature { grid-row:span 2; }
.feature-card { transition:transform .16s ease, border-color .16s ease, background .16s ease; }
.feature-card:hover, .price-card:hover, .gift-ticket:hover { border-color:rgba(255,122,24,.32); background:rgba(255,255,255,.06); }
.workflow { display:grid; grid-template-columns:1fr 70px 1fr 70px 1fr; gap:0; align-items:center; margin-top:26px; }
.workflow-step { min-height:220px; padding:24px; border:1px solid rgba(255,255,255,.1); border-radius:28px; background:rgba(255,255,255,.04); }
.workflow-step b { display:inline-flex; width:54px; height:54px; border-radius:18px; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--orange),var(--orange2)); color:#120904; font-size:20px; margin-bottom:22px; }
.workflow-step h3 { margin:0 0 10px; font-size:24px; letter-spacing:-.03em; }
.workflow-step p { color:var(--muted); line-height:1.65; margin:0; }
.workflow-line { height:2px; background:linear-gradient(90deg, rgba(255,122,24,.2), rgba(255,122,24,.85), rgba(255,122,24,.2)); position:relative; }
.workflow-line:after { content:""; position:absolute; top:50%; left:50%; width:12px; height:12px; border-radius:999px; background:var(--orange2); transform:translate(-50%, -50%); box-shadow:0 0 30px rgba(255,179,71,.9); animation:blink 1.6s ease infinite; }
.premium-prices { align-items:stretch; }
.price-card { position:relative; overflow:hidden; transition:transform .16s ease, border-color .16s ease; }
.price-card.popular { border-color:rgba(255,122,24,.48); background:linear-gradient(180deg, rgba(255,122,24,.15), rgba(255,255,255,.045)); transform:translateY(-8px); }
.price-card em { position:absolute; top:18px; right:18px; font-style:normal; font-size:12px; text-transform:uppercase; letter-spacing:.08em; padding:7px 9px; border-radius:999px; color:#120904; background:linear-gradient(135deg,var(--orange),var(--orange2)); font-weight:900; }
.loyalty-section { display:grid; grid-template-columns:1fr .95fr; gap:28px; align-items:center; }
.loyalty-copy h2, .gift-copy h2 { font-size:clamp(34px, 4.8vw, 62px); line-height:.95; letter-spacing:-.055em; margin:16px 0 14px; }
.loyalty-copy p, .gift-copy p { color:var(--muted); line-height:1.75; }
.premium-loyalty .loyalty-row { padding:20px; background:rgba(255,255,255,.05); }
.gift-showcase { display:grid; grid-template-columns:1fr .85fr; gap:28px; align-items:center; }
.gift-ticket { position:relative; padding:26px; border:1px solid rgba(255,255,255,.12); border-radius:32px; background:linear-gradient(145deg, rgba(255,122,24,.18), rgba(255,255,255,.045)); overflow:hidden; transition:transform .16s ease, border-color .16s ease; }
.gift-ticket:before,
.gift-ticket:after { content:""; position:absolute; top:50%; width:34px; height:34px; border-radius:50%; background:#090909; transform:translateY(-50%); }
.gift-ticket:before { left:-17px; }
.gift-ticket:after { right:-17px; }
.ticket-top { display:flex; justify-content:space-between; align-items:center; gap:14px; padding-bottom:20px; border-bottom:1px dashed rgba(255,255,255,.2); }
.ticket-top span { color:#ffd2a7; text-transform:uppercase; letter-spacing:.12em; font-size:12px; font-weight:900; }
.ticket-top b { font-size:28px; }
.ticket-code { margin:22px 0; padding:16px; border-radius:18px; background:#050505; color:#ffd2a7; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; word-break:break-all; }
.ticket-points { display:grid; gap:10px; }
.ticket-points span { display:flex; align-items:center; gap:10px; color:#f3f3f3; }
.ticket-points .icon { color:var(--ok); }
.premium-cta { border-radius:34px; padding:54px 34px; text-align:center; position:relative; overflow:hidden; }
.premium-cta:before { content:""; position:absolute; inset:auto 10% -80px; height:160px; background:var(--orange); filter:blur(80px); opacity:.2; }
.premium-cta > * { position:relative; }
.center-actions { justify-content:center; }

.auth-shell { display:grid; grid-template-columns:1.05fr .95fr; gap:24px; min-height:650px; align-items:stretch; }
.glass-card { border-radius:34px; padding:42px; }
.auth-card { display:flex; flex-direction:column; justify-content:center; position:relative; overflow:hidden; }
.auth-card:before { content:""; position:absolute; width:300px; height:300px; border-radius:999px; right:-120px; top:-100px; background:var(--orange); filter:blur(70px); opacity:.16; }
.auth-card > * { position:relative; }
.auth-card h1 { font-size:clamp(44px, 6.4vw, 78px); line-height:.88; letter-spacing:-.07em; margin:16px 0 16px; }
.auth-card p { color:var(--muted); line-height:1.7; max-width:620px; }
.enhanced-login-widget { min-height:62px; padding:16px; border:1px solid rgba(255,255,255,.1); border-radius:22px; background:rgba(255,255,255,.045); }
.login-status { margin:18px 0 0; padding:13px 14px; border-radius:16px; border:1px solid rgba(255,255,255,.1); }
.login-status.ok { color:#baffe0; border-color:rgba(56,217,150,.28); background:rgba(56,217,150,.08); }
.login-status.bad { color:#ffc7c7; border-color:rgba(255,77,77,.28); background:rgba(255,77,77,.08); }
.login-status.wait { color:#ffe0a3; border-color:rgba(255,200,87,.28); background:rgba(255,200,87,.08); }
.auth-help { display:grid; gap:8px; margin-top:24px; padding:18px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.035); color:var(--muted); }
.auth-help b { color:#fff; }
.auth-diagnostics { display:flex; flex-direction:column; justify-content:center; gap:18px; }
.auth-diagnostics h2 { font-size:clamp(30px, 4vw, 54px); line-height:1; letter-spacing:-.05em; margin:0; }
.diag-list { display:grid; gap:12px; }
.diag-list div { display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; padding:16px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.04); color:#ddd; }
.diag-list .icon { color:var(--orange2); margin-top:2px; }
.debug-box { padding:18px; border-radius:20px; border:1px solid rgba(255,122,24,.22); background:rgba(255,122,24,.08); }
.debug-box span { display:block; color:#ffc08a; margin-bottom:6px; }
.debug-box b { font-size:20px; }

@media (max-width: 1100px) {
  .neo-hero, .auth-shell, .loyalty-section, .gift-showcase { grid-template-columns:1fr; }
  .hero-visual { min-height:560px; }
  .modern-grid { grid-template-columns:repeat(2,1fr); }
  .big-feature { grid-row:auto; grid-column:span 2; }
  .workflow { grid-template-columns:1fr; gap:12px; }
  .workflow-line { width:2px; height:40px; margin:auto; background:linear-gradient(180deg, rgba(255,122,24,.2), rgba(255,122,24,.85), rgba(255,122,24,.2)); }
}
@media (max-width: 720px) {
  .container { width:min(100% - 24px, 1220px); margin-top:18px; }
  .neo-hero-copy, .glass-card, .premium-section, .workflow-section, .pricing-section, .loyalty-section, .gift-showcase { padding:26px; border-radius:28px; }
  .neo-hero-copy h1 { font-size:44px; }
  .hero-visual { min-height:480px; }
  .floating-card { position:relative; inset:auto; margin:8px; animation:none; }
  .hero-visual { display:flex; flex-direction:column; justify-content:center; }
  .signal-ring, .orbit-dot { display:none; }
  .modern-grid, .big-feature { grid-template-columns:1fr; grid-column:auto; }
  .trust-strip span { width:100%; }
  .marquee { border-radius:22px; }
  .auth-card h1 { font-size:46px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
.bc-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -3px;
}

.brand-mark .bc-icon,
.access-orb .bc-icon {
  width: 30px;
  height: 30px;
}

.access-detail-page {
  padding-bottom: 80px;
}

.access-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 122, 24, .25);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 122, 24, .28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 184, 77, .12), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
}

.access-hero-card::after {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 280px;
  height: 280px;
  background: rgba(255, 122, 24, .18);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.access-orb {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: #ff9b3d;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,122,24,.25), rgba(255,122,24,.07));
  border: 1px solid rgba(255, 122, 24, .35);
  box-shadow: inset 0 0 35px rgba(255,122,24,.12), 0 18px 45px rgba(255,122,24,.12);
}

.access-hero-content h1 {
  margin: 10px 0 12px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -0.06em;
}

.access-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,.72);
}

.access-status-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-pill {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.status-pill.good {
  color: #8dffb1;
  background: rgba(32, 201, 111, .13);
  border: 1px solid rgba(32, 201, 111, .3);
}

.status-pill.bad {
  color: #ff8f8f;
  background: rgba(255, 75, 75, .12);
  border: 1px solid rgba(255, 75, 75, .28);
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  margin-top: 18px;
}

.access-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.095);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.access-card.big {
  min-height: 210px;
}

.card-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.card-title > span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ff9b3d;
  background: rgba(255,122,24,.12);
  border: 1px solid rgba(255,122,24,.22);
}

.card-title h2 {
  margin: 0 0 5px;
}

.card-title p {
  margin: 0;
  color: rgba(255,255,255,.58);
}

.pretty-code {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.08);
  white-space: pre-wrap;
  word-break: break-all;
}

.link-tools {
  display: grid;
  gap: 10px;
}

.link-code {
  color: #ffd2a7;
  transition: .18s;
}

.link-code:hover {
  border-color: rgba(255, 122, 24, .28);
  background: rgba(255, 122, 24, .08);
}

.link-code.copied,
.inline-code-link.copied {
  color: #8dffb1;
  border-color: rgba(56, 217, 150, .28);
  background: rgba(56, 217, 150, .08);
}

.inline-code-link {
  display: block;
  margin-top: 8px;
  color: #ffd2a7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  word-break: break-all;
}

.issue-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.traffic-list {
  display: grid;
  gap: 10px;
}

.traffic-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.traffic-list span {
  color: rgba(255,255,255,.58);
}

.pretty-form {
  display: flex;
  gap: 10px;
}

.pretty-form input {
  min-width: 0;
  flex: 1;
}

@media (max-width: 850px) {
  .access-hero-card {
    grid-template-columns: 1fr;
  }

  .access-orb {
    width: 82px;
    height: 82px;
    border-radius: 26px;
  }

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

  .pretty-form {
    flex-direction: column;
  }
}
