:root {
  --bg: #060708;
  --bg-2: #0b0d10;
  --panel: rgba(16, 18, 21, 0.78);
  --panel-solid: #101215;
  --panel-2: #171a1f;
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f4f7fb;
  --muted: #9aa4b2;
  --muted-2: #687281;
  --blue: #2f8cff;
  --blue-2: #65aaff;
  --green: #26d07c;
  --red: #ff4d5e;
  --amber: #ffb020;
  --shadow: 0 30px 100px rgba(0,0,0,0.55);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(47, 140, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(38, 208, 124, 0.08), transparent 30rem),
    radial-gradient(circle at 50% 65%, rgba(255, 176, 32, 0.06), transparent 30rem),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  background: linear-gradient(to bottom, transparent, rgba(47, 140, 255, 0.05), transparent);
  height: 120px;
  animation: scan 8s linear infinite;
  opacity: 0.16;
}

@keyframes scan {
  from { transform: translateY(-140px); }
  to { transform: translateY(calc(100vh + 140px)); }
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  min-width: 0;
}

.section-pad { padding: 120px 0; }
.section-pad.compact { padding: 86px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 7, 8, 0.72);
  backdrop-filter: blur(18px);
  transition: background .25s, border-color .25s;
}

.site-header-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 8, 0.91);
  border-color: rgba(255,255,255,0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: fit-content;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 77, 94, 0.38);
  background: radial-gradient(circle at 50% 0, rgba(255, 77, 94, 0.18), rgba(255, 77, 94, 0.02));
  color: #ff6d7a;
  font-family: JetBrains Mono, monospace;
  font-weight: 800;
  font-size: 13px;
}

.brand-mark.mini { width: 22px; height: 22px; border-radius: 7px; font-size: 11px; }
.brand-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}
.brand-name { font-weight: 900; letter-spacing: .04em; }
.brand-beta { color: var(--muted); font-size: 12px; font-weight: 700; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-left: 14px;
  margin-right: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .18s, background .18s;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.main-nav a[aria-current="page"] { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions [data-auth-link] { min-width: 96px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); border-radius: 20px; }

.primary-btn, .secondary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .18s, background .18s, border-color .18s, box-shadow .18s;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--blue), #146be1);
  box-shadow: 0 14px 36px rgba(47, 140, 255, 0.28);
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(47, 140, 255, 0.36); }
.secondary-btn {
  color: var(--text);
  background: rgba(255,255,255,0.055);
  border-color: var(--line-strong);
}
.secondary-btn:hover, .ghost-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }
.ghost-btn {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}
.small { min-height: 40px; padding: 0 14px; border-radius: 12px; font-size: 14px; }
.big { min-height: 54px; padding: 0 24px; border-radius: 16px; }
.full { width: 100%; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 84px);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.55), transparent);
}
.hero-divider {
  position: relative;
  padding: 0 0 24px;
}
.hero-divider-line {
  position: relative;
  height: 1px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.55), transparent);
  box-shadow: 0 0 10px rgba(47, 140, 255, 0.18);
}
.problem-section {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.problem-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1080px, 84vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: url("round.webp") center / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
  filter: saturate(1.05);
  animation: orbitSpinCentered 38s linear infinite;
}
.problem-section > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
  gap: 54px;
  align-items: center;
  min-width: 0;
}

.hero-copy,
.hero-visual,
.split-grid,
.section-heading,
.process-list,
.result-grid,
.account-layout,
.account-stack,
.account-card-grid,
.account-profile,
.account-card {
  min-width: 0;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: .12em;
  color: var(--blue-2);
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(38, 208, 124, 0.12), 0 0 22px rgba(38, 208, 124, 0.6);
}
.hero-title, .section-heading h2, .cta-panel h2 {
  font-family: Unbounded, Inter, sans-serif;
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.055em;
  margin: 18px 0 0;
}
.hero-title {
  max-width: 800px;
  font-size: clamp(52px, 4.8vw, 72px);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}
.hero-subtitle {
  color: #c1c8d1;
  font-size: 20px;
  line-height: 1.6;
  max-width: 660px;
  margin: 25px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  min-height: 56px;
  padding-inline: 26px;
}
.hero-actions .primary-btn {
  min-width: 248px;
}
.hero-actions .secondary-btn {
  min-width: 232px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 640px;
}
.trust-strip div {
  min-height: 80px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}
.trust-strip strong { display: block; font-family: JetBrains Mono, monospace; font-size: 17px; }
.trust-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.trust-strip .trust-accent {
  border-color: rgba(255, 176, 32, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 176, 32, 0.08), rgba(255,255,255,0.035));
  box-shadow: 0 12px 28px rgba(255, 176, 32, 0.12);
}
.trust-strip .trust-accent strong {
  color: var(--amber);
}
.trust-strip .trust-accent span {
  color: #f0d2a4;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.app-stage {
  position: relative;
  width: min(940px, 100%);
  aspect-ratio: 1680 / 980;
  transform: perspective(1100px) rotateY(-6deg) rotateX(3deg);
  transform-origin: center;
  overflow: visible;
}

.app-stage::after {
  content: "";
  position: absolute;
  inset: 8% 6% 10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 78%, rgba(255, 176, 32, 0.24), transparent 34%),
    radial-gradient(circle at 42% 40%, rgba(255, 132, 32, 0.08), transparent 40%);
  filter: blur(34px);
}

