:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: rgba(255, 255, 255, 0.05);
  --bg-soft-2: rgba(255, 255, 255, 0.08);
  --bg-highlight: rgba(255, 255, 255, 0.12);
  --accent: #f97316;
  --accent-strong: #fb923c;
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.7);
  --text-soft: rgba(245, 245, 245, 0.45);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-large: 32px;
  --radius-medium: 24px;
  --radius-small: 16px;
  --max-width: 1200px;
  font-family: 'Vazirmatn', sans-serif;
}

[data-theme='light'] {
  color-scheme: light;
  --bg: #fafafa;
  --bg-soft: rgba(0, 0, 0, 0.04);
  --bg-soft-2: rgba(0, 0, 0, 0.06);
  --bg-highlight: rgba(0, 0, 0, 0.08);
  --accent: #ea580c;
  --accent-strong: #f97316;
  --text: #1a1a1a;
  --text-muted: rgba(26, 26, 26, 0.7);
  --text-soft: rgba(26, 26, 26, 0.5);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.09), transparent 40%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 45%), var(--bg);
  color: var(--text);
  min-height: 100%;
  transition: background 0.3s ease, color 0.3s ease;
}

[data-theme='light'] body {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.06), transparent 40%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 45%), var(--bg);
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  --tiltX: 0deg;
  --tiltY: 0deg;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 60vw;
  height: 60vw;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent 60%);
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: blobDrift 24s ease-in-out infinite alternate;
}

body::before {
  top: -20%;
  right: -10%;
  transform-origin: center right;
}

body::after {
  bottom: -25%;
  left: -15%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 65%);
  transform-origin: center left;
  animation-duration: 28s;
}

[data-theme='light'] body::before,
[data-theme='light'] body::after {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 60%);
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" preserveAspectRatio="none"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch" /></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.08"/></svg>');
  opacity: 0.45;
  mix-blend-mode: soft-light;
  z-index: 0;
  transition: opacity 0.3s ease;
}

[data-theme='light'] .noise-overlay {
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.hero {
  position: relative;
  padding: 40px 24px 120px;
  min-height: 100vh;
  display: grid;
  place-items: center;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 6, 0.75);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border-radius: 0;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme='light'] .nav {
  background: rgba(250, 250, 250, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  padding: 0;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(249, 115, 22, 0.4);
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

[data-theme='light'] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme='light'] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(249, 115, 22, 0.4);
}

.theme-toggle__icon {
  display: block;
  transition: transform 0.3s ease;
}

[data-theme='light'] .theme-toggle__icon {
  content: '☀️';
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand__monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #050506;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.4);
  isolation: isolate;
}

.brand__monogram::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.55;
}

.brand__monogram::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(12px);
  opacity: 0.8;
  z-index: -1;
}

.brand__word {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(249, 115, 22, 0.85), rgba(59, 130, 246, 0.9), rgba(255, 255, 255, 0.95));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brandShimmer 7s ease-in-out infinite;
}

.brand__word::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.75), rgba(59, 130, 246, 0));
  opacity: 0.85;
  filter: blur(0.4px);
  transform-origin: left;
  animation: brandUnderline 7s ease-in-out infinite;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links a.is-active {
  color: var(--accent-strong);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--accent-strong);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-top: 100px;
}

.hero__text,
.hero__visual {
  width: 100%;
}

.hero__text h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  margin: 16px 0 24px;
}

.hero__text h1 span {
  color: var(--accent-strong);
}

.hero__text p {
  color: var(--text-muted);
  max-width: 80ch;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.3s, color 0.3s;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #050506;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.35);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.card {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-large);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.4), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-6px);
}

.card__badge {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__content h3 {
  margin: 24px 0 12px;
  font-size: 24px;
}

.card__content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.floating-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
  width: 100%;
}

.floating-stats div {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
}

.floating-stats strong {
  font-size: 32px;
  color: var(--accent-strong);
}

.floating-stats {
  grid-column: 1 / -1;
}

.floating-stats div:nth-child(2) {
  animation-delay: 0.6s;
}

