:root {
  --bg: #061321;
  --bg-deep: #030d17;
  --panel: #0a1b2c;
  --panel-2: #0d2235;
  --line: #19384d;
  --line-soft: rgba(99, 151, 181, 0.17);
  --text: #f4f8fb;
  --muted: #8da5b8;
  --muted-bright: #b8cad5;
  --teal: #13d9c0;
  --teal-soft: rgba(19, 217, 192, 0.1);
  --gold: #e8b84a;
  --gold-bright: #ffdd79;
  --gold-soft: rgba(232, 184, 74, 0.12);
  --blue: #3ec7ff;
  --shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
  --radius: 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg-deep); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% -5%, rgba(20, 128, 169, 0.17), transparent 33%),
    radial-gradient(circle at 4% 45%, rgba(232, 184, 74, 0.07), transparent 28%),
    linear-gradient(145deg, var(--bg-deep), var(--bg));
  color: var(--text);
  font: 14px/1.55 var(--sans);
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 176, 202, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 176, 202, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
::selection { background: rgba(62, 199, 255, 0.24); color: white; }
[id] { scroll-margin-top: 100px; }

.copy { display: none !important; }
html[data-language="en"] .copy-en,
html[data-language="hu"] .copy-hu { display: revert !important; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-bright);
  color: #241700;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Shared NextOne public navigation */
.public-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(232, 184, 74, 0.19);
  background: rgba(3, 13, 23, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.public-header.scrolled { background: rgba(2, 10, 18, 0.985); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28); }
