* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0f172a;
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-soft: #94a3b8;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.12);
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --pink: #ec4899;
  --surface: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.06);
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --modal-shadow: 0 30px 80px rgba(0,0,0,.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top right, rgba(99,102,241,.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(168,85,247,.1), transparent 30%),
    #eef4ff;
  color: #102033;
}

body.is-modal-open {
  overflow: hidden;
}

a { text-decoration: none; }

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

:focus-visible {
  outline: 2px solid rgba(129,140,248,.75);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  padding: 0 24px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 24px 0 0;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-link,
.user-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(15,23,42,.55);
  color: #e2e8f0;
  backdrop-filter: blur(14px);
  transition: .3s;
}

.top-link:hover,
.user-status:hover,
.top-link:focus-visible,
.user-status:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: rgba(129,140,248,.35);
  transform: translateY(-2px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow: 0 0 0 6px rgba(255,255,255,.05);
  flex-shrink: 0;
}

.user-status[data-state="auth"] .status-dot {
  background: #4ade80;
}

.user-status[data-state="banned"] .status-dot {
  background: #f87171;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(99,102,241,.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(168,85,247,.2), transparent 30%),
    #0f172a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease;
  padding: 150px 0 70px;
}

.logo-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  animation: floating 4s ease-in-out infinite;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
}

.logo-icon::before {
  content: none;
}

.logo-icon-image {
  width: 148px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.logo {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .14em;
  margin-bottom: 20px;
  filter: drop-shadow(0 16px 30px rgba(15,23,42,.34));
}

.logo-word {
  font-family: "Montserrat", "Trebuchet MS", "Arial Black", "Segoe UI", sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1;
  background: linear-gradient(180deg, #f8fbff 0%, #c7d2fe 34%, #a78bfa 68%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(30,41,59,.22);
  text-shadow:
    0 4px 10px rgba(15,23,42,.28),
    0 12px 30px rgba(99,102,241,.24),
    0 0 34px rgba(236,72,153,.18);
  filter: drop-shadow(0 6px 20px rgba(15,23,42,.3));
}

.logo-word-gap {
  margin-inline-start: 0;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero p {
  max-width: 850px;
  margin: auto;
  font-size: 20px;
  line-height: 2;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn,
.path-button,
.big-button {
  transition: .3s;
}

.btn {
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(90deg,#6366f1,#8b5cf6);
  color: white;
  box-shadow: 0 10px 30px rgba(99,102,241,.35);
}

.btn-primary:hover,
.btn-primary:focus-visible { transform: translateY(-4px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255,255,255,.08);
}

.btn-paths {
  border: 1px solid rgba(74, 222, 128, 0.34);
  background: linear-gradient(135deg, #34d399 0%, #22c55e 100%);
  color: #0a0f0b;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.24);
}

.btn-paths:hover,
.btn-paths:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #6ee7b7 0%, #22c55e 100%);
  color: #0a0f0b;
}

.btn-modal {
  min-width: 140px;
}

.btn-square {
  min-width: 48px;
  padding-inline: 0;
}

.section { padding: 110px 0; }

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--muted-soft);
  max-width: 750px;
  margin: auto;
  line-height: 2;
}

.about-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 45px;
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.about-box p {
  color: var(--muted);
  line-height: 2.2;
  font-size: 17px;
}

.date-badge {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.35);
  color: #c7d2fe;
  font-weight: bold;
}

.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
  gap: 30px;
}

.path-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  transition: .35s;
}

.path-card:hover,
.path-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(129,140,248,.4);
  box-shadow: 0 20px 60px rgba(99,102,241,.2);
}

.path-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  background: linear-gradient(135deg,#6366f1,#8b5cf6);
}

.path-card h3 { font-size: 30px; margin-bottom: 18px; }
.path-card p  { color: var(--muted); line-height: 2; margin-bottom: 25px; }

.feature-list { list-style: none; margin-bottom: 35px; }