.floating-stats div:nth-child(3) {
  animation-delay: 1.2s;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -120px -80px 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.28), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.24), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(147, 197, 253, 0.12), transparent 55%);
  opacity: 0.8;
  filter: blur(0px);
  animation: heroGlow 16s ease-in-out infinite alternate;
  z-index: 0;
}

.hero__visual,
.hero__text {
  position: relative;
  z-index: 1;
}

.hero__figure {
  position: relative;
  width: clamp(220px, 36vw, 360px);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tiltX)) rotateY(var(--tiltY));
  transition: transform 0.4s ease;
}

.hero__glow {
  position: absolute;
  inset: -18%;
  border-radius: 42% 58% 60% 40% / 56% 45% 55% 44%;
  background: conic-gradient(from 140deg, rgba(249, 115, 22, 0.5), rgba(59, 130, 246, 0.35), rgba(249, 115, 22, 0.55));
  filter: blur(35px);
  opacity: 0.75;
  animation: morph 12s ease-in-out infinite;
}

.hero__portrait {
  position: relative;
  width: 85%;
  height: 85%;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.6), rgba(5, 5, 6, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
  animation: float 10s ease-in-out infinite;
  isolation: isolate;
}

.hero__portrait picture,
.hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__portrait img {
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.6s ease;
}

.hero__portrait:hover img {
  transform: scale(1.02);
}

.hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(5, 5, 6, 0.75));
  mix-blend-mode: screen;
}

.hero__badge {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(5, 5, 6, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: pulse 6s ease-in-out infinite;
}

.hero__badge span {
  font-weight: 700;
}

.hero__badge small {
  font-size: 11px;
  color: var(--text-muted);
}

.hero__badge--discipline {
  top: 12%;
  right: -24px;
}

.hero__badge--focus {
  bottom: 10%;
  left: -18px;
  animation-delay: 1.2s;
}

.hero__panel {
  position: relative;
  overflow: hidden;
}

.hero__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.25), transparent 55%);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__ticker {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.hero__ticker::before,
.hero__ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
}

.hero__ticker::before {
  right: 0;
  background: linear-gradient(90deg, rgba(5, 5, 6, 1), transparent);
}

.hero__ticker::after {
  left: 0;
  background: linear-gradient(270deg, rgba(5, 5, 6, 1), transparent);
}

.hero__ticker span {
  min-width: max-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: var(--text-soft);
  animation: ticker 14s linear infinite;
}

.hero__ticker span:nth-child(odd) {
  color: var(--accent-strong);
}

.metric-badges,
.stats-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.metric-badges div,
.stats-panel div {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.metric-badges strong,
.stats-panel strong {
  display: block;
  color: var(--accent-strong);
  font-size: 26px;
}

.badge-list,
.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge-list span,
.badge-stack span {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
}

.page-header {
  position: relative;
  padding-bottom: 60px;
}

.page-hero {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 160px 24px 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
  position: relative;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 6, 0.45);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.24), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.2), transparent 45%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.page-hero__content h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 18px 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content p {
  color: var(--text-muted);
  line-height: 1.9;
}

.page-hero__visual {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.page-hero__portrait {
  position: relative;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.page-hero__portrait picture,
.page-hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero__portrait img {
  object-fit: cover;
}

.page-hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.65) 100%);
  mix-blend-mode: screen;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.spotlight-card,
.timeline-card,
.hero-highlight,
.newsletter-card,
.map-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  box-shadow: var(--shadow);
}

.spotlight-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.spotlight-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.spotlight-card .signature {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-strong);
}

.timeline-card h4 {
  margin: 0 0 16px;
  font-size: 18px;
}

.timeline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.timeline-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.timeline-card li span:first-child {
  color: var(--accent-strong);
  font-weight: 700;
}

.about {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__intro h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 12px 0 18px;
}

.about__intro p {
  color: var(--text-muted);
  line-height: 1.9;
}

.about__intro p + p {
  margin-top: 18px;
}

.about__media {
  position: relative;
  margin: 28px 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.about__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about__media figcaption {
  position: absolute;
  inset: auto 16px 16px;
  background: rgba(5, 5, 6, 0.7);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.about__highlights div {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-medium);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.about__highlights strong {
  font-size: 28px;
  display: block;
  color: var(--accent-strong);
}

.about__highlights span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.about__sidebar {
  display: grid;
  gap: 24px;
}

.bio-card,
.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  box-shadow: var(--shadow);
}

.page-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 6, 0.35);
  padding: 120px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
}

