.max-width{max-width:1920px;}
.align-center{margin:0 auto;}
/* ════════════════════════════════════════════════════════════
   BUTTONS
═════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px 0 8px;
  height: 48px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: #18181d;
  color: #f5f3ee;
  border-radius: 100px;
  box-shadow: 0 16px 32px -8px rgba(20, 20, 25, 0.25), 0 4px 12px -2px rgba(20, 20, 25, 0.10);
}

.btn-primary::before {
  content: '';
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201, 164, 100, 0.4);
  transition: box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -8px rgba(20, 20, 25, 0.30), 0 8px 16px -2px rgba(20, 20, 25, 0.14);
}

.btn-primary:hover::before {
  box-shadow: 0 0 0 6px rgba(201, 164, 100, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
  padding: 0 24px;
  border-radius: 100px;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 12px 0;
  font-size: 11px;
  height: auto;
  gap: 8px;
}

.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   NAV
═════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.4s, backdrop-filter 0.4s, height 0.3s;
}

nav.filled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--line);
  height: 68px;
}

.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

/* Logo block */
.nav-logo-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-tagline {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-3);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.nav-logo-block:hover .nav-logo { opacity: 0.7; }

/* Nav links — center */
.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 22px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: center;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Nav right — search + menu */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 6px;
  height: 44px;
  background: #18181d;
  color: #f5f3ee;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 8px 16px -4px rgba(20, 20, 25, 0.18), 0 2px 6px -1px rgba(20, 20, 25, 0.08);
}

.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px -6px rgba(20, 20, 25, 0.24), 0 4px 10px -2px rgba(20, 20, 25, 0.12);
}

.nav-pill-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-pill:hover .nav-pill-icon { background: rgba(201, 164, 100, 0.18); }

.nav-pill-icon svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Hamburger inside pill */
.nav-pill .ham {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  width: 14px;
}

.nav-pill .ham span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.nav-pill .ham span:nth-child(1) { width: 100%; }
.nav-pill .ham span:nth-child(2) { width: 70%; align-self: flex-end; }
.nav-pill .ham span:nth-child(3) { width: 100%; }

.nav-pill.open .ham span:nth-child(1) { transform: translateY(5px) rotate(45deg); width: 100%; }
.nav-pill.open .ham span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-pill.open .ham span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 100%; }

/* Theme toggle inline */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.25s var(--ease);
  color: var(--text);
}

.theme-toggle:hover {
  background: var(--surface-2);
  border-color: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-inner { grid-template-columns: auto auto; gap: 16px; }
  .nav-links { display: none; }
  .nav-tagline { display: none; }
}

@media (max-width: 600px) {
  .nav-pill .pill-label { display: none; }
  /*.nav-pill { padding: 0 14px 0 6px; }*/
  .nav-pill { padding: 0 6px 0 6px; }
}



/* ════════════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════════════ */
footer {
width:100%;
  border-top: 1px solid var(--line);
  padding: 60px 48px 40px;
  margin-top: 120px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-brand p { font-size: 13px; color: var(--text-2); line-height: 1.7; max-width: 360px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}

.footer-domains {
  display: flex; gap: 20px; flex-wrap: wrap;
}

.footer-domains a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-domains a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 32px; }
}

/* ════════════════════════════════════════════════════════════
   HERO (home)
═════════════════════════════════════════════════════════════ */
.hero-new {
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: 32px;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: minmax(380px, 0.7fr) 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-flex {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 48px 40px;
  display: flex;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
  align-self: start;
  padding-top: 40px;
}

.hero-new .hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
  font-feature-settings: "kern" 1, "liga" 1;
  margin-bottom: 4px;
}

.hero-new .hero-h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
}

.hero-new .hero-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 380px;
  font-weight: 400;
}

.hero-new .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}


/* ════════════════════════════════════════════════════════════
   HERO BACKGROUND ATMOSPHERE (cloudy sky)
═════════════════════════════════════════════════════════════ */
.atmosphere {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 30%, var(--hero-grad-1) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 70% 50%, var(--hero-grad-2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 60%, var(--hero-grad-3) 0%, transparent 50%);
  filter: blur(20px);
}

.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 35%, var(--gold-glow) 0%, transparent 30%);
  opacity: 0.35;
  filter: blur(40px);
}

[data-theme="dark"] .atmosphere::after { opacity: 0.5; }