.app-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.04);
  transition: opacity 900ms ease, transform 5200ms ease;
}
.app-screen.is-active {
  opacity: 0.68;
  transform: scale(1.045);
}
.float-card {
  position: absolute;
  z-index: 2;
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(16, 18, 21, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.4);
}
.float-card strong { display: block; margin-top: 4px; }
.float-card small, .muted { color: var(--muted); }
.card-render { left: -12px; bottom: 74px; width: 235px; animation: float 5.2s ease-in-out infinite; }
.card-killfeed { right: 8px; top: 76px; min-width: 268px; animation: float 5.8s ease-in-out infinite reverse; }
.card-killfeed .killfeed-row {
  display: grid;
  grid-template-columns: 72px minmax(76px, 1fr) 72px;
  align-items: center;
  gap: 8px;
  min-height: 18px;
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
}
.card-killfeed .killfeed-row + .killfeed-row { margin-top: 9px; }
.card-killfeed b { color: var(--blue-2); }
.card-killfeed em { justify-self: end; color: var(--amber); font-style: normal; }
.killfeed-player {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.killfeed-icons {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.killfeed-icons img,
.killfeed-effect {
  display: block;
  width: 15px;
  height: 15px;
  filter: invert(1);
  object-fit: contain;
  opacity: .9;
}
.killfeed-icons .killfeed-weapon {
  width: 28px;
}
.killfeed-effect {
  flex: 0 0 auto;
  width: 16px;
}
.card-status { right: 110px; bottom: 30px; min-width: 210px; animation: float 6.3s ease-in-out infinite; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 7px; box-shadow: 0 0 18px var(--green); }
.progress { height: 7px; margin: 12px 0 9px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--green)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes orbitSpin { from { transform: rotate(0deg) scale(1); } to { transform: rotate(360deg) scale(1); } }
@keyframes orbitSpinCentered {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.section-heading { max-width: 710px; }
.section-heading.center { margin: 0 auto 46px; text-align: center; }
.section-heading h2 { font-size: clamp(34px, 4.4vw, 58px); }
.section-heading p, .cta-panel p { color: var(--muted); font-size: 18px; line-height: 1.65; margin: 18px 0 0; }
.result-title span { display: block; }
.result-title {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.problem-dash-word {
  white-space: nowrap;
}

.pain-grid, .feature-grid, .review-grid, .result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain-card, .feature-card, .review-card, .video-card, .step-card, .price-card, .promo-box, .docs-panel, .mock-cabinet, .showcase-card, .faq details, .cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}
.pain-card { padding: 24px; min-height: 210px; position: relative; overflow: hidden; }
.pain-card::after, .feature-card::after, .price-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(47,140,255,0.18), transparent 42%);
  transition: opacity .2s;
}
.pain-card:hover::after, .feature-card:hover::after, .price-card:hover::after { opacity: 1; }
.pain-card span { color: var(--blue-2); font-family: JetBrains Mono, monospace; font-weight: 800; }
.pain-card h3, .feature-card h3, .step-card h3, .video-card h3, .price-card h3, .promo-box h3 { margin: 18px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.pain-card p, .feature-card p, .step-card p, .video-card p, .price-card p, .review-card p, .promo-box p { color: var(--muted); line-height: 1.6; margin: 0; }

.split-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.sticky-copy { position: sticky; top: calc(var(--header-h) + 38px); }
.sticky-copy .secondary-btn { margin-top: 28px; }
.process-list {
  display: grid;
  gap: 22px;
  align-content: start;
  padding-top: 8px;
}
.process-item { position: relative; }
.process-item h3 {
  position: relative;
  min-width: 0;
  margin: 0;
  font-size: clamp(28px, 2.25vw, 40px);
  line-height: 1.06;
  letter-spacing: -.035em;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}
.process-item h3::before {
  content: "\2014";
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 10px;
  color: var(--text);
}
.process-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: none;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-card { position: relative; padding: 26px; min-height: 230px; overflow: hidden; }
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: JetBrains Mono, monospace;
  font-weight: 900;
  color: var(--blue-2);
  border: 1px solid rgba(47,140,255,0.28);
  background: rgba(47,140,255,0.12);
}

.showcase-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 18px; margin-top: 36px; }
.showcase-card { overflow: hidden; background: rgba(8,9,11,0.74); }
.showcase-card img { width: 100%; height: 430px; object-fit: cover; object-position: left top; opacity: .78; transition: transform .55s, opacity .3s; }
.showcase-card:not(.large) img { height: 430px; object-position: left top; }
.showcase-card:hover img { transform: scale(1.035); opacity: .95; }
.showcase-card figcaption { padding: 18px; color: var(--muted); line-height: 1.5; }
.showcase-card figcaption span { display: block; margin-bottom: 5px; color: var(--text); font-weight: 900; }