.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.public-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 5px 11px rgba(232, 184, 74, 0.22));
}
.public-brand b {
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.08em;
}
.public-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 30px);
}
.public-nav a {
  position: relative;
  color: #c8d4dc;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.public-nav a:hover,
.public-nav a.active { color: var(--gold-bright); }
.public-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}
.public-nav .public-login-link {
  padding: 8px 12px;
  border: 1px solid rgba(232, 184, 74, 0.38);
  border-radius: 7px;
  background: var(--gold-soft);
  color: var(--gold-bright);
}
.public-nav .public-login-link::after { display: none; }
.public-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 24px;
}
.public-header-language { justify-self: end; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(4, 18, 29, 0.72);
  color: #607e90;
  font: 750 11px/1 var(--mono);
  letter-spacing: 0.06em;
}
.language-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7894a7;
  cursor: pointer;
  font: inherit;
}
.language-switch button:hover,
.language-switch button.active,
.language-switch button[aria-pressed="true"] { color: var(--gold-bright); }

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
  padding: 7px 18px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 17, 28, 0.82);
  scrollbar-width: none;
}
.project-tabs::-webkit-scrollbar { display: none; }
.project-tabs a {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 7px;
  color: #89a3b5;
  font: 750 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.project-tabs a:hover { color: var(--text); background: rgba(255, 255, 255, 0.035); }
.project-tabs a.active { color: var(--gold-bright); background: var(--gold-soft); }

.eyebrow,
.hero-kicker {
  margin: 0;
  color: #8ab0c2;
  font: 800 10px/1.35 var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section-shell { width: min(1400px, calc(100% - 44px)); margin-inline: auto; }
.section-rule { border-top: 1px solid var(--line-soft); }
.section-label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #6f94a8;
  font: 750 10px/1.4 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-label b { color: var(--gold); font-weight: 750; }
.section-heading { max-width: 900px; }
.section-heading h2,
.statement h2 {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.section-heading > p:not(.eyebrow) { max-width: 760px; margin: 20px 0 0; color: var(--muted-bright); font-size: 17px; line-height: 1.8; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #f7d674, #d99a25);
  box-shadow: 0 10px 34px rgba(232, 184, 74, 0.16);
  color: #241600;
}
.button.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(4, 16, 27, 0.38);
  color: #e4edf3;
  backdrop-filter: blur(12px);
}
.button.ghost:hover { border-color: rgba(232, 184, 74, 0.55); color: var(--gold-bright); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-bright); font-size: 12px; font-weight: 750; }
.text-link span[aria-hidden] { transition: transform 0.2s ease; }
.text-link:hover span[aria-hidden] { transform: translate(2px, -2px); }

/* Home hero */
.freedom-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  align-content: end;
  min-height: calc(100svh - 116px);
  padding: clamp(70px, 12vh, 130px) clamp(22px, 7vw, 108px) clamp(74px, 9vh, 104px);
  overflow: hidden;
  isolation: isolate;
}
.freedom-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 17, 0.96) 0%, rgba(3, 12, 21, 0.72) 49%, rgba(3, 12, 21, 0.28) 78%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 38%),
    radial-gradient(circle at 62% 42%, transparent 0, rgba(3, 12, 21, 0.12) 30%, rgba(3, 12, 21, 0.76) 100%);
  content: "";
}
.freedom-hero::after {
  position: absolute;
  z-index: -1;
  top: -12%;
  left: 61%;
  width: min(25vw, 360px);
  height: 124%;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 224, 255, 0.1) 40%, rgba(255, 220, 121, 0.18) 82%, transparent 100%);
  content: "";
  filter: blur(18px);
  transform: rotate(2deg);
}
.freedom-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(1.08) brightness(0.76);
  transform: scale(1.025);
}
.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(78, 186, 212, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 186, 212, 0.09) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero-content { z-index: 1; align-self: end; max-width: 880px; }
.hero-content h1 {
  max-width: 920px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(49px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
}
.hero-content h1 em { color: var(--gold-bright); font-weight: 500; }
.hero-intro { max-width: 710px; margin: 27px 0 0; color: #c6d7e1; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.hero-meta {
  z-index: 1;
  display: grid;
  align-self: end;
  margin: 0 0 2px auto;
  width: min(100%, 330px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(4, 16, 27, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-meta div { display: grid; grid-template-columns: 116px 1fr; align-items: baseline; padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.hero-meta div:last-child { border: 0; }
.hero-meta strong { color: var(--gold-bright); font-family: var(--serif); font-size: 22px; font-weight: 500; }
.hero-meta span { color: #a8bdc9; font-size: 11px; }
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #8fa7b6;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { width: 1px; height: 28px; background: linear-gradient(var(--gold), transparent); animation: pulse-line 2s ease-in-out infinite; }

/* Editorial sections */
.statement {
  display: grid;
  grid-template-columns: 160px minmax(0, 1.25fr) minmax(280px, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  padding-block: clamp(84px, 12vw, 156px);
}
.statement-copy > p { max-width: 780px; margin: 22px 0 0; color: #9fb4c2; font-size: 16px; line-height: 1.82; }
.evidence-card,
.content-card,
.principle-card,
.path-card,
.faq-card,
.status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 39, 58, 0.84), rgba(6, 21, 34, 0.9));
  box-shadow: var(--shadow);
}
.evidence-card { align-self: start; padding: 23px; }
.evidence-card h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.evidence-card > p { margin: 0; color: var(--muted); line-height: 1.7; }
.evidence-list { display: grid; gap: 0; margin: 20px 0 0; padding: 0; list-style: none; }
.evidence-list li { padding: 13px 0; border-top: 1px solid var(--line-soft); }
.evidence-list strong { display: block; color: var(--text); font-size: 12px; }
.evidence-list span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.55; }

.research-section { padding-block: clamp(82px, 10vw, 138px); }
.research-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 46px; }
.research-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(12, 37, 55, 0.88), rgba(5, 18, 30, 0.9));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.research-card:hover { border-color: rgba(232, 184, 74, 0.42); transform: translateY(-4px); }
.research-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 217, 192, 0.12), transparent 68%);
  content: "";
}
.research-index { color: var(--gold); font: 800 11px/1 var(--mono); letter-spacing: 0.1em; }
.research-card h3 { margin: 64px 0 13px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.08; }
.research-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.vision-section { padding-block: clamp(82px, 10vw, 138px); }
.vision-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: 46px; }
.vision-image { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.vision-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; filter: saturate(0.78) contrast(1.05) brightness(0.83); }
.vision-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(2, 10, 17, 0.84)); content: ""; }
.image-caption { position: absolute; z-index: 1; right: 18px; bottom: 16px; left: 18px; display: flex; align-items: center; gap: 9px; color: #d4e0e7; font-size: 11px; }
.image-caption i { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(232, 184, 74, 0.6); }
.horizon-list { display: grid; }
.horizon-item { display: grid; grid-template-columns: 82px 1fr; gap: 19px; padding: 23px 0; border-top: 1px solid var(--line-soft); }
.horizon-item:last-child { border-bottom: 1px solid var(--line-soft); }
.horizon-item > span { color: var(--gold); font: 800 10px/1.4 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; }
.horizon-item h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.horizon-item p { margin: 0; color: var(--muted); line-height: 1.7; }
.vision-link { margin-top: 24px; }

.outputs-section { padding-block: clamp(82px, 10vw, 138px); }
.output-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 45px; }
.output-card { display: flex; min-height: 290px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 24, 38, 0.74); transition: border-color 0.2s ease, transform 0.2s ease; }
.output-card:hover { border-color: rgba(62, 199, 255, 0.38); transform: translateY(-4px); }
.output-card .output-type { color: #7da1b4; font: 800 10px/1 var(--mono); letter-spacing: 0.13em; text-transform: uppercase; }
.output-card h3 { margin: 58px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.08; }
.output-card p { margin: 0 0 24px; color: var(--muted); line-height: 1.7; }
.output-card .text-link { margin-top: auto; }

.principles-section { padding-block: clamp(82px, 10vw, 138px); }
.principles-layout { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: clamp(32px, 6vw, 90px); margin-top: 46px; }
.principle-quote { margin: 0; color: var(--text); font-family: var(--serif); font-size: clamp(28px, 3.6vw, 48px); letter-spacing: -0.035em; line-height: 1.2; }
.principle-quote em { color: var(--gold-bright); font-weight: 500; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principle-card { padding: 23px; box-shadow: none; }
.principle-card span { color: var(--teal); font: 800 10px/1 var(--mono); }
.principle-card h3 { margin: 18px 0 8px; font-size: 15px; }
.principle-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.closing-band { padding-block: clamp(68px, 8vw, 104px); }
.closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(30px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(232, 184, 74, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 32%, rgba(232, 184, 74, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(13, 43, 61, 0.95), rgba(5, 18, 30, 0.96));
  box-shadow: var(--shadow);
}
.closing-panel::after { position: absolute; right: -75px; bottom: -110px; width: 300px; height: 300px; border: 1px solid rgba(232, 184, 74, 0.12); border-radius: 50%; content: ""; }
.closing-panel h2 { max-width: 870px; margin: 14px 0 0; font-family: var(--serif); font-size: clamp(34px, 5vw, 62px); font-weight: 500; letter-spacing: -0.045em; line-height: 1.03; }
.closing-panel p:not(.eyebrow) { max-width: 700px; margin: 18px 0 0; color: var(--muted-bright); font-size: 15px; line-height: 1.75; }
.closing-actions { z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

/* Secondary pages */
.page-hero { position: relative; min-height: 520px; padding: clamp(72px, 10vw, 130px) 22px 82px; overflow: hidden; isolation: isolate; }
.page-hero::before { position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 76% 38%, rgba(19, 217, 192, 0.11), transparent 27%), linear-gradient(110deg, rgba(2, 10, 17, 0.98), rgba(5, 25, 39, 0.86)); content: ""; }
.page-hero::after { position: absolute; z-index: -1; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(78, 186, 212, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(78, 186, 212, 0.1) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 82%); content: ""; }
.page-hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr); gap: clamp(30px, 6vw, 88px); align-items: center; width: min(1260px, 100%); margin: 0 auto; }
.page-hero h1 { max-width: 900px; margin: 19px 0 0; font-family: var(--serif); font-size: clamp(48px, 7vw, 92px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.94; text-wrap: balance; }
.page-hero .lead { max-width: 760px; margin: 25px 0 0; color: #bdced8; font-size: 18px; line-height: 1.75; }
.page-hero-mark { justify-self: end; width: min(320px, 100%); padding: 22px; border: 1px solid rgba(232, 184, 74, 0.24); border-radius: 50%; background: radial-gradient(circle, rgba(232, 184, 74, 0.08), transparent 66%); box-shadow: 0 0 90px rgba(19, 217, 192, 0.08); }
.page-hero-mark img { width: 100%; border-radius: 50%; opacity: 0.9; }

.editorial-section { padding-block: clamp(78px, 10vw, 132px); }
.editorial-grid { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: clamp(32px, 6vw, 90px); }
.editorial-copy { max-width: 900px; }
.editorial-copy .lead { margin: 0 0 28px; color: var(--text); font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.035em; line-height: 1.22; }
.editorial-copy p:not(.lead) { margin: 0 0 18px; color: #a5bac8; font-size: 16px; line-height: 1.84; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 42px; }
.content-card { padding: 28px; box-shadow: none; }
.content-card h3 { margin: 10px 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.content-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.plain-list { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding: 13px 0 13px 22px; border-top: 1px solid var(--line-soft); color: #b6c8d2; line-height: 1.65; }
.plain-list li::before { position: absolute; top: 21px; left: 1px; width: 7px; height: 7px; border: 1px solid var(--gold); border-radius: 50%; content: ""; }

.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 43px; }
.status-card { padding: 27px; box-shadow: none; }
.status-card .status-label { display: inline-flex; padding: 6px 8px; border: 1px solid rgba(19, 217, 192, 0.28); border-radius: 6px; background: var(--teal-soft); color: var(--teal); font: 800 9px/1 var(--mono); letter-spacing: 0.11em; text-transform: uppercase; }
.status-card.plan .status-label { border-color: rgba(232, 184, 74, 0.3); background: var(--gold-soft); color: var(--gold-bright); }
.status-card h3 { margin: 27px 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.status-card p { margin: 0; color: var(--muted); line-height: 1.72; }

.faq-list { display: grid; gap: 10px; max-width: 980px; margin-top: 42px; }
.faq-list details { border: 1px solid var(--line); border-radius: 11px; background: rgba(7, 24, 38, 0.68); }
.faq-list details[open] { border-color: rgba(232, 184, 74, 0.3); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; color: var(--text); font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--gold-bright); content: "+"; font-size: 20px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.75; }

.vision-feature { position: relative; width: min(1480px, calc(100% - 44px)); margin: 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.vision-feature img { width: 100%; max-height: 760px; object-fit: cover; filter: saturate(0.82) contrast(1.04) brightness(0.8); }
.vision-feature::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(2, 10, 17, 0.9)); content: ""; }
.vision-feature-copy { position: absolute; z-index: 1; right: clamp(22px, 5vw, 70px); bottom: clamp(20px, 4vw, 54px); left: clamp(22px, 5vw, 70px); display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.vision-feature-copy h2 { max-width: 760px; margin: 10px 0 0; font-family: var(--serif); font-size: clamp(31px, 5vw, 62px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.03; }
.concept-label { flex: 0 0 auto; padding: 8px 10px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 7px; background: rgba(3, 13, 23, 0.65); color: #d4e1e8; font: 750 9px/1.3 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 44px; }
.module-card { min-height: 230px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 24, 38, 0.68); }
.module-card span { color: var(--gold); font: 800 10px/1 var(--mono); }
.module-card h3 { margin: 42px 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.module-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.collaboration-hero::before { background: radial-gradient(circle at 76% 38%, rgba(232, 184, 74, 0.13), transparent 27%), linear-gradient(110deg, rgba(2, 10, 17, 0.98), rgba(7, 28, 40, 0.88)); }
.collaboration-symbol { display: grid; place-items: center; justify-self: end; width: min(290px, 100%); aspect-ratio: 1; border: 1px solid rgba(232, 184, 74, 0.28); border-radius: 50%; background: radial-gradient(circle, rgba(232, 184, 74, 0.1), transparent 65%); color: var(--gold-bright); font-family: var(--serif); font-size: clamp(58px, 9vw, 112px); }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 43px; }
.path-card { min-height: 260px; padding: 27px; box-shadow: none; }
.path-card span { color: var(--teal); font: 800 10px/1 var(--mono); letter-spacing: 0.1em; }
.path-card h3 { margin: 45px 0 11px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.path-card p { margin: 0; color: var(--muted); line-height: 1.72; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr); gap: clamp(36px, 7vw, 100px); align-items: start; margin-top: 44px; }
.contact-steps { counter-reset: contact-step; display: grid; }
.contact-step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 19px 0; border-top: 1px solid var(--line-soft); counter-increment: contact-step; }
.contact-step::before { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(232, 184, 74, 0.35); border-radius: 50%; color: var(--gold-bright); content: counter(contact-step, decimal-leading-zero); font: 800 9px/1 var(--mono); }
.contact-step h3 { margin: 0 0 5px; font-size: 14px; }
.contact-step p { margin: 0; color: var(--muted); line-height: 1.65; }
.contact-card { padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(232, 184, 74, 0.28); border-radius: 16px; background: linear-gradient(145deg, rgba(13, 39, 58, 0.9), rgba(6, 21, 34, 0.94)); box-shadow: var(--shadow); }
.contact-card h3 { margin: 11px 0; font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 500; }
.contact-card p { margin: 0 0 23px; color: var(--muted-bright); line-height: 1.75; }
.contact-address { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--gold-bright); font-weight: 750; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 24px clamp(22px, 5vw, 70px);
  border-top: 1px solid var(--line-soft);
  color: #708b9d;
  font-size: 11px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.footer-brand div { display: grid; gap: 2px; }
.footer-brand strong { color: #cbd9e1; font-size: 10px; letter-spacing: 0.08em; }
.footer-brand span { color: #718c9d; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a:hover { color: var(--gold-bright); }
.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(232, 184, 74, 0.38); border-radius: 50%; background: rgba(3, 13, 23, 0.88); color: var(--gold-bright); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 0.2s ease, transform 0.2s ease; backdrop-filter: blur(12px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes pulse-line { 0%, 100% { opacity: 0.35; transform: scaleY(0.72); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }

@media (max-width: 1100px) {
  .research-grid { grid-template-columns: repeat(2, 1fr); }
  .output-grid { grid-template-columns: 1fr; }
  .output-card { min-height: 230px; }
  .output-card h3 { margin-top: 34px; }
  .statement { grid-template-columns: 130px minmax(0, 1fr); }
  .statement .evidence-card { grid-column: 2; }
  .vision-layout { grid-template-columns: 1fr; }
  .horizon-list { max-width: 880px; }
}

@media (max-width: 820px) {
  .public-header { grid-template-columns: auto 1fr auto; gap: 12px; }
  .public-menu-toggle { display: block; justify-self: end; grid-column: 2; grid-row: 1; }
  .public-nav { position: absolute; top: calc(100% + 1px); right: 14px; left: 14px; display: none; align-items: stretch; gap: 3px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(3, 13, 23, 0.99); box-shadow: var(--shadow); }
  .public-nav.open { display: grid; }
  .public-nav a { padding: 11px 12px; border-radius: 6px; }
  .public-nav a:hover { background: var(--gold-soft); }
  .public-nav a.active::after { display: none; }
  .public-header-language { grid-column: 3; grid-row: 1; }
  .project-tabs { justify-content: flex-start; }
  .freedom-hero { grid-template-columns: 1fr; min-height: 760px; }
  .freedom-hero::before { background: linear-gradient(90deg, rgba(2, 10, 17, 0.96), rgba(3, 12, 21, 0.61)), linear-gradient(0deg, var(--bg-deep), transparent 45%); }
  .hero-meta { margin: 44px 0 0; }
  .scroll-cue { display: none; }
  .statement,
  .editorial-grid { grid-template-columns: 1fr; }
  .statement .evidence-card { grid-column: auto; }
  .principles-layout { grid-template-columns: 1fr; }
  .closing-panel { grid-template-columns: 1fr; align-items: start; }
  .closing-actions { justify-content: flex-start; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-mark,
  .collaboration-symbol { display: none; }
  .status-grid { grid-template-columns: 1fr; }
  .vision-feature-copy { align-items: start; flex-direction: column; }
  .path-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .public-header { min-height: 66px; padding: 8px 13px; }
  .public-brand span { display: none; }
  .public-brand img { width: 36px; height: 36px; }
  .project-tabs { padding-inline: 10px; }
  .section-shell,
  .vision-feature { width: min(100% - 28px, 1400px); }
  .freedom-hero { min-height: 700px; padding: 78px 18px 60px; }
  .hero-content h1 { font-size: clamp(44px, 14vw, 66px); }
  .hero-meta { width: 100%; }
  .hero-actions,
  .closing-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .research-grid,
  .principle-grid,
  .split-grid,
  .module-grid { grid-template-columns: 1fr; }
  .research-card { min-height: 270px; }
  .vision-image img { aspect-ratio: 4 / 3; }
  .horizon-item { grid-template-columns: 1fr; gap: 8px; }
  .page-hero { min-height: 450px; padding: 68px 18px 66px; }
  .page-hero h1 { font-size: clamp(43px, 14vw, 64px); }
  .vision-feature { min-height: 500px; }
  .vision-feature img { height: 500px; }
  .concept-label { white-space: normal; }
  .site-footer { padding: 28px 18px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

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

@media print {
  .public-header,
  .project-tabs,
  .back-to-top,
  .scroll-cue,
  .hero-actions,
  .closing-actions { display: none !important; }
  body { background: white; color: #111; }
  body::before { display: none; }
  .freedom-hero,
  .page-hero { min-height: auto; padding: 40px 0; }
  .freedom-hero-image { opacity: 0.14; }
  .section-shell { width: 100%; }
  .research-card,
  .content-card,
  .principle-card,
  .output-card,
  .status-card,
  .path-card,
  .contact-card,
  .evidence-card { break-inside: avoid; border-color: #bbb; background: white; box-shadow: none; color: #111; }
}