/* Floating particles */
.particles {
  position: absolute; inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: float 12s infinite ease-in-out;
}

@keyframes float {
  0%, 100%   { transform: translateY(0) translateX(0); opacity: 0.4; }
  25%        { transform: translateY(-30px) translateX(10px); opacity: 0.7; }
  50%        { transform: translateY(-15px) translateX(-15px); opacity: 0.3; }
  75%        { transform: translateY(20px) translateX(8px); opacity: 0.5; }
}

/* ════════════════════════════════════════════════════════════
   "HOGYAN MŰKÖDIK?" — process steps (panel style)
═════════════════════════════════════════════════════════════ */

/*:root{*/
    /*--surface*/
/*}*/

.process-panel {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

[data-theme="dark"] .process-panel {
  background: var(--glass-bg);
  border-color: var(--line);
}

/* Compact variant inside hero-left — matches reference image */
.hero-process-wrap {
  margin-top: 12px;
  max-width: 420px;
}

.hero-process-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
  display: block;
}

.process-panel.hero-process {
  padding: 22px 26px;
  /*background: rgba(255, 255, 255, 0.40);*/
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

[data-theme="dark"] .process-panel.hero-process {
  background: rgba(30, 28, 22, 0.55);
  border-color: var(--line);
}

.process-list {
  list-style: none;
  display: flex; flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 12px 0;
  position: relative;
  align-items: start;
}

/* Vertical line between numbers in hero-process */
.hero-process .process-item::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: -10px;
  left: 13px;
  width: 1px;
  background: var(--line);
}

.hero-process .process-item:last-child::before { display: none; }

.process-item:last-child { padding-bottom: 0; }

.process-num {
  /*font-family: var(--font-mono);*/
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  padding-top: 3px;
  position: relative;
  z-index: 1;
  background: transparent;
  text-align:center;
}

.hero-process .process-num {
  background: var(--surface);
  padding: 3px 0;
}

[data-theme="dark"] .hero-process .process-num {
  background: var(--bg-tint);
}

.process-item.active .process-num { color: var(--gold); font-weight: 600; }

.process-content h4 {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.process-content p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   BOTTOM HERO CARDS (3 distinct layouts) — match reference
═════════════════════════════════════════════════════════════ */
.hero-cards {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 14px;
  align-self: end;
}

.hero-card {
  background: rgba(20, 20, 25, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-on-dark);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  box-shadow: 0 24px 48px -12px rgba(40, 35, 25, 0.18);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

/* Generic card icon (small round badge top-left) */
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201, 164, 100, 0.14);
  border: 1px solid rgba(201, 164, 100, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-card-text { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }

.hero-card-text h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.55);
  margin-bottom: 2px;
  line-height: 1.3;
}

.hero-card-text p {
  font-size: 11.5px;
  color: rgba(232, 224, 200, 0.78);
  line-height: 1.55;
  font-weight: 400;
}

/* Card 1 — Security: title + body + button at bottom */
.hero-card-security .hero-card-text {
  justify-content: space-between;
}

.hero-card-security h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-on-dark);
  line-height: 1.2;
  max-width: 200px;
  margin-bottom: 0;
}

.hero-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  width: fit-content;
  margin-top: auto;
}

.hero-card-btn:hover {
  background: rgba(201, 164, 100, 0.14);
  border-color: var(--gold);
  color: var(--gold);
}

/* Card 2 — Data flow icons */
.hero-card-flow {
  flex-direction: column;
  gap: 14px;
  padding: 22px 28px;
}

.hero-card-flow-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.55);
  text-align: center;
}

.hero-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.hero-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
}

.hero-flow-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(232, 224, 200, 0.85);
  transition: all 0.2s;
}

.hero-flow-item:hover .hero-flow-icon {
  border-color: var(--gold);
  background: rgba(201, 164, 100, 0.10);
  color: var(--gold);
}

.hero-flow-label {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(232, 224, 200, 0.65);
  text-align: center;
  line-height: 1.3;
}

/* Card 3 — Impact stats with globe */
.hero-card-impact {
  padding: 22px 24px;
  align-items: center;
}

.hero-impact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.hero-impact-text h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.55);
  margin-bottom: 0;
}