.video-card { padding: 14px 14px 22px; }
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 28% 28%, rgba(47,140,255,0.42), transparent 33%),
    linear-gradient(135deg, #121722, #08090b 70%);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.video-thumb.alt { background: radial-gradient(circle at 65% 30%, rgba(38,208,124,0.32), transparent 36%), linear-gradient(135deg, #161b18, #08090b 70%); }
.video-thumb.third { background: radial-gradient(circle at 35% 70%, rgba(255,176,32,0.32), transparent 36%), linear-gradient(135deg, #1c1710, #08090b 70%); }
.video-thumb.has-video {
  background: #050607;
}
.result-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050607;
  opacity: .78;
  pointer-events: none;
  transition: transform .28s, opacity .24s, filter .24s;
}
.video-thumb:hover .result-video { transform: scale(1.035); opacity: .95; filter: brightness(.78); }
.play {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}
.video-lines { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 8px; }
.video-lines span { height: 8px; border-radius: 20px; background: rgba(255,255,255,0.16); }
.video-lines span:nth-child(2) { width: 72%; }
.video-lines span:nth-child(3) { width: 44%; }
.video-card h3, .video-card p { margin-left: 8px; margin-right: 8px; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(16px);
}
.video-modal-card {
  position: relative;
  width: min(1280px, 76vw);
  max-width: calc(100vw - 48px);
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(12,14,17,0.92);
  box-shadow: var(--shadow);
}
.video-modal-player {
  width: 100%;
  max-height: 72vh;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: #050607;
}
.video-modal-card h3 {
  margin: 14px 4px 2px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.video-modal-close {
  z-index: 2;
  right: -14px;
  top: -14px;
}

.pricing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pricing::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 62%;
  width: min(1600px, 122vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url("round2.webp") center / contain no-repeat;
  opacity: .27;
  filter: saturate(1.24) brightness(1.18) blur(1px);
  pointer-events: none;
  animation: orbitSpinCentered 44s linear infinite reverse;
}

.pricing::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 145, 35, 0.72), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 145, 35, 0.72), transparent) bottom / 100% 1px no-repeat;
  filter: drop-shadow(0 0 8px rgba(255, 125, 25, 0.28));
  pointer-events: none;
}

.pricing > .container {
  position: relative;
  z-index: 1;
}
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 18px; }
.pricing .section-heading h2 { font-size: clamp(34px, 4.2vw, 56px); }
.pricing .section-heading h2 span { display: block; }
.pricing-title-secondary { font-size: .86em; }
.price-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 20, 23, 0.96), rgba(9, 11, 13, 0.94));
  backdrop-filter: blur(10px);
}
.price-card.featured { border-color: rgba(47,140,255,0.45); box-shadow: 0 30px 100px rgba(47,140,255,0.12); }
.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(47,140,255,0.14);
  border: 1px solid rgba(47,140,255,0.28);
  color: var(--blue-2);
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.price { margin: 28px 0; font-weight: 900; font-size: 28px; }
.price span { font-family: Unbounded, Inter, sans-serif; font-size: 70px; letter-spacing: -.05em; }
.price-card ul { padding: 0; margin: 0 0 30px; list-style: none; display: grid; gap: 13px; }
.price-card li { color: #c9d0d9; }
.price-card li::before { content: "✓"; color: var(--green); margin-right: 10px; }
.promo-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin: 18px auto 0;
  max-width: 858px;
}
.promo-box h3 { margin-top: 0; }
.promo-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; min-width: 430px; }
.promo-form input, .docs-search input, .modal-form input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}
.promo-form input:focus, .docs-search input:focus, .modal-form input:not([type="checkbox"]):not([type="radio"]):focus { border-color: rgba(47,140,255,0.55); box-shadow: 0 0 0 4px rgba(47,140,255,0.1); }
.promo-form small { grid-column: 1 / -1; color: var(--green); min-height: 17px; }

.review-card { padding: 24px; }
.review-meta { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47,140,255,0.32), rgba(38,208,124,0.14));
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
}
.review-meta small { display: block; margin-top: 4px; color: var(--muted); }
.review-card p { color: #d9dfe7; font-size: 17px; }

.docs-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.docs-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}
.docs-search span { color: var(--muted); font-family: JetBrains Mono, monospace; padding-left: 8px; }
.docs-search input { border: 0; background: transparent; min-height: 34px; padding-left: 0; }
.docs-search input:focus { box-shadow: none; }
.docs-panel { padding: 18px; }
.docs-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.docs-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  font-weight: 800;
}
.docs-tabs button.active { color: white; background: rgba(47,140,255,0.18); border-color: rgba(47,140,255,0.35); }
.doc-content { display: none; padding: 20px; border-radius: 18px; background: rgba(0,0,0,0.18); border: 1px solid var(--line); min-height: 260px; }
.doc-content.active { display: block; }
.doc-content h3 { margin: 0 0 16px; font-size: 25px; }
.doc-content p, .doc-content li { color: #c7ced8; line-height: 1.75; }
.doc-content ol { margin: 0; padding-left: 20px; }

.docs-body {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 176, 32, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(47, 140, 255, 0.12), transparent 28rem),
    var(--bg);
}

.docs-main {
  min-height: 100vh;
  padding-top: var(--header-h);
}

.docs-landing,
.doc-shell {
  padding: 62px 0 110px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.breadcrumb-home,
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 850;
}

.breadcrumb-home {
  width: 38px;
  border-radius: 13px;
}