.page-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.15), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.12), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.page-section.story .story__content,
.page-section.values .values__grid,
.page-section.credentials .credentials__grid,
.page-section.testimony .testimony__grid {
  display: grid;
  gap: 24px;
}

.story__content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.story-block ul,
.credential-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.story-block ul li::before {
  content: '›';
  margin-left: 8px;
  color: var(--accent-strong);
}

.values__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin: 0;
}

.credentials__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.credential-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  box-shadow: var(--shadow);
}

.credential-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.testimony__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.testimonial-card strong {
  display: block;
  color: var(--accent-strong);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px 36px;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.cta--gradient {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(59, 130, 246, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta--outlined {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-simple {
  padding: 60px 24px 40px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bio-card h3,
.cert-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.bio-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
}

.bio-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.bio-card li span:first-child {
  color: var(--text);
  font-weight: 600;
}

.cert-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.method {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.method-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
}

.method-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
}

.method-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.method-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.method-card ul li::before {
  content: '•';
  margin-left: 8px;
  color: var(--accent-strong);
}

.section {
  padding: 120px 24px;
  position: relative;
  z-index: 1;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-large);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.section--glow {
  isolation: isolate;
}

.section--glow::after {
  opacity: 1;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.16), transparent 50%);
  filter: blur(40px);
  z-index: -1;
}

.section--mesh {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(5, 5, 6, 0.2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.section--mesh::after {
  opacity: 1;
  background-image: linear-gradient(
      120deg,
      rgba(249, 115, 22, 0.08) 0%,
      rgba(14, 116, 144, 0.05) 50%,
      rgba(59, 130, 246, 0.08) 100%
    ),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.01) 2px, transparent 2px, transparent 40px);
  mix-blend-mode: screen;
}

.section--contrast {
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
}

.visual-gallery {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.visual-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08);
}

.visual-card figcaption {
  position: absolute;
  inset: auto 16px 16px;
  background: rgba(5, 5, 6, 0.75);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section__header {
  width: min(100%, var(--max-width));
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
}

.section__header h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 12px 0 16px;
}

.section__header::after {
  content: '';
  display: block;
  width: 140px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.9), rgba(59, 130, 246, 0));
  opacity: 0.7;
}

.section__header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

[data-animate="left"] {
  transform: translate3d(-40px, 0, 0);
}

[data-animate="right"] {
  transform: translate3d(40px, 0, 0);
}

[data-animate="scale"] {
  transform: scale(0.96);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  body::before,
  body::after,
  .card,
  .hero__figure,
  .floating-stats div {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

.trainings__grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.training-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, border 0.3s, background 0.3s;
}

.training-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: -12px -12px 12px;
  height: 200px;
}

.training-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.training-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.1);
}

.training-card:hover .training-card__media img {
  transform: scale(1.05);
}

.training-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--accent-strong);
  font-weight: 600;
}

.tag--secondary {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
}

.store {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.store-page p code,
.store-guides p code {
  font-family: 'Vazirmatn', sans-serif;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-strong);
}

.store__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.store__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(249, 115, 22, 0.6);
  color: var(--accent-strong);
}

.chip.is-active {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.35), rgba(249, 115, 22, 0.2));
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.6);
}

.store__status {
  color: var(--text-soft);
  font-size: 14px;
}

.store__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 36px;
  border-radius: var(--radius-medium);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.store__empty--error {
  border-color: rgba(248, 113, 113, 0.6);
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px;
  height: 120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 60%);
  transform: rotate(8deg);
}