.feature-list li {
  padding: 12px 0;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.feature-list li:last-child { border-bottom: none; }


.about-box {
  text-align: center;
}

.about-box-head {
  gap: 12px;
  margin-bottom: 22px;
}

.about-box-title {
  max-width: 34ch;
  margin-inline: auto;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.8;
}

.about-box-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #e2e8f0;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 700;
  line-height: 2;
}

.about-box-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: right;
}

.path-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 430px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(90deg, #5b67ff 0%, #8b5cf6 55%, #a855f7 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(99,102,241,.26);
}

.path-button:hover,
.path-button:focus-visible {
  background: linear-gradient(90deg, #6674ff 0%, #9566ff 55%, #c15dff 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(99,102,241,.34);
}


.path-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: white;
  font-weight: bold;
}

.path-button:hover,
.path-button:focus-visible { background: linear-gradient(90deg,#6366f1,#8b5cf6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
  transition: .3s;
}

.step-card:hover,
.step-card:focus-within { transform: translateY(-6px); }

.step-image {
  height: 180px;
  background: linear-gradient(135deg,#1e293b,#334155);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 18px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-content { padding: 24px; }

.step-number {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99,102,241,.15);
  color: #c7d2fe;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
}

.step-content h4 { margin-bottom: 12px; font-size: 20px; }
.step-content p  { color: var(--muted-soft); line-height: 1.9; font-size: 15px; }

.final-cta {
  text-align: center;
  padding: 90px 40px;
  border-radius: 35px;
  background: radial-gradient(circle at top,#6366f1 0%,#8b5cf6 45%,#1e1b4b 100%);
  overflow: hidden;
  position: relative;
}

.final-cta h2 { font-size: 48px; margin-bottom: 20px; }

.final-cta p {
  color: rgba(255,255,255,.85);
  max-width: 700px;
  margin: auto auto 35px;
  line-height: 2;
}

.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 50px;
  background: white;
  color: #111827;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 900;
}

.big-button:hover,
.big-button:focus-visible { transform: scale(1.05); }

.site-footer {
  padding: 40px 0;
  text-align: center;
  color: #64748b;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-panel {
  width: min(100%, 1040px);
  max-height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(15,23,42,.98), rgba(15,23,42,.94));
  box-shadow: var(--modal-shadow);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel--image {
  width: min(100%, 1180px);
}

.modal-head,
.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.modal-foot {
  border-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.modal-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  color: #c7d2fe;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal-title {
  margin: 0;
  font-size: 1.32rem;
}

.modal-close {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  color: #e2e8f0;
  background: rgba(255,255,255,.03);
  transition: .3s;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-body {
  min-height: 0;
  padding: 22px;
  overflow: auto;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(320px,.94fr) minmax(0,1.06fr);
  gap: 20px;
  align-items: start;
}

.guide-media {
  display: grid;
  gap: 12px;
}

.guide-image-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 320px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 8px, transparent 8px, transparent 16px);
}

.guide-image-button:hover,
.guide-image-button:focus-visible {
  border-color: rgba(129,140,248,.3);
}

.guide-image {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 18px;
}

.step-hint,
.image-hint {
  color: var(--muted-soft);
  font-size: .92rem;
}

.guide-copy {
  display: grid;
  gap: 14px;
}

.step-index,
.zoom-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: .4rem .84rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.3);
  background: rgba(99,102,241,.15);
  color: #c7d2fe;
  font-weight: 700;
}

.step-heading {
  margin: 0;
  font-size: 1.24rem;
}

.step-body,
.step-list,
.step-note,
.progress-text { margin: 0; }

.step-body,
.step-list li,
.step-note,
.progress-text,
.image-hint { color: #cbd5e1; }

.step-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.step-list li {
  position: relative;
  padding-right: 24px;
}

.step-list li::before {
  content: "";
  position: absolute;
  top: .78rem;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg,#6366f1,#8b5cf6);
}

.step-note {
  padding: .92rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(99,102,241,.24);
  background: rgba(99,102,241,.12);
}

.guide-progress {
  display: grid;
  gap: 10px;
  width: min(100%, 280px);
}

.progress-bar {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg,#6366f1,#8b5cf6);
  transition: width .25s ease;
}

.guide-actions,
.zoom-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.image-stage {
  min-height: 0;
  padding: 24px;
  overflow: auto;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.02);
}