.breadcrumb-home svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.breadcrumb-pill {
  padding: 0 16px;
  border-radius: 999px;
}

.breadcrumb-sep {
  color: var(--muted);
  font-weight: 900;
}

.docs-title-block {
  max-width: 760px;
  margin-bottom: 34px;
}

.docs-title-block h1,
.doc-article h1 {
  margin: 0;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .95;
  letter-spacing: -.06em;
}

.docs-title-block p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #d7dee7;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.55;
}

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

.docs-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 118px;
  padding: 22px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 100%, rgba(47,140,255,0.18), transparent 46%),
    radial-gradient(circle at 100% 0%, rgba(255,176,32,0.08), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022));
  transition: transform .18s, border-color .18s, background .18s;
}

.docs-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47,140,255,0.48);
  background:
    radial-gradient(circle at 0% 100%, rgba(47,140,255,0.25), transparent 46%),
    radial-gradient(circle at 100% 0%, rgba(255,176,32,0.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03));
}

.docs-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47,140,255,0.38);
  border-radius: 16px;
  background: rgba(47,140,255,0.12);
  color: var(--blue-2);
  font-family: JetBrains Mono, monospace;
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 0 24px rgba(47,140,255,0.06);
}

.docs-card-icon-download {
  font-size: 32px;
  line-height: 1;
}

.docs-card strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.docs-card small {
  display: block;
  margin-top: 12px;
  color: #c8d1dd;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.doc-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12,14,17,0.72);
}

.doc-sidebar .section-kicker {
  margin: 0 0 8px;
}

.doc-sidebar a {
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  transition: color .18s, background .18s;
}

.doc-sidebar a:hover,
.doc-sidebar a.active {
  color: var(--text);
  background: rgba(47,140,255,0.14);
}

.doc-article {
  max-width: 920px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10,12,15,0.58);
}

.doc-article h1 {
  margin-bottom: 32px;
}

[data-content-slug="privacy"] .doc-article h1 {
  max-width: 100%;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.doc-article h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.doc-article h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.doc-article p,
.doc-article li {
  color: #c9d2dd;
  font-size: 17px;
  line-height: 1.75;
}

.doc-article a {
  color: var(--blue-2);
  font-weight: 850;
}

.doc-article ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.doc-article code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: #dcecff;
  font-family: JetBrains Mono, monospace;
  font-size: .92em;
}

.doc-article pre {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,0.26);
}

.doc-article pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.doc-article figure {
  margin: 22px 0 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
}

.doc-article figure img {
  width: 100%;
  height: auto;
}

.doc-callout {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 20px;
  padding: 10px 13px;
  border: 1px solid rgba(47,140,255,0.32);
  border-radius: 999px;
  background: rgba(47,140,255,0.1);
  color: #dcecff;
  font-weight: 800;
}

.doc-callout span {
  color: var(--muted);
}

.doc-summary {
  margin: -10px 0 24px;
  color: #dce5ef;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.6;
}

.doc-article table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.doc-article th,
.doc-article td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: #d9e0e8;
}

.doc-article th {
  width: 34%;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.doc-article tr:last-child th,
.doc-article tr:last-child td {
  border-bottom: 0;
}

.cabinet-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.mock-cabinet { padding: 22px; background: rgba(11, 13, 16, 0.82); }
.cabinet-top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.cabinet-top b { color: var(--green); font-family: JetBrains Mono, monospace; font-size: 12px; text-transform: uppercase; }
.key-card { margin-top: 20px; padding: 28px; border-radius: 22px; border: 1px solid rgba(47,140,255,0.28); background: linear-gradient(135deg, rgba(47,140,255,0.14), rgba(255,255,255,0.03)); }
.key-card small { display: block; color: var(--muted); margin-bottom: 10px; }
.key-card strong { display: block; font-family: JetBrains Mono, monospace; font-size: clamp(22px, 4vw, 38px); letter-spacing: -.03em; }
.key-status { margin-top: 18px; color: #d8e7de; }
.key-status span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 8px; }
.cabinet-actions-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.cabinet-actions-row button {
  min-height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.faq-list { max-width: 850px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { padding: 0 22px; }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-weight: 900; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--blue-2); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); line-height: 1.65; margin: 0; padding: 0 0 22px; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 46px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(47,140,255,0.25), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px;
  opacity: .18;
}
.cta-panel > * { position: relative; }
.cta-panel h2 { font-size: clamp(34px, 4.5vw, 58px); }
.cta-actions { display: grid; gap: 12px; min-width: 260px; }

.footer {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer p {
  margin: 8px 0 0;
  color: var(--muted);
}
.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .04em;
}
.footer-links {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  padding-top: 0;
}
.footer-links a {
  color: #d7dee7;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-weight: 700;
}
.footer-links a:hover { color: var(--text); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; padding: 0; border: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(12px); }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background: #101215;
  box-shadow: var(--shadow);
  padding: 30px;
  animation: modalIn .22s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0;
  transition: border-color .18s, background .18s, transform .18s;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-close:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}