.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__badge.is-available {
  background: rgba(74, 222, 128, 0.16);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.product-card__badge.is-out {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.product-card__category {
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 13px;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.product-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.product-card__features li::before {
  content: '✓';
  margin-left: 8px;
  color: #4ade80;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.product-card__footer strong {
  font-size: 20px;
  color: var(--accent-strong);
  display: block;
}

.product-card__footer span {
  color: var(--text-soft);
  font-size: 12px;
}

.product-card__notice {
  color: var(--text-soft);
  font-size: 14px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.bundle-card__header h3 {
  margin: 0 0 8px;
}

.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.bundle-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bundle-card__footer strong {
  display: block;
  color: var(--accent-strong);
  font-size: 18px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  box-shadow: var(--shadow);
}

.link {
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link::after {
  content: '↗';
  font-size: 16px;
  transition: transform 0.3s;
}

.link:hover::after {
  transform: translate(-2px, -2px);
}

.resume {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.resume__timeline {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  position: relative;
}

.resume__timeline::before {
  content: '';
  position: absolute;
  inset: 0 50%;
  width: 2px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.8), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item .year {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-strong);
}

.timeline-item h3 {
  margin: 0 0 12px;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.coaching {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 140px 24px;
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.coaching::before,
.coaching::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
}

.coaching::before {
  inset: -40% auto auto -20%;
  width: 40%;
  height: 60%;
  background: rgba(249, 115, 22, 0.45);
}

.coaching::after {
  inset: auto -20% -40% auto;
  width: 45%;
  height: 45%;
  background: rgba(59, 130, 246, 0.45);
}

.coaching__badge {
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.coaching__content {
  position: relative;
  z-index: 1;
}

.coaching__content h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.coaching__content p {
  max-width: 650px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.coaching__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.coaching__item {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.coaching__item h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.coaching__item p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.catalog-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 14px;
}

.catalog-card__level {
  color: var(--accent-strong);
  font-weight: 600;
}

.roadmap__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--accent-strong);
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(249, 115, 22, 0.6);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.18), rgba(59, 130, 246, 0.12));
}

.pricing-card__badge {
  position: absolute;
  top: -16px;
  right: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.95);
  color: #050506;
  font-weight: 700;
  font-size: 12px;
}

.pricing-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-strong);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.faq__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonials {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.articles {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.articles__grid--dense {
  row-gap: 32px;
}

.article-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.article-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: -10px -10px 6px;
  height: 180px;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__tag--video {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.article-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.articles__cta {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.articles__cta h4 {
  margin: 0;
  font-size: 24px;
}

.articles__cta p {
  margin: 0;
  color: var(--text-muted);
}

.newsletter {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 12px;
}

.newsletter input {
  width: min(100%, 320px);
  text-align: center;
}

.newsletter--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: min(100%, 520px);
}

.newsletter--inline input {
  width: 100%;
  text-align: right;
}

.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  box-shadow: var(--shadow);
}

.topics-cloud span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--accent-strong);
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deep-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.media-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.16), rgba(59, 130, 246, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.media-cta__content p {
  color: var(--text);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.archive-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.archive-card span {
  color: var(--accent-strong);
  font-weight: 600;
}

.expert-callout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: var(--shadow);
}

.expert-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
  display: grid;
  gap: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: right;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-item__trigger::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-strong);
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded='true']::after {
  transform: rotate(45deg);
}

.faq-item__content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.process-step {
  color: var(--accent-strong);
  font-weight: 700;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.delivery-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  box-shadow: var(--shadow);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.transformation-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.transformation-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-soft);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-cards div {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-cards strong {
  display: block;
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.map-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.contact__card--wide {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  width: 100%;
}

.contact__aside {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
.testimonials__marquee {
  display: grid;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.testimonials__marquee::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.testimonials__marquee[data-marquee] {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.03);
  animation: marquee 24s linear infinite;
  width: 100%;
}

.testimonials__marquee[data-marquee]:hover {
  animation-play-state: paused;
}

.testimonial {
  min-width: 280px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.testimonial p {
  color: var(--text);
  line-height: 1.8;
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: var(--accent-strong);
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (var(--marquee-width) / 2)));
  }
}

@keyframes blobDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -40px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-30px, 40px, 0) scale(0.95);
  }
}

@keyframes heroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(20px, -10px, 0) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-20px, 10px, 0) scale(1.02);
    opacity: 0.8;
  }
}