.hero-impact-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.hero-stat-key {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(232, 224, 200, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-impact-globe {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-impact-globe svg {
  width: 100%; height: 100%;
  animation: globeRotate 40s linear infinite;
}

@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px 40px; }
  .pillars-scene { height: 380px; }
  .pillar-1 { width: 56px; height: 200px; }
  .pillar-2 { width: 64px; height: 250px; }
  .pillar-3 { width: 74px; height: 320px; }
  .pillar-4 { width: 84px; height: 360px; }
  .pillar-5 { width: 70px; height: 280px; }
  .pillar-6 { width: 60px; height: 230px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero-card-impact { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-grid { padding: 40px 24px 32px; gap: 32px; }
  .hero-cards { grid-template-columns: 1fr; padding: 0 24px; gap: 10px; }
  .hero-card-impact { grid-column: auto; }
  .pillar-row { gap: 6px; }
  .pillar-1 { width: 40px; height: 140px; }
  .pillar-2 { width: 46px; height: 170px; }
  .pillar-3 { width: 52px; height: 210px; }
  .pillar-4 { width: 60px; height: 240px; }
  .pillar-5 { width: 50px; height: 190px; }
  .pillar-6 { width: 42px; height: 150px; }
  .pillar-icon { font-size: 12px; }
  .pillar-name { font-size: 6.5px; letter-spacing: 0.08em; }
  .pillar-stat { display: none; }
  .pillars-scene { height: 260px; }
  .hero-flow-grid { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .hero-flow-label { font-size: 8.5px; }
  .hero-impact-globe { width: 70px; height: 70px; }
}

/* ════════════════════════════════════════════════════════════
   FEATURE LIST (editorial)
═════════════════════════════════════════════════════════════ */
.feature-list { list-style: none; display: flex; flex-direction: column; }

.feature-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s var(--ease), background 0.25s;
}

.feature-item:first-child { border-top: 1px solid var(--line); }
.feature-item:hover { background: var(--surface); padding-left: 28px; }

.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.feature-item:hover .feature-name { color: var(--gold); }

.feature-desc {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.feature-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════════════════════
   MODULES GRID (glass cards)
═════════════════════════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background:transparent !important;
  border:none !important;
}

.module-card {
  background: var(--surface);
  /*backdrop-filter: blur(20px);*/
  /*-webkit-backdrop-filter: blur(20px);*/
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 36px 32px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  /*box-shadow: var(--shadow-card);*/
}

[data-theme="dark"] .module-card {
  background: var(--glass-bg);
  border-color: var(--line);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.module-card:hover::before { transform: scaleX(1); }
.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 32px 64px -12px rgba(80,60,30,0.18);
}

[data-theme="dark"] .module-card:hover { box-shadow: 0 32px 64px -12px rgba(0,0,0,0.5); }

.module-num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.module-card:hover .module-num { color: var(--gold); }

.module-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.module-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.module-desc {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.module-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.module-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

@media (max-width: 1024px) { .modules-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .modules-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════════
   MISSION QUOTE
═════════════════════════════════════════════════════════════ */
.mission-block {
  padding: 140px 0;
  text-align: center;
  /*border-top: 1px solid var(--line);*/
  /*border-bottom: 1px solid var(--line);*/
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto 32px;
  letter-spacing: -0.015em;
}

.mission-quote strong {
  font-weight: 600;
  /*font-style: normal;*/
  color: var(--gold);
}

.mission-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-3);
}


/* ════════════════════════════════════════════════════════════
   JOIN BLOCK
═════════════════════════════════════════════════════════════ */
.join-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 80px 0;
  background:transparent !important;
  border:none !important;
}

.join-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 56px;
  /*box-shadow: var(--shadow-card);*/
}

[data-theme="dark"] .join-card { background: var(--glass-bg); border-color: var(--line); }

.join-h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin: 16px 0;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.join-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.progress-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}

.progress-label { font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; }
.progress-count { font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 0.06em; }

.progress-track {
  height: 2px; background: var(--line);
  border-radius: 1px; overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 1px;
  transition: width 1.5s var(--ease-out);
}

.progress-note { font-size: 11px; color: var(--text-3); font-family: var(--font-mono); }

.join-form {
  display: flex; gap: 8px; margin-top: 28px;
}

.join-input {
  flex: 1;
  padding: 0 18px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.join-input:focus { border-color: var(--gold); background: var(--surface); }
.join-input::placeholder { color: var(--text-3); }

@media (max-width: 900px) {
  .join-block { grid-template-columns: 1fr; }
  .join-card { padding: 40px 28px; }
}