.modal-card h2 { margin: 14px 0 10px; font-family: Unbounded, Inter, sans-serif; letter-spacing: -.04em; }
.modal-card p { color: var(--muted); line-height: 1.55; }
.modal-form { display: grid; gap: 14px; margin-top: 20px; }
.modal-form label { display: grid; gap: 8px; color: #dbe2eb; font-weight: 800; }
.modal-form small { color: var(--muted); line-height: 1.5; }

.checkout-card {
  width: min(650px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 30px 34px 34px;
}

.landing-checkout-card {
  width: min(540px, 100%);
}

.checkout-card > p {
  margin: 0;
}

.checkout-selected {
  color: var(--muted);
  font-size: 16px;
}

.checkout-field > span {
  color: #dbe2eb;
  font-size: 14px;
  font-weight: 800;
}

.checkout-form {
  gap: 18px;
  margin-top: 22px;
}

.checkout-section {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-section legend {
  margin-bottom: 10px;
  color: #dbe2eb;
  font-size: 14px;
  font-weight: 800;
}

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

.checkout-plan {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.checkout-plan input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-plan > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  transition: border-color .18s, background .18s, box-shadow .18s, transform .18s;
}

.checkout-plan strong {
  font-size: 17px;
}

.checkout-plan small {
  color: #edf5ff;
  font-family: JetBrains Mono, monospace;
  font-size: 15px;
}

.checkout-plan:hover > span {
  border-color: rgba(47,140,255,0.42);
  transform: translateY(-2px);
}

.checkout-plan.is-selected > span,
.checkout-plan input:focus-visible + span {
  border-color: rgba(47,140,255,0.72);
  background: rgba(47,140,255,0.12);
  box-shadow: inset 0 0 34px rgba(47,140,255,0.07);
}

.checkout-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.checkout-promo .secondary-btn {
  min-width: 132px;
}

.checkout-promo-message {
  display: block;
  min-height: 21px;
  margin-top: 7px;
}

.checkout-promo-message:empty,
.checkout-message:empty {
  display: none;
}

.checkout-promo-message[data-state="success"] { color: #8ff0bd; }
.checkout-promo-message[data-state="error"] { color: #ff8994; }
.checkout-promo-message[data-state="pending"] { color: #9fc9ff; }

.checkout-section input[data-state="success"] {
  border-color: rgba(38,208,124,0.78);
  background: rgba(38,208,124,0.08);
  box-shadow: 0 0 0 4px rgba(38,208,124,0.1), inset 0 0 30px rgba(38,208,124,0.05);
  color: #bdf6d7;
}

.checkout-section input[data-state="error"] {
  border-color: rgba(255,77,94,0.62);
  background: rgba(255,77,94,0.055);
}

.checkout-summary {
  display: grid;
  gap: 9px;
  padding: 17px 18px;
  border-block: 1px solid var(--line);
}

.checkout-summary > span,
.checkout-summary > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checkout-summary > span {
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary > strong {
  font-size: 19px;
}

.checkout-summary b {
  color: var(--text);
}

.checkout-discount[hidden] {
  display: none;
}

.checkout-discount b {
  color: #8ff0bd;
}

.modal-form .checkout-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.checkout-consent a {
  color: #dcecff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-submit:disabled,
.checkout-promo .secondary-btn:disabled {
  cursor: wait;
  opacity: .62;
}

.checkout-message {
  min-height: 20px;
  text-align: center;
}

.auth-card {
  display: grid;
  width: min(430px, 100%);
  gap: 20px;
  padding: 42px 36px 34px;
  background: rgba(11, 13, 16, 0.96);
}

.auth-card h2 {
  margin: 2px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
}

.auth-card > small {
  position: relative;
  padding-top: 4px;
  color: #cbd3dc;
  font-weight: 750;
  text-align: center;
}

.auth-symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 50px;
  color: #32d5c4;
}

.auth-symbol::before {
  content: "";
  position: absolute;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: currentColor;
  box-shadow: 0 0 24px rgba(50, 213, 196, 0.2);
}

.auth-symbol i {
  position: absolute;
  bottom: 0;
  width: 42px;
  height: 20px;
  border-radius: 10px 10px 4px 4px;
  background: currentColor;
}

.steam-auth-btn {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 60px;
  margin-top: 2px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 12px;
  background: #f3f5f7;
  color: #090b0e;
  font-weight: 900;
  text-align: center;
  transition: border-color .18s, background .18s, transform .18s, box-shadow .18s;
}

.steam-auth-btn:hover {
  border-color: white;
  background: white;
  box-shadow: 0 16px 45px rgba(47,140,255,0.18);
  transform: translateY(-2px);
}

.steam-auth-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.steam-auth-mark img {
  width: 33px;
  height: 33px;
  display: block;
}
.account-page {
  --container: 1360px;
}

.profile-modal {
  padding: 24px;
}

.profile-modal-card {
  width: min(1280px, 100%);
  max-height: calc(100vh - 48px);
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(47,140,255,0.1), transparent 30rem),
    radial-gradient(circle at 92% 100%, rgba(38,208,124,0.07), transparent 30rem),
    #090b0e;
}

.profile-modal-layout {
  --profile-space: 22px;
  width: 100%;
  max-height: calc(100vh - 48px);
  padding: var(--profile-space);
  overflow-x: hidden;
  overflow-y: auto;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.48fr);
  gap: var(--profile-space);
}

.profile-modal-close {
  z-index: 8;
  top: 10px;
  right: 10px;
  background: rgba(11,13,16,0.92);
  backdrop-filter: blur(12px);
}

.profile-modal .account-stack,
.profile-modal .account-card-grid {
  gap: var(--profile-space);
}

.profile-modal .account-profile,
.profile-modal .account-card {
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.account-main {
  min-height: 100vh;
  padding-top: var(--header-h);
}

.account-hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(390px, .74fr) minmax(0, 1.46fr);
  gap: 32px;
  align-items: stretch;
}

.account-profile,
.account-card {
  position: relative;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 140, 255, 0.18), transparent 38%),
    radial-gradient(circle at 12% 92%, rgba(255, 176, 32, 0.11), transparent 34%),
    rgba(15, 17, 20, 0.78);
  box-shadow: 0 24px 90px rgba(0,0,0,0.38);
}

.account-profile {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px 30px;
}

.account-profile::after,
.account-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 34px 100%;
  opacity: .12;
}

.account-profile > *,
.account-card > * { position: relative; z-index: 1; }

.account-avatar {
  width: min(210px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: #050607;
  box-shadow: inset 0 0 70px rgba(0,0,0,0.82);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-key {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-top: -8px;
  padding: 20px;
  text-align: left;
  color: var(--text);
  border: 1px solid rgba(47, 140, 255, 0.34);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(47,140,255,0.2), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 20px 60px rgba(0,0,0,0.24);
  transition: transform .18s, border-color .18s, background .18s, box-shadow .18s;
}

.account-key:has(.account-key-value:hover),
.account-key:has(.account-key-value:focus-visible) {
  border-color: rgba(47, 140, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035), 0 22px 70px rgba(47,140,255,0.16);
}

.account-key-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.account-key-value {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #f4f7fb;
  cursor: pointer;
  filter: blur(7px);
  font-family: JetBrains Mono, monospace;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.15;
  text-align: left;
  text-overflow: ellipsis;
  text-shadow: 0 0 22px rgba(47,140,255,0.24);
  transform: translateZ(0);
  transition: filter .2s, text-shadow .2s;
  user-select: none;
  white-space: nowrap;
}

.account-key-value:hover,
.account-key-value:focus-visible,
.account-key.is-copied .account-key-value {
  outline: 0;
  filter: blur(0);
  text-shadow: 0 0 22px rgba(47,140,255,0.42);
}

.account-key-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce5ef;
  font-weight: 800;
}

.account-key-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(38,208,124,0.9);
}

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

.account-key-meta > span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  color: #e9eef5;
  font-weight: 800;
}

.account-key-meta b {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.account-key small {
  color: var(--muted);
  line-height: 1.45;
}

.account-key.is-copied {
  border-color: rgba(38,208,124,0.58);
  box-shadow: inset 0 0 0 1px rgba(38,208,124,0.08), 0 22px 70px rgba(38,208,124,0.12);
}

.account-key.is-copied small { color: #8ff0bd; }

.account-key.is-empty .account-key-value {
  cursor: default;
  filter: none;
  color: var(--muted);
  overflow: visible;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0;
  line-height: 1.25;
  text-overflow: clip;
  text-shadow: none;
  white-space: normal;
}

.account-key.is-empty .account-key-status i {
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,176,32,0.75);
}

.account-login-action,
.account-buy-action {
  width: 100%;
  min-height: 46px;
}

.account-login-action[hidden],
.account-buy-action[hidden],
.account-admin-action[hidden] {
  display: none;
}

.account-admin-action {
  position: absolute;
  z-index: 3;
  top: 80px;
  right: 30px;
  width: auto;
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 12px;
}

.account-logout {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 30px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(7,8,10,0.62);
  color: var(--muted);
  font-weight: 800;
  transition: border-color .18s, color .18s, background .18s;
}

.account-logout:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.account-logout[hidden],
.account-key-status[hidden] {
  display: none;
}

.account-profile h1,
.account-card h2,
.account-card h3 {
  margin: 10px 0 0;
  font-family: Unbounded, Inter, sans-serif;
  letter-spacing: -.05em;
  line-height: 1.24;
  padding-block: .14em .2em;
}

.account-profile h1 {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.1;
  padding-block: .08em 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-card h2 { font-size: clamp(30px, 4vw, 52px); max-width: 640px; }
.account-card h3 { font-size: clamp(22px, 2.05vw, 30px); }

.account-profile p,
.account-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 17px;
}

.account-stack {
  display: grid;
  gap: 18px;
}

.account-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 232px;
  padding: 28px 34px;
}

.account-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.account-card-head h3 {
  min-width: 0;
  margin: 0;
  overflow: visible;
  max-width: 100%;
  padding-top: .08em;
  text-wrap: balance;
}

.account-card-wide {
  grid-column: 1 / -1;
  min-height: 286px;
}

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

.account-status,
.account-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(47, 140, 255, 0.42);
  background: rgba(47, 140, 255, 0.13);
  color: #cde4ff;
  font-family: JetBrains Mono, monospace;
  font-weight: 800;
}