@keyframes morph {
  0%,
  100% {
    border-radius: 42% 58% 60% 40% / 56% 45% 55% 44%;
  }
  33% {
    border-radius: 55% 45% 40% 60% / 48% 52% 48% 52%;
  }
  66% {
    border-radius: 38% 62% 45% 55% / 60% 42% 58% 40%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.28);
  }
  50% {
    transform: translate3d(0, -4px, 0) scale(1.03);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes brandShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes brandUnderline {
  0%,
  100% {
    transform: scaleX(0.6);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.contact {
  background: rgba(255, 255, 255, 0.02);
  padding-bottom: 60px;
}

.contact__card {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  box-shadow: var(--shadow);
}

.contact__card > div:first-child,
.contact__form {
  width: 100%;
}

.contact__form {
  display: grid;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  padding: 14px 16px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border 0.2s, background 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.08);
}

.error {
  color: #f87171;
  min-height: 18px;
}

.form__note {
  color: var(--text-soft);
  font-size: 13px;
  margin: 0;
}

.form__success {
  font-size: 14px;
  color: #4ade80;
  min-height: 20px;
}

.footer__meta {
  width: min(100%, var(--max-width));
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--accent-strong);
}

.btn--small {
  padding: 12px 20px;
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    justify-items: center;
  }

  .page-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero__visual {
    justify-items: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story__content,
  .values__grid,
  .credentials__grid,
  .testimony__grid,
  .catalog-grid,
  .pricing__grid,
  .roadmap__steps,
  .bundle-grid,
  .guides-grid,
  .deep-grid,
  .archive-grid,
  .process-grid,
  .delivery-grid,
  .transformation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq__grid--compact {
    grid-template-columns: 1fr;
  }

  .trainings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .coaching__grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 120px 1fr;
  }

  .media-cta,
  .expert-callout,
  .contact__card--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 870px) {
  .nav {
    position: sticky;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 14px 20px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 220px;
    flex-direction: column;
    padding: 18px;
    gap: 12px;
    background: rgba(5, 5, 6, 0.9);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.95);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  .hero {
    padding-top: 140px;
  }

  .hero__content {
    text-align: center;
  }

  .floating-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 420px;
    margin: 0 auto;
  }

  .about__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store__toolbar {
    justify-content: center;
  }

  .store__filters {
    justify-content: center;
  }

  .store__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero__visual {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__figure {
    width: min(320px, 70vw);
  }

  .hero__badge--discipline {
    right: 8%;
  }

  .hero__badge--focus {
    left: 8%;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__card {
    grid-template-columns: 1fr;
  }

  .footer__meta {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand__monogram {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .brand__word {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .hero {
    padding: 120px 16px 80px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .floating-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 360px;
    margin: 0 auto;
  }

  .about__highlights {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .method__grid {
    grid-template-columns: 1fr;
  }

  .trainings__grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .resume__timeline::before {
    inset: 0;
    left: 24px;
    margin: 0;
  }

  .store__grid {
    grid-template-columns: 1fr;
  }

  .articles__grid {
    grid-template-columns: 1fr;
  }

  .story__content,
  .values__grid,
  .credentials__grid,
  .testimony__grid,
  .catalog-grid,
  .roadmap__steps,
  .pricing__grid,
  .bundle-grid,
  .guides-grid,
  .deep-grid,
  .archive-grid,
  .process-grid,
  .delivery-grid,
  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 140px 16px 80px;
  }

  .page-hero__portrait {
    max-width: 420px;
  }

  .visual-gallery__grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 200px;
  }

  .training-card__media {
    margin: 0 0 12px;
    height: 180px;
  }

  .newsletter--inline {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__figure {
    width: min(260px, 80vw);
  }

  .hero__badge--discipline {
    top: 6%;
    left: 12%;
    right: auto;
  }

  .hero__badge--focus {
    bottom: 6%;
    right: 12%;
    left: auto;
  }

  .newsletter input {
    width: 100%;
  }

  .contact__card {
    padding: 32px;
  }

  .testimonials__marquee[data-marquee] {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .hero__text h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .brand__word {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .brand__monogram {
    width: 36px;
    height: 36px;
  }

  .card {
    padding: 24px;
  }

  .coaching {
    padding: 100px 18px;
  }

  .contact__card {
    padding: 28px 22px;
  }

  .store__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .store__status {
    text-align: center;
  }

  .articles__cta {
    padding: 28px 20px;
  }

  .cta {
    flex-direction: column;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
    width: 100%;
  }
}