.image-stage img {
  width: min(100%, 900px);
  height: auto;
  max-width: none;
  transition: width .18s ease;
}

.modal-foot--image {
  align-items: center;
}



body {
  font-family: "Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
}

.logo {
  margin-bottom: 22px;
}

.logo-icon-wrap {
  margin-bottom: 18px;
}

.logo-icon-image {
  width: clamp(116px, 13vw, 148px);
}

.hero-brand-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0 0 22px;
  line-height: 1.06;
  overflow: visible;
  unicode-bidi: isolate;
}

.wordmark-main,
.wordmark-accent {
  display: inline-block;
  font-size: clamp(3rem, 8vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: none;
}

.wordmark-main {
  color: #f8f4ff;
  text-shadow:
    0 0 18px rgba(196, 181, 253, 0.3),
    0 0 30px rgba(124, 58, 237, 0.22),
    0 14px 34px rgba(15, 23, 42, 0.34);
}

.wordmark-gap {
  display: inline-block;
  width: clamp(8px, 0.9vw, 14px);
}

.wordmark-accent {
  padding-inline-end: 0.05em;
  padding-block-end: 0.08em;
  background: linear-gradient(135deg, #f8d4ff 0%, #d8b4fe 32%, #a78bfa 68%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow:
    0 10px 24px rgba(216, 180, 254, 0.18),
    0 0 28px rgba(124, 58, 237, 0.22),
    0 14px 34px rgba(15, 23, 42, 0.28);
}

.about-box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 42px;
  background: linear-gradient(160deg, rgba(11, 18, 33, 0.96), rgba(20, 29, 48, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.34);
  overflow: hidden;
}

.about-box::before,
.about-box::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.about-box::before {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.24), transparent 70%);
}

.about-box::after {
  width: 200px;
  height: 200px;
  top: -85px;
  right: -50px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 72%);
}

.about-box > * {
  position: relative;
  z-index: 1;
}

.about-box-head {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.about-box-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(129, 140, 248, 0.26);
  color: #c7d2fe;
  font-size: 14px;
  font-weight: 700;
}

.about-box-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
  color: #f8fafc;
}

.about-box-copy {
  max-width: 780px;
  margin: 0 auto;
  color: #d8e2f0;
  line-height: 2.25;
  font-size: 17px;
  text-align: right;
}

.date-badge {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: rgba(99,102,241,.14);
  border: 1px solid rgba(129,140,248,.3);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.12);
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.path-icon {
  margin: 0 auto 24px;
}

.path-card p {
  max-width: 34ch;
  margin-inline: auto;
}

.feature-list {
  width: min(100%, 430px);
  margin: 0 auto 35px;
}

.feature-list li {
  text-align: center;
}

.path-button {
  max-width: 430px;
}

.final-cta {
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top, rgba(99,102,241,.2) 0%, transparent 34%),
    radial-gradient(circle at bottom left, rgba(168,85,247,.16) 0%, transparent 28%),
    linear-gradient(145deg, #0a1220 0%, #121c31 48%, #1b1435 100%);
  box-shadow: 0 28px 78px rgba(2, 6, 23, 0.42);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  line-height: 1.35;
}

.final-cta p {
  color: #d7deed;
}

.big-button {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(99,102,241,.3);
}

.big-button:hover,
.big-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes shine {
  from { left: -200%; }
  to { left: 200%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }
}



body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

body,
section,
article,
div,
span,
p,
h1,
h2,
h3,
h4,
li,
strong,
small,
footer {
  cursor: default;
}

a,
button,
.btn,
.path-button,
.big-button,
.modal-close,
.guide-image-button,
.top-link,
.user-status {
  cursor: pointer;
}

.hero p {
  margin: 12px auto 0;
}

.about-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .36rem;
  flex-wrap: wrap;
  direction: ltr;
  unicode-bidi: isolate;
  max-width: 100%;
}

.about-title-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  unicode-bidi: isolate;
}