.account-status {
  gap: 10px;
  height: auto;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
}

.account-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(38,208,124,0.8);
}

.account-icon-accent {
  border-color: rgba(255,176,32,0.42);
  background: rgba(255,176,32,0.13);
  color: #ffd993;
}

.promo-code {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  padding: 14px 18px;
  border-radius: 15px;
  border: 1px dashed rgba(255,176,32,0.6);
  background: rgba(255,176,32,0.08);
  color: #ffd993;
  font-family: JetBrains Mono, monospace;
  font-weight: 900;
  letter-spacing: .18em;
  text-align: center;
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,0.2);
}

.download-row div {
  display: grid;
  gap: 5px;
}

.download-row span {
  color: var(--muted);
  font-size: 14px;
}

.download-release-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.download-release-title strong {
  color: var(--text);
}

.download-release-title small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.download-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 16px !important;
}

.download-full-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.download-full-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.download-full-toggle span {
  color: var(--text);
  font-size: 14px;
}

.download-message {
  min-height: 17px;
  color: var(--muted);
}

.download-row .primary-btn.is-disabled {
  cursor: not-allowed;
  opacity: .45;
  box-shadow: none;
}

.new-key-card {
  width: min(470px, 100%);
}

.new-key-card p {
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.community-body {
  overflow-x: hidden;
}

.community-main {
  padding-top: var(--header-h);
}

.community-reviews {
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.community-heading {
  margin-bottom: 52px;
}

.community-breadcrumb {
  margin-bottom: 42px;
}

.community-heading h1 {
  max-width: 860px;
  margin: 12px 0 0;
  font-family: Unbounded, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.review-marquee-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 12px 0;
  animation: communityMarquee 52s linear infinite;
}

.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-marquee-copy {
  display: contents;
}

.community-review {
  width: 370px;
  min-height: 190px;
  flex: 0 0 370px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 17, 20, .9);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.community-review header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.community-review header strong {
  font-size: 15px;
}

.community-review header span {
  color: var(--muted);
  font-size: 12px;
}

.community-review p {
  margin: 0;
  color: #dce2e9;
  font-size: 17px;
  line-height: 1.55;
}

@keyframes communityMarquee {
  to { transform: translateX(calc(-50% - 8px)); }
}

.community-examples {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.community-examples::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 56%;
  width: min(1480px, 108vw);
  aspect-ratio: 1;
  background: url("round3.png") center / contain no-repeat;
  opacity: .19;
  filter: saturate(1.08) blur(1px);
  pointer-events: none;
  animation: orbitSpinCentered 48s linear infinite;
}

.community-examples::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(190, 62, 255, 0.78), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(190, 62, 255, 0.78), transparent) bottom / 100% 1px no-repeat;
  filter: drop-shadow(0 0 8px rgba(190, 62, 255, 0.34));
  pointer-events: none;
}

