@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #10213f;
  --ink-2: #203453;
  --muted: #65748b;
  --muted-2: #8e9aae;
  --line: #e5eaf2;
  --line-strong: #d8e0ec;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-blue: #f1f6ff;
  --primary: #315cf5;
  --primary-deep: #2449d8;
  --primary-soft: #eaf0ff;
  --cyan: #26badc;
  --purple: #7359f7;
  --success: #139e6d;
  --success-soft: #e9f8f2;
  --warning: #c77a08;
  --warning-soft: #fff7e8;
  --danger: #d64b5f;
  --danger-soft: #fff0f2;
  --shadow-xs: 0 1px 2px rgba(16, 33, 63, .04);
  --shadow-sm: 0 8px 24px rgba(23, 43, 77, .07);
  --shadow-md: 0 18px 50px rgba(23, 43, 77, .10);
  --shadow-lg: 0 28px 85px rgba(23, 43, 77, .15);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shell: min(1200px, calc(100% - 48px));
  --font-en: 'Manrope', 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-fa: 'Vazirmatn', Tahoma, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html[dir='rtl'] body { font-family: var(--font-fa); }
body.dashboard-mode { background: #f5f7fb; }
body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3, h4 { margin-top: 0; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(49, 92, 245, .22);
  outline-offset: 2px;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 12px; top: -60px; z-index: 200; padding: 10px 16px; color: #fff; background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(229, 234, 242, .88);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-xs); background: rgba(255, 255, 255, .95); }
.site-header.dashboard-header { position: fixed; width: 100%; }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.12rem; font-weight: 800; letter-spacing: .09em; line-height: 1; }
.brand-mark { width: 37px; height: 37px; display: grid; place-items: center; color: #fff; border-radius: 12px; background: linear-gradient(145deg, #234bdc, #4775ff 64%, #43c6e7); box-shadow: 0 8px 22px rgba(49, 92, 245, .24); }
.brand-mark svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-inline: auto; }
.main-nav a { position: relative; color: #4e5e76; font-size: .89rem; font-weight: 700; padding: 27px 0; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a::after { content: ''; position: absolute; inset-inline: 0; bottom: 18px; height: 2px; border-radius: 2px; background: var(--primary); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; transition: .2s ease; }
.icon-button:hover { border-color: #cdd8ea; background: var(--surface-soft); transform: translateY(-1px); }
.language-button { font-weight: 800; font-size: .75rem; letter-spacing: .04em; }
.menu-button { display: none; }
.mobile-menu { padding: 8px 24px 24px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu a { display: block; padding: 12px 4px; font-weight: 700; color: var(--ink-2); }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #2e55e7, #3f6dff); box-shadow: 0 9px 22px rgba(49, 92, 245, .22); }
.button-primary:hover { box-shadow: 0 13px 30px rgba(49, 92, 245, .29); }
.button-secondary { color: var(--ink); border-color: var(--line-strong); background: #fff; box-shadow: var(--shadow-xs); }
.button-secondary:hover { border-color: #bdc9dc; box-shadow: var(--shadow-sm); }
.button-ghost { background: transparent; color: var(--ink-2); }
.button-danger { color: var(--danger); border-color: #f1cad1; background: var(--danger-soft); }
.button-success { color: #fff; background: var(--success); }
.button-small { min-height: 37px; padding: 8px 13px; border-radius: 11px; font-size: .79rem; }
.button-wide { width: 100%; }
.button[disabled] { opacity: .54; pointer-events: none; box-shadow: none; }
.button .icon { width: 17px; height: 17px; }

.route-loading { min-height: 60vh; display: flex; align-items: center; justify-content: center; gap: 6px; }
.route-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: loader 1s infinite ease-in-out; }
.route-loading span:nth-child(2) { animation-delay: .12s; }
.route-loading span:nth-child(3) { animation-delay: .24s; }
@keyframes loader { 0%, 100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-6px); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
.view-enter { animation: rise .42s cubic-bezier(.2,.75,.25,1) both; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--primary); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 15px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
html[dir='rtl'] .section-heading h2, html[dir='rtl'] .hero-copy h1 { letter-spacing: -.02em; }

.hero { position: relative; overflow: hidden; padding: 74px 0 88px; background: linear-gradient(180deg, #fbfdff 0%, #fff 78%); }
.hero::before { content: ''; position: absolute; width: 650px; height: 650px; top: -370px; inset-inline-end: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(49,92,245,.13), rgba(49,92,245,0) 67%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: 56px; }
.hero-copy h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(3.2rem, 6.2vw, 5.75rem); line-height: .98; letter-spacing: -.066em; }
.hero-copy h1 span { display: block; color: var(--primary); }
.hero-copy > p { max-width: 610px; margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-height: 51px; padding-inline: 22px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; color: #64748b; font-size: .8rem; font-weight: 700; }
.trust-item { display: inline-flex; align-items: center; gap: 7px; }
.trust-item .icon { width: 16px; height: 16px; color: var(--success); }

.product-stage { position: relative; min-height: 550px; display: grid; place-items: center; }
.stage-orbit { position: absolute; inset: 2%; border: 1px solid rgba(49,92,245,.11); border-radius: 50%; transform: rotate(-10deg); }
.stage-orbit::before, .stage-orbit::after { content: ''; position: absolute; width: 9px; height: 9px; border: 4px solid #fff; border-radius: 50%; background: var(--primary); box-shadow: 0 5px 18px rgba(49,92,245,.34); }
.stage-orbit::before { top: 13%; left: 17%; }
.stage-orbit::after { right: 9%; bottom: 18%; background: var(--cyan); }
.product-window { position: relative; z-index: 2; width: 100%; max-width: 590px; overflow: hidden; border: 1px solid #dfe6f0; border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 35px 80px rgba(25,48,86,.16); transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
html[dir='rtl'] .product-window { transform: perspective(1100px) rotateY(3deg) rotateX(1deg); }
.window-bar { height: 47px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--line); background: #fbfcfe; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d8deea; }
.window-url { width: 48%; height: 23px; border: 1px solid #e8ecf3; border-radius: 7px; background: #fff; }
.window-body { display: grid; grid-template-columns: 132px 1fr; min-height: 390px; }
.window-sidebar { padding: 19px 13px; border-inline-end: 1px solid var(--line); background: #f9fbfd; }
.window-mini-brand { display: flex; align-items: center; gap: 6px; margin-bottom: 25px; font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.window-mini-brand i { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(145deg, var(--primary-deep), #4c79ff); }
.mini-nav { height: 28px; display: flex; align-items: center; gap: 8px; margin-bottom: 7px; padding: 0 8px; border-radius: 7px; color: #8a96a8; font-size: .54rem; font-weight: 700; }
.mini-nav::before { content: ''; width: 10px; height: 10px; border-radius: 3px; border: 1.5px solid currentColor; }
.mini-nav.active { color: var(--primary); background: var(--primary-soft); }
.window-content { padding: 24px; background: #fff; }
.window-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 18px; }
.fake-title { width: 126px; height: 13px; border-radius: 5px; background: #1a2e4d; }
.fake-subtitle { width: 92px; height: 7px; margin-top: 8px; border-radius: 4px; background: #dfe5ef; }
.fake-button { width: 82px; height: 28px; border-radius: 8px; background: var(--primary); }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mini-stat { padding: 13px; border: 1px solid var(--line); border-radius: 10px; }
.mini-stat i { width: 23px; height: 23px; display: block; border-radius: 7px; background: var(--primary-soft); }
.mini-stat b { width: 32px; height: 12px; display: block; margin-top: 14px; border-radius: 4px; background: #203453; }
.mini-stat span { width: 54px; height: 6px; display: block; margin-top: 7px; border-radius: 4px; background: #e5eaf2; }
.mini-table { margin-top: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; }
.mini-table-row { height: 50px; display: grid; grid-template-columns: 36px 1.4fr 1fr 52px; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid #eef1f5; }
.mini-table-row:last-child { border: 0; }
.mini-cover { width: 27px; height: 27px; border-radius: 7px; background: linear-gradient(145deg, #1c2f55, #5f78a5); }
.mini-line { height: 7px; border-radius: 4px; background: #e3e8f0; }
.mini-line.dark { background: #8090a6; }
.mini-pill { height: 17px; border-radius: 10px; background: var(--success-soft); }
.floating-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(221,228,240,.95); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); font-size: .73rem; font-weight: 800; animation: float 5s ease-in-out infinite; }
.floating-badge .icon-wrap { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--success); background: var(--success-soft); }
.floating-badge .icon { width: 17px; height: 17px; }
.floating-badge.top { top: 45px; inset-inline-end: -12px; }
.floating-badge.bottom { bottom: 42px; inset-inline-start: -8px; animation-delay: -2.5s; }
@keyframes float { 50% { transform: translateY(-9px); } }

.stats-strip { position: relative; z-index: 3; margin-top: -28px; }
.stats-panel { display: grid; grid-template-columns: repeat(3, 1fr); padding: 24px 10px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); }
.public-stat { padding: 2px 34px; text-align: center; border-inline-end: 1px solid var(--line); }
.public-stat:last-child { border: 0; }
.public-stat b { display: block; font-size: 1.75rem; letter-spacing: -.04em; }
.public-stat span { color: var(--muted); font-size: .82rem; font-weight: 700; }

.public-section { padding: 104px 0; }
.public-section.soft { background: var(--surface-soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; overflow: hidden; min-height: 280px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit-card:hover { transform: translateY(-6px); border-color: #cfd9e9; box-shadow: var(--shadow-md); }
.benefit-card::after { content: ''; position: absolute; width: 130px; height: 130px; inset-inline-end: -60px; top: -62px; border-radius: 50%; background: var(--primary-soft); }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 56px; border: 1px solid #dce5fb; border-radius: 15px; color: var(--primary); background: var(--surface-blue); }
.benefit-card:nth-child(2) .benefit-icon { color: var(--success); border-color: #d1eee3; background: var(--success-soft); }
.benefit-card:nth-child(3) .benefit-icon { color: var(--purple); border-color: #e2dcff; background: #f2efff; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: steps; }
.process-card { position: relative; padding: 24px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-card::before { counter-increment: steps; content: '0' counter(steps); display: block; margin-bottom: 40px; color: var(--primary); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.process-card:not(:last-child)::after { content: ''; position: absolute; top: 37px; inset-inline-end: -15px; z-index: 2; width: 14px; height: 1px; background: #ced7e6; }
.process-card h3 { margin-bottom: 8px; font-size: .96rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.6; }

.network-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; padding: 55px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(135deg, #10264c, #153b83 66%, #2455bf); box-shadow: var(--shadow-lg); }
.network-panel::after { content: ''; position: absolute; width: 430px; height: 430px; inset-inline-end: -200px; top: -190px; border-radius: 50%; border: 80px solid rgba(255,255,255,.035); }
.network-copy { position: relative; z-index: 2; }
.network-copy .eyebrow { color: #81dff2; }
.network-copy h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3.3rem); line-height: 1.08; letter-spacing: -.045em; }
.network-copy p { color: #c7d7ef; }
.network-map { position: relative; z-index: 2; height: 340px; }
.network-line { position: absolute; left: 16%; right: 16%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, #77daf2, transparent); }
.network-line::before, .network-line::after { content: ''; position: absolute; width: 70%; height: 1px; left: 15%; top: 0; background: inherit; transform-origin: center; transform: rotate(32deg); }
.network-line::after { transform: rotate(-32deg); }
.network-node { position: absolute; width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; color: #dceaff; background: rgba(255,255,255,.09); backdrop-filter: blur(8px); box-shadow: 0 16px 35px rgba(0,0,0,.15); }
.network-node .icon { width: 27px; height: 27px; }
.network-node.main { width: 98px; height: 98px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.4); color: #fff; background: linear-gradient(145deg, #3f69f6, #37b9db); }
.network-node:nth-of-type(2) { left: 5%; top: 12%; }
.network-node:nth-of-type(3) { right: 7%; top: 8%; }
.network-node:nth-of-type(4) { left: 4%; bottom: 8%; }
.network-node:nth-of-type(5) { right: 5%; bottom: 12%; }
.network-node:nth-of-type(6) { left: 42%; top: 2%; }
.network-node:nth-of-type(7) { left: 44%; bottom: 0; }

.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin-inline: auto; }
.plan-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.plan-card.premium { border-color: #cdd9ff; background: linear-gradient(180deg, #fff, #f7f9ff); }
.plan-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.plan-label h3 { margin: 0; font-size: 1.25rem; }
.plan-tag { padding: 6px 10px; border-radius: 999px; color: var(--primary); background: var(--primary-soft); font-size: .7rem; font-weight: 800; }
.plan-card > p { min-height: 52px; color: var(--muted); }
.feature-list { display: grid; gap: 13px; margin: 25px 0 30px; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.feature-list .icon { width: 17px; height: 17px; padding: 3px; border-radius: 50%; color: #fff; background: var(--success); stroke-width: 2.6; }

.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 44px 48px; border: 1px solid #dce4f1; border-radius: var(--radius-xl); background: linear-gradient(135deg, #f5f8ff, #fff 55%, #f3fbfd); }
.cta-panel h2 { margin-bottom: 7px; font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.035em; }
.cta-panel p { margin: 0; color: var(--muted); }

.site-footer { padding: 70px 0 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .65fr .65fr 1fr; gap: 45px; padding-bottom: 55px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: var(--muted); font-size: .85rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 6px; font-size: .79rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-links a { color: var(--muted); font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-status { justify-self: end; }
.status-live { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #d9eee7; border-radius: 999px; color: #187b5b; background: var(--success-soft); font-size: .74rem; font-weight: 800; }
.status-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(19,158,109,.1); }
.footer-status p { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; font-weight: 600; }

.page-hero { padding: 90px 0 62px; text-align: center; background: linear-gradient(180deg, #f8fbff, #fff); }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { max-width: 850px; margin: 0 auto 18px; font-size: clamp(2.7rem, 5vw, 4.7rem); line-height: 1.02; letter-spacing: -.055em; }
.page-hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 1.04rem; }
.content-shell { max-width: 900px; margin: 0 auto; padding: 66px 24px 110px; }
.content-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.content-card + .content-card { margin-top: 18px; }
.content-card h2 { margin-bottom: 15px; font-size: 1.45rem; }
.content-card h3 { margin: 26px 0 10px; font-size: 1rem; }
.content-card p, .content-card li { color: var(--muted); font-size: .91rem; }
.content-card ul, .content-card ol { margin: 12px 0 0; padding-inline-start: 22px; }
.content-card li + li { margin-top: 8px; }
.guideline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; max-width: 1040px; margin: 0 auto; padding: 66px 24px 110px; }
.guide-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.guide-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 15px; color: var(--primary); background: var(--primary-soft); }
.guide-card h2 { font-size: 1.18rem; }
.guide-card p, .guide-card li { color: var(--muted); font-size: .86rem; }
.guide-card ul { margin: 15px 0 0; padding-inline-start: 20px; }

.auth-page { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr); }
.auth-panel { display: flex; align-items: center; justify-content: center; padding: 55px; }
.auth-box { width: min(100%, 470px); }
.auth-box .brand { margin-bottom: 45px; }
.auth-box h1 { margin-bottom: 9px; font-size: 2.25rem; letter-spacing: -.045em; line-height: 1.1; }
.auth-box > p { margin-bottom: 30px; color: var(--muted); font-size: .9rem; }
.auth-visual { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 70px; background: linear-gradient(145deg, #10264b, #174592 66%, #2771e8); }
.auth-visual::before { content: ''; position: absolute; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.auth-visual::after { content: ''; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.auth-visual-card { position: relative; z-index: 2; max-width: 580px; padding: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; color: #fff; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); box-shadow: 0 30px 60px rgba(0,0,0,.16); }
.auth-visual-card .quote-mark { color: #79d8ee; font-size: 3rem; line-height: 1; }
.auth-visual-card h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.16; letter-spacing: -.04em; }
.auth-visual-card p { margin: 0; color: #cfddf2; }
.auth-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.auth-point { display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 700; }
.auth-point .icon { width: 17px; height: 17px; color: #7ee1c1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink-2); font-size: .78rem; font-weight: 800; }
.field label small { color: var(--muted-2); font-weight: 600; }
.input-wrap { position: relative; }
.input-wrap > .icon { position: absolute; inset-inline-start: 14px; top: 50%; width: 17px; height: 17px; color: #9aa6b9; transform: translateY(-50%); pointer-events: none; }
.form-control { width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 13px; padding: 11px 14px; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s; }
.input-wrap .form-control { padding-inline-start: 42px; }
.form-control:hover { border-color: #c1ccdc; }
.form-control:focus { border-color: var(--primary); outline: 0; box-shadow: 0 0 0 4px rgba(49,92,245,.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.field-note { color: var(--muted); font-size: .72rem; }
.check-row { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .78rem; }
.check-row input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--primary); }
.check-row a { color: var(--primary); font-weight: 700; }
.form-actions-between { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 24px; }
.form-link { color: var(--primary); font-size: .8rem; font-weight: 800; }
.auth-switch { margin-top: 24px; color: var(--muted); text-align: center; font-size: .8rem; }
.auth-switch a { color: var(--primary); font-weight: 800; }

.dashboard-shell { min-height: 100vh; display: grid; grid-template-columns: 266px minmax(0, 1fr); padding-top: 78px; }
.dashboard-sidebar { position: fixed; inset-block: 78px 0; inset-inline-start: 0; z-index: 40; width: 266px; display: flex; flex-direction: column; overflow-y: auto; border-inline-end: 1px solid var(--line); background: #fff; }
.sidebar-profile { display: flex; align-items: center; gap: 12px; padding: 23px 20px 19px; border-bottom: 1px solid var(--line); }
.avatar { position: relative; flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; overflow: hidden; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #172b4e, #4269ac); font-size: .82rem; font-weight: 800; object-fit: cover; }
.avatar.large { width: 88px; height: 88px; border-radius: 25px; font-size: 1.25rem; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-profile b { display: block; font-size: .85rem; }
.sidebar-profile span { display: block; color: var(--muted); font-size: .69rem; }
.sidebar-profile > .avatar { display: grid; color: #fff; font-size: .82rem; }
.verified-dot { position: absolute; inset-inline-end: -1px; bottom: -1px; width: 14px; height: 14px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--success); }
.verified-dot .icon { width: 8px; height: 8px; color: #fff; stroke-width: 3; }
.sidebar-nav { display: flex; flex-direction: column; gap: 3px; padding: 16px 12px; }
.sidebar-label { margin: 13px 10px 7px; color: #9aa5b7; font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.sidebar-nav a { min-height: 44px; display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 11px; color: #627087; font-size: .8rem; font-weight: 700; transition: .18s ease; }
.sidebar-nav a:hover { color: var(--ink); background: #f6f8fb; }
.sidebar-nav a.active { color: var(--primary); background: var(--primary-soft); }
.sidebar-nav a .icon { width: 18px; height: 18px; }
.nav-count { min-width: 20px; height: 20px; display: inline-grid; place-items: center; margin-inline-start: auto; padding: 0 6px; border-radius: 10px; color: #fff; background: var(--danger); font-size: .62rem; }
.sidebar-membership { margin: auto 14px 14px; padding: 16px; border: 1px solid #dce4f7; border-radius: 16px; background: linear-gradient(145deg, #f6f8ff, #fff); }
.sidebar-membership > div { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sidebar-membership .icon { color: var(--primary); }
.sidebar-membership b { display: block; font-size: .76rem; }
.sidebar-membership span { display: block; color: var(--muted); font-size: .64rem; }
.dashboard-main { grid-column: 2; min-width: 0; padding: 34px 38px 72px; }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 28px; }
.dashboard-title h1 { margin: 0 0 4px; font-size: 1.75rem; letter-spacing: -.035em; }
.dashboard-title p { margin: 0; color: var(--muted); font-size: .82rem; }
.dashboard-actions { display: flex; align-items: center; gap: 9px; }
.dashboard-actions .notification-button { position: relative; }
.dashboard-actions .notification-button::after { content: ''; position: absolute; width: 7px; height: 7px; top: 8px; inset-inline-end: 8px; border: 2px solid #fff; border-radius: 50%; background: var(--danger); }
.dashboard-actions .mobile-sidebar-button { display: none; }

.notice-card { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px; padding: 15px 17px; border: 1px solid #f0dfbd; border-radius: 14px; background: var(--warning-soft); }
.notice-card .icon { flex: 0 0 auto; color: var(--warning); }
.notice-card b { display: block; margin-bottom: 2px; font-size: .79rem; }
.notice-card p { margin: 0; color: #8b6429; font-size: .72rem; }
.notice-card .button { margin-inline-start: auto; }
.notice-card.danger { border-color: #f2c7cf; background: var(--danger-soft); }
.notice-card.danger .icon { color: var(--danger); }
.notice-card.danger p { color: #a13d4d; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 15px; margin-bottom: 22px; }
.metric-card { position: relative; overflow: hidden; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.metric-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.metric-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: var(--primary); background: var(--primary-soft); }
.metric-card.success .metric-icon { color: var(--success); background: var(--success-soft); }
.metric-card.warning .metric-icon { color: var(--warning); background: var(--warning-soft); }
.metric-card.danger .metric-icon { color: var(--danger); background: var(--danger-soft); }
.metric-card .trend { color: var(--success); font-size: .68rem; font-weight: 800; }
.metric-value { display: block; margin-top: 19px; font-size: 1.65rem; line-height: 1; letter-spacing: -.035em; }
.metric-label { display: block; margin-top: 8px; color: var(--muted); font-size: .72rem; font-weight: 700; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: 18px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.panel + .panel { margin-top: 18px; }
.panel-head { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.panel-head h2 { margin: 0; font-size: .93rem; }
.panel-head p { margin: 3px 0 0; color: var(--muted); font-size: .68rem; }
.text-link { display: inline-flex; align-items: center; gap: 6px; border: 0; color: var(--primary); background: transparent; font-size: .72rem; font-weight: 800; cursor: pointer; }
.text-link .icon { width: 14px; height: 14px; }

.release-table { width: 100%; border-collapse: collapse; }
.release-table th { padding: 12px 18px; color: var(--muted-2); background: #fbfcfe; font-size: .65rem; font-weight: 800; text-align: start; text-transform: uppercase; letter-spacing: .06em; }
.release-table td { padding: 14px 18px; border-top: 1px solid #edf0f5; color: var(--muted); font-size: .73rem; }
.release-table tbody tr { transition: background .18s; }
.release-table tbody tr:hover { background: #fbfcff; }
.release-cell { display: flex; align-items: center; gap: 11px; }
.release-cover { flex: 0 0 auto; width: 41px; height: 41px; display: grid; place-items: center; overflow: hidden; border-radius: 11px; color: rgba(255,255,255,.78); background: linear-gradient(145deg, #172c53, #5f78a5); }
.release-cover.sunset { background: linear-gradient(145deg, #df7966, #4e4d8c); }
.release-cover.ocean { background: linear-gradient(145deg, #166c8b, #35c0b0); }
.release-cover.violet { background: linear-gradient(145deg, #4f3e87, #b968a3); }
.release-cover .icon { width: 18px; height: 18px; }
.release-name b { display: block; color: var(--ink); font-size: .76rem; }
.release-name span { display: block; margin-top: 1px; color: var(--muted-2); font-size: .65rem; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; font-size: .64rem; font-weight: 800; white-space: nowrap; }
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-published, .status-approved, .status-verified { color: #147b5a; background: var(--success-soft); }
.status-pending, .status-review { color: #a96808; background: var(--warning-soft); }
.status-changes { color: #9a5c13; background: #fff3dd; }
.status-rejected, .status-blocked { color: #b5364a; background: var(--danger-soft); }
.status-draft { color: #68778c; background: #f0f3f7; }
.status-sent { color: #315cf5; background: var(--primary-soft); }
.row-menu { width: 31px; height: 31px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; }
.row-menu .icon { width: 15px; height: 15px; }

.pipeline { padding: 19px; }
.pipeline-row { display: grid; grid-template-columns: 86px 1fr 27px; align-items: center; gap: 11px; margin-bottom: 14px; }
.pipeline-row:last-child { margin-bottom: 0; }
.pipeline-row span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.pipeline-track { height: 8px; overflow: hidden; border-radius: 8px; background: #eef1f5; }
.pipeline-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), #50c6e5); }
.pipeline-row b { font-size: .7rem; text-align: end; }
.channel-list { padding: 8px 18px 16px; }
.channel-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid #edf0f5; }
.channel-row:last-child { border: 0; }
.channel-avatar { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: var(--primary); background: var(--primary-soft); font-weight: 800; font-size: .7rem; }
.channel-row > div:nth-child(2) { min-width: 0; }
.channel-row b { display: block; font-size: .72rem; }
.channel-row span { display: block; color: var(--muted); font-size: .63rem; }
.channel-check { width: 22px; height: 22px; display: grid; place-items: center; margin-inline-start: auto; border-radius: 50%; color: #fff; background: var(--success); }
.channel-check .icon { width: 12px; height: 12px; stroke-width: 3; }
.account-card { padding: 19px; }
.account-state { display: flex; align-items: center; gap: 12px; }
.account-state-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--success); background: var(--success-soft); }
.account-state b { display: block; font-size: .8rem; }
.account-state span { display: block; color: var(--muted); font-size: .65rem; }
.profile-meter { margin-top: 18px; }
.profile-meter > div { display: flex; justify-content: space-between; margin-bottom: 7px; color: var(--muted); font-size: .66rem; font-weight: 700; }
.meter { height: 7px; overflow: hidden; border-radius: 7px; background: #eef1f5; }
.meter i { display: block; width: 82%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--cyan)); }

.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.search-field { position: relative; flex: 1; max-width: 360px; }
.search-field .icon { position: absolute; inset-inline-start: 13px; top: 50%; width: 17px; height: 17px; color: #94a0b3; transform: translateY(-50%); }
.search-field .form-control { min-height: 42px; padding-inline-start: 41px; }
.segmented { display: flex; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.segmented button { min-height: 34px; border: 0; border-radius: 9px; padding: 6px 11px; color: var(--muted); background: transparent; font-size: .68rem; font-weight: 800; cursor: pointer; }
.segmented button.active { color: var(--primary); background: var(--primary-soft); }
.release-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.release-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s; }
.release-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.release-art { position: relative; aspect-ratio: 1.35; display: grid; place-items: center; color: rgba(255,255,255,.82); background: linear-gradient(145deg, #172e55, #697aa4); }
.release-art.sunset { background: linear-gradient(145deg, #e27661, #684f9f); }
.release-art.ocean { background: linear-gradient(145deg, #176886, #36bcae); }
.release-art.violet { background: linear-gradient(145deg, #4d3c86, #c2699f); }
.release-art .icon { width: 38px; height: 38px; }
.release-art .status-badge { position: absolute; top: 12px; inset-inline-start: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.09); }
.release-card-body { padding: 16px; }
.release-card-body h3 { margin-bottom: 2px; font-size: .9rem; }
.release-card-body > span { color: var(--muted); font-size: .67rem; }
.release-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: .64rem; }
.release-card-meta div { display: flex; align-items: center; gap: 5px; }
.release-card-meta .icon { width: 13px; height: 13px; }

.wizard-layout { display: grid; grid-template-columns: 245px minmax(0,1fr); gap: 18px; align-items: start; }
.wizard-rail { position: sticky; top: 104px; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.wizard-rail h2 { margin-bottom: 19px; font-size: .86rem; }
.wizard-step { position: relative; display: flex; gap: 11px; min-height: 69px; color: var(--muted); cursor: pointer; }
.wizard-step:not(:last-child)::after { content: ''; position: absolute; top: 30px; bottom: 5px; inset-inline-start: 15px; width: 1px; background: var(--line); }
.wizard-index { position: relative; z-index: 2; flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; font-size: .68rem; font-weight: 800; }
.wizard-step.active { color: var(--primary); }
.wizard-step.active .wizard-index { color: #fff; border-color: var(--primary); background: var(--primary); box-shadow: 0 7px 15px rgba(49,92,245,.2); }
.wizard-step.complete .wizard-index { color: #fff; border-color: var(--success); background: var(--success); }
.wizard-step b { display: block; margin-top: 2px; color: var(--ink); font-size: .71rem; }
.wizard-step span { display: block; font-size: .61rem; }
.wizard-card { min-height: 570px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.wizard-head { padding: 23px 25px 18px; border-bottom: 1px solid var(--line); }
.wizard-head span { color: var(--primary); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wizard-head h2 { margin: 5px 0 4px; font-size: 1.18rem; }
.wizard-head p { margin: 0; color: var(--muted); font-size: .72rem; }
.wizard-body { padding: 25px; }
.wizard-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 25px; border-top: 1px solid var(--line); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 22px; }
.choice-card { position: relative; display: flex; align-items: center; gap: 13px; min-height: 86px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 15px; background: #fff; cursor: pointer; transition: .2s; }
.choice-card:hover { border-color: #bfcbe0; }
.choice-card.selected { border-color: var(--primary); background: #f8faff; box-shadow: 0 0 0 3px rgba(49,92,245,.07); }
.choice-card input { position: absolute; opacity: 0; }
.choice-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--primary); background: var(--primary-soft); }
.choice-card b { display: block; font-size: .8rem; }
.choice-card span { display: block; color: var(--muted); font-size: .64rem; }
.choice-check { width: 19px; height: 19px; display: grid; place-items: center; margin-inline-start: auto; border: 1px solid var(--line-strong); border-radius: 50%; }
.choice-card.selected .choice-check { color: #fff; border-color: var(--primary); background: var(--primary); }
.choice-check .icon { width: 11px; height: 11px; stroke-width: 3; }
.upload-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.upload-zone { position: relative; min-height: 245px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; border: 1.5px dashed #bdc9db; border-radius: 17px; background: #fbfcfe; text-align: center; cursor: pointer; transition: .2s; }
.upload-zone:hover, .upload-zone.dragging { border-color: var(--primary); background: var(--surface-blue); }
.upload-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 15px; color: var(--primary); background: var(--primary-soft); }
.upload-zone h3 { margin-bottom: 5px; font-size: .84rem; }
.upload-zone p { margin: 0; color: var(--muted); font-size: .68rem; }
.upload-rules { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.upload-rules span { padding: 4px 8px; border-radius: 7px; color: var(--muted); background: #eef2f7; font-size: .58rem; font-weight: 800; }
.upload-result { width: 100%; display: none; align-items: center; gap: 12px; padding: 14px; border: 1px solid #dbe5f3; border-radius: 13px; background: #fff; text-align: start; }
.upload-zone.has-file > :not(input):not(.upload-result) { display: none; }
.upload-zone.has-file .upload-result { display: flex; }
.upload-thumb { flex: 0 0 auto; width: 55px; height: 55px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; color: var(--primary); background: var(--primary-soft); }
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-info { min-width: 0; }
.upload-info b { display: block; overflow: hidden; color: var(--ink); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.upload-info span { display: block; color: var(--muted); font-size: .61rem; }
.validation-list { display: grid; gap: 9px; margin-top: 17px; }
.validation-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .67rem; }
.validation-item .icon { width: 16px; height: 16px; padding: 3px; border-radius: 50%; color: #fff; background: var(--success); stroke-width: 3; }
.rules-box { display: grid; gap: 12px; }
.rule-check { display: flex; align-items: flex-start; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.rule-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); }
.rule-check b { display: block; margin-bottom: 3px; font-size: .77rem; }
.rule-check p { margin: 0; color: var(--muted); font-size: .67rem; }
.review-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.summary-card { padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcfe; }
.summary-card span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .64rem; }
.summary-card b { display: flex; align-items: center; gap: 7px; font-size: .76rem; }
.summary-card .icon { width: 15px; height: 15px; color: var(--success); }
.track-list { display: grid; gap: 9px; margin: 14px 0; }
.track-row { display: grid; grid-template-columns: 30px minmax(0,1fr) 100px 34px; align-items: center; gap: 9px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.track-grip { color: #a4afbf; cursor: grab; }
.track-grip .icon { width: 17px; height: 17px; }
.track-row .form-control { min-height: 38px; padding: 8px 10px; font-size: .72rem; }

.profile-layout { display: grid; grid-template-columns: 310px minmax(0,1fr); gap: 18px; align-items: start; }
.profile-card { padding: 25px; text-align: center; }
.profile-card .avatar { margin: 0 auto 16px; }
.profile-card h2 { margin-bottom: 2px; font-size: 1.03rem; }
.profile-card > p { color: var(--muted); font-size: .7rem; }
.profile-facts { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; padding-top: 19px; border-top: 1px solid var(--line); }
.profile-facts div:first-child { border-inline-end: 1px solid var(--line); }
.profile-facts b { display: block; font-size: .9rem; }
.profile-facts span { color: var(--muted); font-size: .63rem; }
.form-panel { padding: 25px; }
.form-section-title { margin-bottom: 19px; }
.form-section-title h2 { margin-bottom: 3px; font-size: .95rem; }
.form-section-title p { margin: 0; color: var(--muted); font-size: .67rem; }

.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 350px; padding: 40px 22px; text-align: center; }
.empty-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid #dfe6f2; border-radius: 20px; color: var(--primary); background: var(--surface-blue); }
.empty-icon .icon { width: 27px; height: 27px; }
.empty-state h2 { margin-bottom: 7px; font-size: 1rem; }
.empty-state p { max-width: 380px; margin-bottom: 20px; color: var(--muted); font-size: .72rem; }

.admin-accent { --primary: #5363db; --primary-deep: #3e4dc1; --primary-soft: #eef0ff; }
.admin-bar { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 9px; color: #4c58bd; background: #eef0ff; font-size: .65rem; font-weight: 800; }
.queue-card { padding: 19px; }
.queue-top { display: flex; align-items: center; gap: 13px; }
.queue-info { flex: 1; min-width: 0; }
.queue-info h3 { margin: 0; font-size: .82rem; }
.queue-info p { margin: 2px 0 0; color: var(--muted); font-size: .66rem; }
.quality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 16px 0; }
.quality-item { padding: 11px; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfe; }
.quality-item span { display: block; color: var(--muted); font-size: .6rem; }
.quality-item b { display: flex; align-items: center; gap: 5px; margin-top: 2px; font-size: .69rem; }
.quality-item .icon { width: 13px; height: 13px; color: var(--success); }
.queue-actions { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 15px; border-top: 1px solid var(--line); }
.admin-list { padding: 0 18px; }
.admin-list-row { display: grid; grid-template-columns: minmax(160px,1.4fr) 1fr 1fr 100px; align-items: center; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .7rem; }
.admin-list-row:last-child { border: 0; }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-user .avatar { width: 35px; height: 35px; border-radius: 11px; }
.admin-user b { display: block; font-size: .72rem; }
.admin-user span { color: var(--muted); font-size: .62rem; }
.switch { position: relative; width: 38px; height: 22px; display: inline-block; }
.switch input { width: 0; height: 0; opacity: 0; }
.switch i { position: absolute; inset: 0; border-radius: 22px; background: #dce2eb; cursor: pointer; transition: .2s; }
.switch i::after { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,.16); transition: .2s; }
.switch input:checked + i { background: var(--success); }
.switch input:checked + i::after { transform: translateX(16px); }
html[dir='rtl'] .switch input:checked + i::after { transform: translateX(-16px); }

.modal-layer { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 22px; background: rgba(11,25,48,.5); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: .22s ease; }
.modal-layer.open { opacity: 1; visibility: visible; }
.modal { width: min(100%, 570px); max-height: min(760px, calc(100vh - 44px)); overflow: auto; border-radius: 22px; background: #fff; box-shadow: 0 35px 90px rgba(7,19,40,.25); transform: translateY(14px) scale(.98); transition: .22s ease; }
.modal-layer.open .modal { transform: none; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 19px 22px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0; font-size: 1rem; }
.modal-body { padding: 22px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 9px; padding: 16px 22px; border-top: 1px solid var(--line); }
.toast-region { position: fixed; z-index: 160; inset-inline-end: 20px; bottom: 20px; display: grid; gap: 9px; width: min(360px, calc(100% - 40px)); }
.toast { display: flex; align-items: flex-start; gap: 11px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); animation: rise .3s ease both; }
.toast-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--success); background: var(--success-soft); }
.toast.error .toast-icon { color: var(--danger); background: var(--danger-soft); }
.toast b { display: block; font-size: .75rem; }
.toast p { margin: 2px 0 0; color: var(--muted); font-size: .65rem; }

.mobile-dock { position: fixed; z-index: 70; inset-inline: 12px; bottom: max(12px, env(safe-area-inset-bottom)); height: 63px; align-items: center; justify-content: space-around; padding: 7px; border: 1px solid rgba(218,225,237,.9); border-radius: 19px; background: rgba(255,255,255,.94); box-shadow: 0 16px 45px rgba(18,38,74,.18); backdrop-filter: blur(18px); }
.mobile-dock a { min-width: 54px; height: 49px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-radius: 13px; color: var(--muted); font-size: .55rem; font-weight: 800; }
.mobile-dock a.active { color: var(--primary); background: var(--primary-soft); }
.mobile-dock .icon { width: 19px; height: 19px; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product-stage { min-height: 470px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1.4fr .7fr .7fr; }
  .footer-status { grid-column: 1 / -1; justify-self: start; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .release-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .main-nav, .header-actions .login-link, .header-actions .header-cta { display: none; }
  .menu-button { display: inline-grid; }
  .hero { padding-top: 55px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .product-stage { max-width: 650px; margin: 0 auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-icon { margin-bottom: 38px; }
  .network-panel { grid-template-columns: 1fr; padding: 40px; }
  .network-map { height: 300px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .dashboard-shell { display: block; padding-top: 78px; }
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 28px 22px 95px; }
  .dashboard-actions .mobile-sidebar-button { display: inline-grid; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .mobile-dock[hidden] { display: none; }
  .mobile-dock { display: flex; }
  .wizard-layout { grid-template-columns: 1fr; }
  .wizard-rail { position: static; display: grid; grid-template-columns: repeat(5,1fr); padding: 10px; overflow-x: auto; }
  .wizard-rail h2 { display: none; }
  .wizard-step { min-width: 105px; min-height: 47px; align-items: center; }
  .wizard-step::after { display: none; }
  .wizard-step span { display: none; }
  .profile-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { min-height: 70px; }
  .brand { font-size: .96rem; }
  .brand-mark { width: 34px; height: 34px; }
  .language-button { width: 38px; height: 38px; }
  .site-header.dashboard-header { position: sticky; }
  .hero { padding: 43px 0 70px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 9px 13px; }
  .product-stage { min-height: 365px; }
  .product-window { border-radius: 18px; transform: none; }
  html[dir='rtl'] .product-window { transform: none; }
  .window-body { grid-template-columns: 88px 1fr; min-height: 280px; }
  .window-sidebar { padding: 12px 8px; }
  .window-content { padding: 15px; }
  .mini-nav { font-size: 0; }
  .mini-stats { gap: 6px; }
  .mini-stat { padding: 8px; }
  .mini-table-row { grid-template-columns: 27px 1fr 39px; padding: 0 8px; }
  .mini-table-row .mini-line:nth-of-type(2) { display: none; }
  .floating-badge { padding: 9px 11px; font-size: .63rem; }
  .floating-badge.top { top: 10px; inset-inline-end: -4px; }
  .floating-badge.bottom { bottom: 4px; }
  .stats-panel { grid-template-columns: 1fr; padding: 5px 20px; }
  .public-stat { display: flex; align-items: center; justify-content: space-between; padding: 13px 2px; border-inline-end: 0; border-bottom: 1px solid var(--line); text-align: start; }
  .public-stat b { font-size: 1.25rem; }
  .public-section { padding: 76px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card { min-height: 170px; }
  .network-panel { padding: 30px 22px; border-radius: 25px; }
  .network-map { height: 250px; }
  .network-node { width: 54px; height: 54px; border-radius: 17px; }
  .network-node.main { width: 76px; height: 76px; }
  .plan-grid { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 31px 24px; }
  .cta-panel .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand, .footer-status { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 16px 0; }
  .page-hero { padding: 66px 0 45px; }
  .page-hero h1 { font-size: 2.65rem; }
  .content-shell, .guideline-grid { padding: 46px 14px 80px; }
  .guideline-grid { grid-template-columns: 1fr; }
  .content-card { padding: 26px 20px; }
  .auth-page { min-height: calc(100vh - 70px); }
  .auth-panel { padding: 35px 22px 65px; align-items: flex-start; }
  .auth-box .brand { margin-bottom: 34px; }
  .auth-box h1 { font-size: 1.9rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .dashboard-shell { padding-top: 0; }
  .dashboard-main { padding: 22px 14px 94px; }
  .dashboard-topbar { align-items: flex-start; }
  .dashboard-title h1 { font-size: 1.45rem; }
  .dashboard-title p { max-width: 230px; }
  .dashboard-actions .button { display: none; }
  .notice-card { flex-wrap: wrap; }
  .notice-card .button { width: 100%; margin: 5px 0 0; }
  .metric-grid { gap: 10px; }
  .metric-card { padding: 15px; }
  .metric-icon { width: 34px; height: 34px; }
  .metric-value { font-size: 1.35rem; }
  .panel { overflow: hidden; }
  .release-table th:nth-child(3), .release-table td:nth-child(3), .release-table th:nth-child(4), .release-table td:nth-child(4) { display: none; }
  .release-table th, .release-table td { padding: 12px; }
  .toolbar { align-items: stretch; flex-wrap: wrap; }
  .search-field { max-width: none; width: 100%; flex-basis: 100%; }
  .release-card-grid { grid-template-columns: 1fr; }
  .wizard-rail { margin: -7px -4px 0; }
  .wizard-step { min-width: 78px; flex-direction: column; gap: 3px; text-align: center; }
  .wizard-step b { font-size: .59rem; }
  .wizard-card { min-height: 0; }
  .wizard-head, .wizard-body { padding: 20px 17px; }
  .wizard-footer { padding: 15px 17px; }
  .choice-grid, .upload-grid, .review-summary { grid-template-columns: 1fr; }
  .upload-zone { min-height: 215px; }
  .track-row { grid-template-columns: 23px minmax(0,1fr) 30px; }
  .track-row .track-duration { display: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .admin-list-row { grid-template-columns: 1fr auto; }
  .admin-list-row > :nth-child(2), .admin-list-row > :nth-child(3) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* WordPress integration · Designed & Developed by Web S */
.admin-bar .site-header { top: 32px; }
.dashboard-mode .site-header { position: fixed; width: 100%; }
.dashboard-mode .site-footer { display: none; }
.dashboard-mode #primary { min-height: 100vh; }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }
.table-scroll { overflow-x: auto; }
.wizard-step { border: 0; padding: 0; background: transparent; font: inherit; text-align: start; }
.form-message { grid-column: 1 / -1; min-height: 22px; margin-top: 10px; font-size: .75rem; font-weight: 700; }
.form-message.is-error { color: var(--danger); }
.form-message.is-success { color: var(--success); }
.upload-file-summary { position: relative; z-index: 2; display: grid; gap: 4px; margin-top: 12px; color: var(--ink); font-size: .65rem; font-weight: 700; }
.channel-row.is-unread { margin-inline: -18px; padding-inline: 18px; background: #f8faff; }
.enteshar-live-portal .dashboard-main { min-height: calc(100vh - 78px); }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 680px) { .dashboard-mode .site-header { position: sticky; } .enteshar-live-portal { padding-top: 0; } }