.about-box-title .wordmark-main,
.about-box-title .wordmark-accent {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.about-box-title .wordmark-main {
  text-shadow:
    0 0 14px rgba(196, 181, 253, 0.24),
    0 0 22px rgba(124, 58, 237, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.28);
}

.about-box-title .wordmark-accent {
  text-shadow:
    0 8px 18px rgba(216, 180, 254, 0.16),
    0 0 20px rgba(124, 58, 237, 0.18),
    0 10px 24px rgba(15, 23, 42, 0.24);
}

.about-box-title .wordmark-gap {
  width: clamp(7px, 0.8vw, 12px);
}

.about-title-question {
  color: #f8fafc;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  direction: rtl;
  unicode-bidi: isolate;
}

@media(max-width:768px){
  .site-header {
    position: static;
    padding: 18px 0 0;
  }

  .topbar,
  .guide-actions,
  .zoom-controls,
  .modal-head,
  .modal-foot,
  .modal-foot--image {
    flex-direction: column;
    align-items: stretch;
  }

  .top-link,
  .user-status,
  .btn,
  .big-button,
  .guide-progress {
    width: 100%;
  }

  .hero-content {
    padding: 70px 0 50px;
  }

  .logo-word { font-size: 48px; }
  .logo-icon-image { width: 112px; }
  .hero p    { font-size: 16px; }
  .section-title h2 { font-size: 30px; }
  .final-cta h2     { font-size: 32px; }

  .about-box,
  .path-card,
  .step-content,
  .final-cta,
  .modal-body {
    padding: 24px;
  }

  .guide-image-button {
    min-height: 240px;
  }

  .image-stage {
    padding: 16px;
  }
}

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


.about-box-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  text-align: center;
  direction: rtl;
  unicode-bidi: isolate;
  max-width: 100%;
}

.about-title-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  unicode-bidi: isolate;
}

.about-box-title .wordmark-main,
.about-box-title .wordmark-accent {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.about-box-title .wordmark-main {
  text-shadow:
    0 0 14px rgba(196, 181, 253, 0.24),
    0 0 22px rgba(124, 58, 237, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.28);
}

.about-box-title .wordmark-accent {
  text-shadow:
    0 8px 18px rgba(216, 180, 254, 0.16),
    0 0 20px rgba(124, 58, 237, 0.18),
    0 10px 24px rgba(15, 23, 42, 0.24);
}

.about-box-title .wordmark-gap {
  width: clamp(7px, 0.8vw, 12px);
}

.about-title-question {
  color: #f8fafc;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  direction: rtl;
  unicode-bidi: isolate;
}

.btn-academy {
  color: #141414;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  border: 1px solid rgba(250, 204, 21, 0.4);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.22);
}

.btn-academy:hover,
.btn-academy:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.final-cta-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 8px;
}

.academy-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.24);
  transition: .3s;
}

.academy-cta-button:hover,
.academy-cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.academy-cta-note {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.9;
}

html[lang="en"] .about-box,
html[lang="en"] .about-box-copy,
html[lang="en"] .section-title,
html[lang="en"] .path-card,
html[lang="en"] .step-content,
html[lang="en"] .guide-copy,
html[lang="en"] .step-body,
html[lang="en"] .step-note,
html[lang="en"] .step-hint,
html[lang="en"] .image-hint,
html[lang="en"] .final-cta {
  text-align: left;
  direction: ltr;
}

html[lang="en"] .about-box-title,
html[lang="en"] .about-title-question,
html[lang="en"] .topbar,
html[lang="en"] .modal-head,
html[lang="en"] .modal-foot,
html[lang="en"] .modal-foot--image,
html[lang="en"] .guide-actions,
html[lang="en"] .zoom-controls {
  direction: ltr;
}

html[lang="en"] .step-list {
  direction: ltr;
}

html[lang="en"] .step-list li {
  padding-right: 0;
  padding-left: 24px;
}

html[lang="en"] .step-list li::before {
  right: auto;
  left: 0;
}

@media(max-width:768px){
  .btn-academy,
  .academy-cta-button {
    width: 100%;
  }
}