.community-examples > .container {
  position: relative;
  z-index: 1;
}

.community-examples .section-heading,
.creator-socials .section-heading {
  margin-bottom: 44px;
}

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

.community-video {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #050607;
  cursor: pointer;
  box-shadow: 0 22px 65px rgba(0,0,0,.28);
}

.community-video img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.community-video img {
  transition: filter .2s, transform .35s;
}

.community-video:hover img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.community-video:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.creator-social-grid {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.creator-social-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-top-width: 3px;
  border-radius: 18px;
  background: rgba(17, 19, 22, .94);
  text-align: center;
}

.creator-social-telegram {
  border-top-color: #27a6e5;
}

.creator-social-youtube {
  border-top-color: #ff0033;
}

.social-platform {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
}

.telegram-mark,
.youtube-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.telegram-mark {
  background: #27a6e5;
}

.youtube-mark {
  border-radius: 9px;
  background: #ff0033;
}

.youtube-mark i {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid white;
}

.creator-social-card > img {
  width: 112px;
  height: 112px;
  margin: 2px 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  object-fit: cover;
  background: #090a0c;
}

.creator-social-card h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}

.social-handle {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.creator-social-card p {
  max-width: 310px;
  min-height: 48px;
  margin: 18px 0 22px;
  color: #dbe1e8;
  line-height: 1.5;
}

.creator-social-card > a {
  min-width: 210px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 10px;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.creator-social-telegram > a {
  background: #229ed9;
  box-shadow: 0 14px 35px rgba(34, 158, 217, .2);
}

.creator-social-youtube > a {
  background: #ff0033;
  box-shadow: 0 14px 35px rgba(255, 0, 51, .18);
}

.creator-social-card > a:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 860px; }
  .hero-visual { min-height: auto; padding-bottom: 50px; }
  .video-modal-card { width: min(960px, calc(100vw - 32px)); }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions { margin-left: 0; }
  .main-nav.is-open {
    display: grid;
    position: fixed;
    z-index: 70;
    top: calc(var(--header-h) + 8px);
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10,11,13,0.98);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open a { padding: 14px; }
  .community-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .section-pad { padding: 86px 0; }
  .section-pad.compact { padding: 64px 0; }
  .split-grid, .docs-grid, .cabinet-grid, .showcase-grid, .cta-panel, .promo-box, .account-layout, .doc-layout { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .process-list { gap: 18px; }
  .process-item h3 { font-size: clamp(24px, 4.4vw, 34px); }
  .process-item p { max-width: none; }
  .pain-grid, .feature-grid, .review-grid, .result-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: minmax(0, 520px); }
  .promo-form { min-width: 0; }
  .cta-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .account-card-grid { grid-template-columns: 1fr; }
  .download-row { align-items: stretch; flex-direction: column; }
  .download-actions { justify-content: space-between; }
  .account-key-meta { grid-template-columns: 1fr; }
  .doc-sidebar { position: static; }
  .creator-social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  html { scrollbar-gutter: auto; }
  .noise,
  .scanline { display: none; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .community-heading h1 { font-size: 42px; }
  .community-review { width: 310px; min-height: 205px; flex-basis: 310px; }
  .community-video-grid { grid-template-columns: 1fr; }
  .creator-social-card { min-height: 420px; padding: 24px 20px; }
  .modal { padding: 10px; }
  .profile-modal-card,
  .profile-modal-layout { max-height: calc(100vh - 20px); }
  .profile-modal-layout {
    --profile-space: 14px;
    padding: var(--profile-space);
  }
  .profile-modal .account-profile,
  .profile-modal .account-card { padding-inline: 20px; }
  .account-admin-action {
    top: 76px;
    right: 20px;
  }
  .checkout-card {
    max-height: calc(100vh - 20px);
    padding: 24px 18px 22px;
  }
  .checkout-plans,
  .checkout-promo { grid-template-columns: 1fr; }
  .checkout-promo .secondary-btn { width: 100%; }
  .site-header { padding: 0; }
  .site-header-inner { width: calc(100% - 28px); }
  .main-nav.is-open {
    left: 14px;
    right: 14px;
  }
  .brand-beta, .header-actions .ghost-btn { display: none; }
  .header-actions .primary-btn { display: none; }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 34px);
    padding-bottom: 52px;
  }
  .hero-grid { gap: 30px; }
  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 39px);
    line-height: .98;
  }
  .hero-subtitle { font-size: 17px; }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    font-size: 10px;
    line-height: 1.5;
  }
  .hero-subtitle { margin-top: 20px; }
  .hero-divider { padding: 0 0 14px; }
  .problem-section::before {
    top: 50%;
    width: min(820px, 152vw);
    opacity: 0.07;
  }
  .problem-section.section-pad.compact,
  .workflow.section-pad {
    min-height: 0;
    padding: 68px 0;
  }
  .problem-section .section-heading.center { margin-bottom: 0; }
  .problem-section .section-heading h2 { font-size: 34px; }
  .problem-dash-word {
    display: inline-block;
  }
  .problem-section .section-heading p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
  .problem-section::before,
  .pricing::before,
  .community-examples::before { animation: none; }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
    margin-top: 26px;
  }
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
    font-size: 14px;
    text-align: center;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .trust-strip div {
    min-height: 74px;
    padding: 14px;
    border-radius: 16px;
  }
  .pain-grid, .feature-grid, .review-grid, .result-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .hero-visual {
    min-height: 0;
    padding-bottom: 0;
  }
  .app-stage {
    width: 100%;
    transform: none;
    overflow: hidden;
  }
  .app-screen.is-active {
    opacity: .74;
    transform: scale(1);
  }
  .workflow .split-grid { gap: 44px; }
  .workflow .section-heading h2 {
    max-width: 100%;
    font-size: 36px;
  }
  .process-list {
    gap: 26px;
    padding: 0;
  }
  .process-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 26px;
    line-height: 1.12;
  }
  .process-item h3::before {
    position: static;
    flex: 0 0 auto;
    margin: 0;
  }
  .process-item p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.62;
  }
  .video-card { padding: 10px 10px 18px; }
  .video-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .play {
    width: 54px;
    height: 54px;
  }
  .video-modal { padding: 12px; }
  .video-modal-backdrop { backdrop-filter: blur(6px); }
  .video-modal-card {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    border-radius: 18px;
  }
  .video-modal-player { border-radius: 12px; }
  .showcase-card img, .showcase-card:not(.large) img { height: 260px; }
  .docs-tabs { grid-template-columns: 1fr 1fr; }
  .docs-landing, .doc-shell { padding: 42px 0 76px; }
  .docs-card-grid { grid-template-columns: 1fr; }
  .docs-card { grid-template-columns: 52px 1fr; padding: 20px; }
  .docs-card-icon { width: 52px; height: 52px; font-size: 25px; }
  .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }
  .breadcrumb-home,
  .breadcrumb-pill,
  .breadcrumb-sep { flex: 0 0 auto; }
  [data-document-breadcrumb] {
    max-width: min(58vw, 260px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .doc-article { padding: 24px; border-radius: 18px; }
  .doc-article th,
  .doc-article td {
    display: block;
    width: 100%;
  }
  .doc-article th { border-bottom: 0; }
  .promo-form { grid-template-columns: 1fr; }
  .process-list { gap: 16px; }
  .process-item h3::before { margin: 0; }
  .process-item h3 { max-width: none; }
  .process-item p { max-width: none; font-size: 16px; }
  .result-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
  }
  .account-profile h1 {
    font-size: clamp(32px, 10vw, 42px);
  }
  .cta-panel { padding: 28px; }
}

@media (max-width: 520px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-title { font-size: 34px; }
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn { font-size: 13px; }
  .problem-section .section-heading h2 { font-size: 31px; }
  .workflow .section-heading h2 { font-size: 33px; }
  .process-item h3 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
