@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("assets/fonts/space-grotesk-300.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("assets/fonts/space-grotesk-400.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("assets/fonts/space-grotesk-500.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("assets/fonts/space-grotesk-600.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("assets/fonts/space-grotesk-700.ttf") format("truetype");
}

:root {
  --color_background: #071014;
  --color_background_deep: #020608;
  --color_surface: rgba(12, 29, 36, 0.82);
  --color_surface_light: rgba(255, 255, 255, 0.08);
  --color_text: #f4fbff;
  --color_text_soft: rgba(244, 251, 255, 0.72);
  --color_text_muted: rgba(244, 251, 255, 0.52);
  --color_accent: #37d5ff;
  --color_accent_deep: #117c9b;
  --color_line: rgba(119, 220, 255, 0.14);
  --hex_pattern: url("data:image/svg+xml,%3Csvg width='156' height='180' viewBox='0 0 156 180'%3E%3Cg fill='none' stroke='rgba(119,220,255,0.34)' stroke-width='1'%3E%3Cpath d='M78 2 154 46v88L78 178 2 134V46z'/%3E%3Cpath d='M0 90h156' opacity='.22'/%3E%3Cpath d='M78 2v176' opacity='.14'/%3E%3C/g%3E%3C/svg%3E");
  --space_page: clamp(1.25rem, 4vw, 4.5rem);
  --space_gap: clamp(1rem, 2.4vw, 2rem);
  --radius_small: 8px;
  --duration_fast: 180ms;
  --duration_page: 680ms;
  --duration_slow: 720ms;
  --ease_out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease_soft: cubic-bezier(0.65, 0, 0.35, 1);
  --ease_page: cubic-bezier(0.22, 1, 0.36, 1);
  --font_primary: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--color_background_deep);
  color: var(--color_text);
  font-family: var(--font_primary);
}

html.scroll_html,
html.scroll_html body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(119, 220, 255, 0.22) transparent;
}

html.scroll_html::-webkit-scrollbar,
html.scroll_html body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

html.scroll_html::-webkit-scrollbar-thumb,
html.scroll_html body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(119, 220, 255, 0.2);
}

html.scroll_html::-webkit-scrollbar-track,
html.scroll_html body::-webkit-scrollbar-track {
  background: transparent;
}

html.scroll_html::-webkit-scrollbar-button,
html.scroll_html body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-button:single-button,
*::-webkit-scrollbar-button:double-button,
*::-webkit-scrollbar-button:vertical:start:decrement,
*::-webkit-scrollbar-button:vertical:end:increment,
*::-webkit-scrollbar-button:horizontal:start:decrement,
*::-webkit-scrollbar-button:horizontal:end:increment {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  min-width: 320px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 120;
  content: "";
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(2, 6, 8, 0.99), rgba(8, 29, 37, 0.985) 54%, rgba(2, 6, 8, 0.99)),
    var(--color_background_deep);
  transform: translate3d(-102%, 0, 0);
  transform-origin: center;
  transition: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

body.is_returning::before,
body.is_leaving_slide::before {
  animation: page_cover_left_to_right var(--duration_page) var(--ease_page) both;
}

body.is_leaving_home_slide::before {
  animation: page_cover_right_to_left var(--duration_page) var(--ease_page) both;
}

body.is_leaving_slide_up::before {
  animation: page_cover_bottom_to_top var(--duration_page) var(--ease_page) both;
}

body.is_leaving_slide_down::before {
  animation: page_cover_top_to_bottom var(--duration_page) var(--ease_page) both;
}

body.is_leaving_fade::before {
  animation: page_cover_fade var(--duration_page) var(--ease_page) both;
}

body.is_revealing_slide::before {
  animation: page_cover_reveal_to_right var(--duration_page) var(--ease_page) both;
}

body.is_revealing_home_slide::before {
  animation: page_cover_reveal_to_left var(--duration_page) var(--ease_page) both;
}

body.is_revealing_slide_up::before {
  animation: page_cover_reveal_to_top var(--duration_page) var(--ease_page) both;
}

body.is_revealing_slide_down::before {
  animation: page_cover_reveal_to_bottom var(--duration_page) var(--ease_page) both;
}

body.is_revealing_fade::before {
  animation: page_cover_reveal_fade var(--duration_page) var(--ease_page) both;
}

body.is_menu_selecting .menu_content {
  opacity: 0;
  transform: translate3d(0.8rem, -3vh, 0);
  transition:
    opacity 220ms ease,
    transform 420ms var(--ease_page);
}

body.is_menu_selecting .menu_background {
  transform: translate3d(0, 0, 0) scale(1.006);
}

body.is_home_returning .menu_button_scene {
  filter: drop-shadow(0 0 18px rgba(55, 213, 255, 0.42));
}

body.is_subpage_selecting .single_page_section .content_label,
body.is_subpage_selecting .single_page_section .content_title,
body.is_subpage_selecting .single_page_section .content_text,
body.is_subpage_selecting .single_page_section .stance_panel,
body.is_subpage_selecting .single_page_section .core_panel,
body.is_subpage_selecting .single_page_section .detail_card,
body.is_subpage_selecting .single_page_section .workflow_step,
body.is_subpage_selecting .single_page_section .principle_grid,
body.is_subpage_selecting .top_nav {
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 420ms var(--ease_page);
}

body.is_subpage_moving_up .single_page_section .content_label,
body.is_subpage_moving_up .single_page_section .content_title,
body.is_subpage_moving_up .single_page_section .content_text,
body.is_subpage_moving_up .single_page_section .stance_panel,
body.is_subpage_moving_up .single_page_section .core_panel,
body.is_subpage_moving_up .single_page_section .detail_card,
body.is_subpage_moving_up .single_page_section .workflow_step,
body.is_subpage_moving_up .single_page_section .principle_grid {
  transform: translate3d(0, -0.8rem, 0);
}

body.is_subpage_moving_down .single_page_section .content_label,
body.is_subpage_moving_down .single_page_section .content_title,
body.is_subpage_moving_down .single_page_section .content_text,
body.is_subpage_moving_down .single_page_section .stance_panel,
body.is_subpage_moving_down .single_page_section .core_panel,
body.is_subpage_moving_down .single_page_section .detail_card,
body.is_subpage_moving_down .single_page_section .workflow_step,
body.is_subpage_moving_down .single_page_section .principle_grid {
  transform: translate3d(0, 0.8rem, 0);
}

body.is_subpage_moving_up .top_nav {
  transform: translate3d(-50%, -0.65rem, 0);
}

body.is_subpage_moving_down .top_nav {
  transform: translate3d(-50%, 0.65rem, 0);
}

@keyframes page_cover_left_to_right {
  from {
    opacity: 1;
    transform: translate3d(-102%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page_cover_right_to_left {
  from {
    opacity: 1;
    transform: translate3d(102%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page_cover_bottom_to_top {
  from {
    opacity: 1;
    transform: translate3d(0, 102%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page_cover_top_to_bottom {
  from {
    opacity: 1;
    transform: translate3d(0, -102%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page_cover_fade {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.012);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes page_cover_reveal_to_right {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(102%, 0, 0);
  }
}

@keyframes page_cover_reveal_to_left {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-102%, 0, 0);
  }
}

@keyframes page_cover_reveal_to_top {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -102%, 0);
  }
}

@keyframes page_cover_reveal_to_bottom {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 102%, 0);
  }
}

@keyframes page_cover_reveal_fade {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.01);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 21% 23%, rgba(55, 213, 255, 0.14), transparent 29%),
    radial-gradient(circle at 78% 78%, rgba(17, 124, 155, 0.2), transparent 34%),
    linear-gradient(135deg, #071014 0%, #081419 44%, #020608 100%);
}

.page_scroll {
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}

.page_scroll .line_pattern,
.page_scroll .visual_grid {
  position: fixed;
}

.line_pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image: var(--hex_pattern);
  background-position: center;
  background-size: clamp(5.75rem, 9vw, 9.75rem) auto;
  filter: drop-shadow(0 0 10px rgba(55, 213, 255, 0.08));
  mask-image:
    radial-gradient(circle at 50% 50%, #000 0%, #000 38%, transparent 75%),
    linear-gradient(140deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
}

.visual_grid {
  position: absolute;
  right: clamp(-9rem, -10vw, -4rem);
  bottom: clamp(-9rem, -12vw, -5rem);
  z-index: -2;
  width: min(54vw, 42rem);
  aspect-ratio: 1;
  border: 1px solid rgba(55, 213, 255, 0.16);
  opacity: 0.72;
  transform: rotate(18deg);
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  background:
    radial-gradient(circle at 48% 50%, rgba(55, 213, 255, 0.1), transparent 45%),
    linear-gradient(135deg, rgba(55, 213, 255, 0.04), transparent 62%);
  box-shadow:
    inset 0 0 4rem rgba(55, 213, 255, 0.05),
    0 0 5rem rgba(17, 124, 155, 0.12);
}

.visual_grid::before,
.visual_grid::after {
  position: absolute;
  content: "";
  inset: 13%;
  border: 1px solid rgba(244, 251, 255, 0.08);
  clip-path: inherit;
}

.visual_grid::after {
  inset: 30%;
  border-color: rgba(55, 213, 255, 0.22);
}

.nav {
  position: fixed;
  top: 50%;
  left: 0;
  right: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  padding: 0;
  transform: translateY(-50%);
  margin-left: clamp(1rem, 2.4vw, 2rem);
}

.top_nav {
  position: fixed;
  top: clamp(1.1rem, 2.4vw, 2rem);
  left: 50%;
  z-index: 18;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  transform: translateX(-50%);
}

.top_nav_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  color: var(--color_text_muted);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color var(--duration_fast) ease;
}

.top_nav_link::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--color_accent);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left;
  transition:
    opacity var(--duration_fast) ease,
    transform var(--duration_fast) ease;
}

.top_nav_link:hover,
.top_nav_link:focus-visible {
  color: var(--color_text);
  outline: none;
}

.top_nav_link.is_active {
  color: var(--color_text);
}

.top_nav_link.is_active::after {
  opacity: 1;
  transform: scaleX(1);
}

.top_nav_link:hover::after,
.top_nav_link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu_button {
  --menu_button_size: 72px;
  --menu_button_ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  width: var(--menu_button_size);
  height: var(--menu_button_size);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color_text);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform var(--duration_fast) ease;
}

.menu_button_scene {
  position: absolute;
  inset: 0;
  transition:
    transform 0.68s var(--menu_button_ease),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.menu_button_hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.menu_button_outline {
  fill: rgba(55, 200, 255, 0.08);
  stroke: rgba(214, 244, 255, 0.94);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 306;
  stroke-dashoffset: 306;
  opacity: 0.78;
  transition:
    opacity 0.24s ease,
    fill 0.45s ease,
    stroke 0.45s ease,
    filter 0.45s ease;
}

.menu_button_ring {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(55, 200, 255, 0.56);
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.62s var(--menu_button_ease);
}

.menu_button_icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.menu_button:hover,
.menu_button:focus-visible {
  outline: none;
}

.menu_button:hover .menu_button_outline,
.menu_button:focus-visible .menu_button_outline {
  opacity: 1;
  fill: rgba(55, 200, 255, 0.12);
  stroke: rgba(117, 226, 255, 0.98);
  filter: drop-shadow(0 0 12px rgba(55, 200, 255, 0.32));
}

.menu_button:active {
  transform: scale(0.96);
}

.menu_button.is_open .menu_button_scene {
  animation: menu_button_rotate_small 0.75s var(--menu_button_ease) forwards;
}

.menu_button.is_open .menu_button_outline {
  opacity: 1;
  animation: menu_button_draw_hex 0.95s ease forwards;
  fill: rgba(55, 200, 255, 0.14);
  stroke: rgba(117, 226, 255, 0.98);
  filter: drop-shadow(0 0 14px rgba(55, 200, 255, 0.46));
}

.menu_button.is_open .menu_button_ring {
  animation: menu_button_ring_pulse 1.15s ease-out infinite;
}

.menu_button_line {
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color_text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
  transition:
    transform 0.62s var(--menu_button_ease),
    opacity 0.35s ease,
    width 0.45s ease,
    background 0.35s ease;
}

.menu_button_line:first-child {
  transform: translateY(-8px);
}

.menu_button_line:nth-child(2) {
  transform: translateY(0);
}

.menu_button_line:last-child {
  transform: translateY(8px);
}

.menu_button.is_open .menu_button_line:first-child {
  transform: rotate(45deg);
}

.menu_button.is_open .menu_button_line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu_button.is_open .menu_button_line:last-child {
  transform: rotate(-45deg);
}

@keyframes menu_button_draw_hex {
  from {
    stroke-dashoffset: 306;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes menu_button_rotate_small {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(90deg);
  }
}

@keyframes menu_button_ring_pulse {
  0% {
    opacity: 0.68;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.hero {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 3rem);
  text-align: center;
}

.hero_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 72rem);
  min-height: 100%;
  transform: translateY(-6vh);
}

.hero_hook {
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
  color: var(--color_accent);
  font-size: clamp(0.86rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero_title {
  margin: 0 0 15px;
  font-size: clamp(4.2rem, 13vw, 10.4rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero_statement {
  max-width: 58rem;
  margin: clamp(1.35rem, 2.4vw, 2rem) auto 0;
  color: var(--color_text);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  transform: translateY(3px);
}

.hero_quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 44rem);
  height: clamp(6.2rem, 8.5vw, 7.4rem);
  margin: clamp(1.1rem, 2.2vw, 1.8rem) auto 0;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(0.95rem, 2vw, 1.45rem);
  border-top: 1px solid rgba(184, 198, 204, 0.28);
  border-bottom: 1px solid rgba(184, 198, 204, 0.28);
  text-align: left;
}

.quote_text,
.quote_source {
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero_quote.is_ready .quote_text,
.hero_quote.is_ready .quote_source {
  opacity: 1;
}

.hero_quote blockquote {
  margin: 0;
  color: rgba(214, 226, 232, 0.86);
  font-size: clamp(1rem, 1.85vw, 1.5rem);
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
  text-shadow: none;
}

.hero_quote figcaption {
  max-width: 36rem;
  margin: clamp(0.65rem, 1.4vw, 1rem) auto 0;
  color: var(--color_text_muted);
  font-size: clamp(0.78rem, 1.05vw, 0.95rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.hero_text {
  max-width: 52rem;
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--color_text_soft);
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  font-weight: 500;
  line-height: 1.5;
}

.subpage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 3rem);
  text-align: center;
}

.subpage_content {
  width: min(100%, 60rem);
  transform: translateY(-3vh);
}

.subpage_label {
  margin: 0 0 clamp(0.8rem, 2vw, 1.2rem);
  color: var(--color_accent);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.subpage_title {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
}

.subpage_text {
  max-width: 42rem;
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--color_text_soft);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
}

.content_section {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 8vw, 7rem) clamp(1rem, 3vw, 3rem);
  scroll-snap-align: start;
  text-align: center;
}

.content_content {
  width: min(100%, 62rem);
  transform: translateY(-3vh);
}

.single_page_section .content_label,
.single_page_section .content_title,
.single_page_section .content_text,
.single_page_section .stance_panel,
.single_page_section .core_panel,
.single_page_section .detail_card,
.single_page_section .workflow_step,
.single_page_section .principle_grid,
.top_nav {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 520ms var(--ease_page),
    transform 680ms var(--ease_page);
  will-change: opacity, transform;
}

.top_nav {
  transform: translate3d(-50%, 0.85rem, 0);
}

html.is_entering_from_top .single_page_section .content_label,
html.is_entering_from_top .single_page_section .content_title,
html.is_entering_from_top .single_page_section .content_text,
html.is_entering_from_top .single_page_section .stance_panel,
html.is_entering_from_top .single_page_section .core_panel,
html.is_entering_from_top .single_page_section .detail_card,
html.is_entering_from_top .single_page_section .workflow_step,
html.is_entering_from_top .single_page_section .principle_grid {
  transform: translate3d(0, -1rem, 0);
}

html.is_entering_from_bottom .single_page_section .content_label,
html.is_entering_from_bottom .single_page_section .content_title,
html.is_entering_from_bottom .single_page_section .content_text,
html.is_entering_from_bottom .single_page_section .stance_panel,
html.is_entering_from_bottom .single_page_section .core_panel,
html.is_entering_from_bottom .single_page_section .detail_card,
html.is_entering_from_bottom .single_page_section .workflow_step,
html.is_entering_from_bottom .single_page_section .principle_grid {
  transform: translate3d(0, 1rem, 0);
}

html.is_entering_from_top .top_nav {
  transform: translate3d(-50%, -0.75rem, 0);
}

html.is_entering_from_bottom .top_nav {
  transform: translate3d(-50%, 0.75rem, 0);
}

html.is_page_ready .single_page_section .content_label,
html.is_page_ready .single_page_section .content_title,
html.is_page_ready .single_page_section .content_text,
html.is_page_ready .single_page_section .stance_panel,
html.is_page_ready .single_page_section .core_panel,
html.is_page_ready .single_page_section .detail_card,
html.is_page_ready .single_page_section .workflow_step,
html.is_page_ready .single_page_section .principle_grid {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.is_page_ready .top_nav {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

html.is_page_ready .single_page_section .content_label {
  transition-delay: 120ms;
}

html.is_page_ready .single_page_section .content_title {
  transition-delay: 210ms;
}

html.is_page_ready .single_page_section .content_text {
  transition-delay: 330ms;
}

html.is_page_ready .single_page_section .stance_panel,
html.is_page_ready .single_page_section .core_panel {
  transition-delay: 420ms;
}

html.is_page_ready .single_page_section .detail_card:nth-of-type(1),
html.is_page_ready .single_page_section .workflow_step:nth-child(1) {
  transition-delay: 250ms;
}

html.is_page_ready .single_page_section .detail_card:nth-of-type(2),
html.is_page_ready .single_page_section .workflow_step:nth-child(2) {
  transition-delay: 320ms;
}

html.is_page_ready .single_page_section .detail_card:nth-of-type(3),
html.is_page_ready .single_page_section .workflow_step:nth-child(3) {
  transition-delay: 390ms;
}

html.is_page_ready .single_page_section .workflow_step:nth-child(4) {
  transition-delay: 460ms;
}

html.is_page_ready .single_page_section .workflow_step:nth-child(5) {
  transition-delay: 530ms;
}

html.is_page_ready .single_page_section .workflow_step:nth-child(6),
html.is_page_ready .single_page_section .principle_grid {
  transition-delay: 600ms;
}

html.is_page_ready .top_nav {
  transition-delay: 150ms;
}

.content_label {
  margin: 0 0 clamp(0.8rem, 2vw, 1.2rem);
  color: var(--color_accent);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.content_title {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(3.1rem, 8.2vw, 7.4rem);
  font-weight: 900;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.content_text {
  max-width: 48rem;
  margin: clamp(1.15rem, 2vw, 1.65rem) auto 0;
  color: var(--color_text_soft);
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  font-weight: 500;
  line-height: 1.55;
}

.rich_section {
  place-items: center;
  padding-top: clamp(5rem, 6.4vw, 6.4rem);
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
  text-align: left;
}

.rich_content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(1.4rem, 3.4vw, 4.5rem);
  align-items: center;
  width: min(100%, 78rem);
  max-height: calc(100svh - clamp(6rem, 7.4vw, 7.5rem));
  overflow-y: auto;
  padding-right: 0.2rem;
  transform: translateY(0);
  scrollbar-width: thin;
  scrollbar-color: rgba(119, 220, 255, 0.22) transparent;
}

.rich_content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.rich_content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(119, 220, 255, 0.22);
}

.rich_content::-webkit-scrollbar-track {
  background: transparent;
}

.rich_content::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.rich_content .content_label,
.rich_content .content_title,
.rich_content .content_text {
  margin-right: 0;
  margin-left: 0;
}

.rich_content .content_title {
  max-width: 12ch;
  font-size: clamp(2.55rem, 5.4vw, 5.45rem);
  line-height: 0.98;
}

.competence_layout .content_title {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.4vw, 4.55rem);
}

.competence_layout .rich_content {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  width: min(100%, 75rem);
  min-height: min(41.25rem, calc(100svh - 7rem));
  padding-right: 0;
}

.competence_layout .rich_intro {
  max-width: 41rem;
}

.competence_layout .content_title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.65vw, 3.85rem);
  font-weight: 500;
  line-height: 1;
}

.competence_layout .panel_label {
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
  font-size: clamp(1.1rem, 1.68vw, 1.56rem);
  font-weight: 900;
  line-height: 1.15;
}

.competence_layout .core_panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(165, 178, 184, 0.04)),
    rgba(5, 18, 23, 0.58);
}

.competence_layout .core_panel > .panel_label {
  margin-bottom: 1rem;
  color: var(--color_text);
  font-size: clamp(1.35rem, 1.62vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

.competence_layout .workflow_stack {
  gap: clamp(1rem, 1.7vw, 1.35rem);
}

.competence_layout .workflow_stack::before,
.competence_layout .workflow_step::after {
  display: none;
}

.competence_layout .workflow_step {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(8.5rem, 11.5vw, 10.8rem);
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(165, 178, 184, 0.04)),
    rgba(5, 18, 23, 0.58);
}

.competence_layout .content_text,
.competence_layout .workflow_step p,
.competence_layout .core_panel p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.56;
}

.competence_layout .workflow_step h2,
.competence_layout .core_panel h2 {
  font-size: clamp(1.35rem, 1.62vw, 1.5rem);
  line-height: 1.14;
}

.competence_layout .workflow_step .detail_lead {
  font-size: clamp(0.94rem, 1.04vw, 1rem);
  line-height: 1.35;
}

.competence_layout .competence_tags {
  margin-top: 1rem;
}

.competence_group + .competence_group {
  margin-top: 0.95rem;
}

.competence_group_label {
  margin: 0;
  color: rgba(244, 251, 255, 0.88);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  font-weight: 800;
  line-height: 1.25;
}

.competence_group .competence_tags {
  margin-top: 0.5rem;
}

.profile_layout .content_title {
  max-width: 16ch;
  font-size: clamp(2.25rem, 3.35vw, 3.125rem);
  font-weight: 500;
  line-height: 1;
}

.profile_layout .rich_content {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  width: min(100%, 75rem);
  min-height: min(41.25rem, calc(100svh - 7rem));
  padding-right: 0;
}

.profile_layout .rich_intro {
  max-width: 41rem;
}

.profile_layout .panel_label {
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
  font-size: clamp(1.1rem, 1.68vw, 1.56rem);
  font-weight: 900;
  line-height: 1.15;
}

.profile_layout .profile_stack {
  gap: clamp(1rem, 1.7vw, 1.35rem);
}

.profile_layout .profile_stack::before {
  display: none;
}

.profile_layout .detail_card {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(9rem, 13vw, 12rem);
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(165, 178, 184, 0.04)),
    rgba(5, 18, 23, 0.58);
}

.profile_layout .detail_card.is_featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(165, 178, 184, 0.04)),
    rgba(5, 18, 23, 0.58);
}

.profile_layout .content_text,
.profile_layout .detail_card p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.56;
}

.profile_layout .detail_card h2 {
  font-size: clamp(1.35rem, 1.62vw, 1.5rem);
  line-height: 1.14;
}

.profile_layout .detail_card .detail_lead {
  font-size: clamp(0.94rem, 1.04vw, 1rem);
  line-height: 1.35;
}

.rich_content .content_text {
  max-width: 42rem;
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
  line-height: 1.54;
}

.profile_layout .rich_content .content_text,
.profile_layout .detail_card p,
.competence_layout .rich_content .content_text,
.competence_layout .workflow_step p {
  font-size: 1rem;
  line-height: 1.56;
}

.stance_panel,
.core_panel,
.detail_card,
.workflow_step,
.principle_grid article {
  border: 1px solid rgba(119, 220, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(5, 18, 23, 0.58);
  box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.stance_panel,
.core_panel {
  margin-top: clamp(1rem, 1.7vw, 1.5rem);
  padding: clamp(0.9rem, 1.35vw, 1.12rem);
  border-radius: var(--radius_small);
}

.panel_label {
  margin: 0 0 0.45rem;
  color: var(--color_accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stance_panel h2,
.core_panel h2,
.detail_card h2,
.workflow_step h2 {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.14;
}

.stance_panel p,
.core_panel p,
.detail_card p,
.workflow_step p,
.principle_grid p {
  margin: 0.42rem 0 0;
  color: var(--color_text_soft);
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  font-weight: 500;
  line-height: 1.48;
}

.profile_stack,
.workflow_stack {
  display: grid;
  gap: clamp(0.8rem, 1.3vw, 1.05rem);
  margin: 0;
}

.profile_stack {
  position: relative;
}

.profile_stack::before,
.workflow_stack::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.35rem;
  width: 1px;
  content: "";
  background: linear-gradient(rgba(55, 213, 255, 0), rgba(55, 213, 255, 0.42), rgba(55, 213, 255, 0));
}

.detail_card,
.workflow_step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.85rem, 1.25vw, 1.1rem);
  align-items: start;
  padding: clamp(0.78rem, 1.14vw, 1rem);
  border-radius: var(--radius_small);
}

.detail_card.is_featured {
  background:
    linear-gradient(145deg, rgba(55, 213, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 18, 23, 0.66);
}

.detail_icon,
.workflow_icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(55, 213, 255, 0.42);
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  background: rgba(55, 213, 255, 0.08);
  color: var(--color_accent);
}

.detail_icon svg,
.workflow_icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.detail_lead {
  color: rgba(244, 251, 255, 0.86) !important;
  font-weight: 700 !important;
}

.principle_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 1vw, 0.9rem);
}

.principle_grid article {
  min-height: 7.2rem;
  padding: clamp(0.72rem, 1vw, 0.9rem);
  border-radius: var(--radius_small);
}

.principle_grid span {
  color: var(--color_text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.workflow_stack {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.workflow_step {
  counter-increment: workflow;
}

.workflow_step::after {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  content: "0" counter(workflow);
  color: rgba(119, 220, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.competence_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0.9rem 0 0;
  list-style: none;
}

.competence_tags li {
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(119, 220, 255, 0.14);
  border-radius: 999px;
  color: rgba(244, 251, 255, 0.74);
  background: rgba(55, 213, 255, 0.055);
  font-size: clamp(0.74rem, 0.9vw, 0.82rem);
  font-weight: 650;
  line-height: 1.25;
}

@media (min-height: 1120px) and (min-width: 900px) {
  .rich_content {
    max-height: none;
    overflow-y: visible;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .top_nav {
    top: clamp(0.9rem, 2.4vw, 1.35rem);
    gap: clamp(0.7rem, 1.8vw, 1rem);
  }

  .top_nav_link {
    font-size: clamp(0.72rem, 1.35vw, 0.84rem);
    letter-spacing: 0.09em;
  }

  .rich_section {
    align-items: start;
    padding: clamp(5.8rem, 10vw, 7rem) clamp(1.1rem, 4vw, 2.5rem) 3rem;
  }

  .rich_content,
  .profile_layout .rich_content,
  .competence_layout .rich_content {
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 2.6vw, 1.8rem);
    width: min(100%, 46rem);
    min-height: 0;
    max-height: calc(100svh - clamp(6.4rem, 12vw, 8rem));
    align-items: start;
  }

  .profile_layout .rich_intro,
  .competence_layout .rich_intro {
    max-width: 100%;
  }

  .profile_layout .detail_card,
  .competence_layout .workflow_step {
    min-height: auto;
  }

  .profile_layout .content_text,
  .competence_layout .content_text,
  .profile_layout .detail_card p,
  .competence_layout .workflow_step p {
    font-size: clamp(0.94rem, 1.6vw, 1.02rem);
  }

  .visual_grid {
    opacity: 0.34;
  }
}

.sub_nav {
  position: fixed;
  left: clamp(1rem, 2.4vw, 2rem);
  top: 50%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  transform: translateY(-50%);
}

.sub_nav_link {
  --sub_nav_size: clamp(3.5rem, 5vw, 4.5rem);
  --sub_nav_ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  display: grid;
  place-items: center;
  width: var(--sub_nav_size);
  height: var(--sub_nav_size);
  color: var(--color_text_soft);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  isolation: isolate;
  transition:
    color var(--duration_fast) ease,
    transform var(--duration_fast) ease;
}

.sub_nav_link::after {
  position: absolute;
  inset: 4px;
  z-index: -2;
  content: "";
  border: 1px solid rgba(55, 200, 255, 0.56);
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  opacity: 0;
  pointer-events: none;
}

.sub_nav_shape {
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  background: rgba(55, 200, 255, 0.08);
  border: 2px solid rgba(214, 244, 255, 0.94);
  opacity: 0.5;
  box-shadow: inset 0 0 1.2rem rgba(55, 213, 255, 0.06);
  transition:
    opacity 0.24s ease,
    background var(--duration_fast) ease,
    border-color var(--duration_fast) ease,
    box-shadow var(--duration_fast) ease,
    filter var(--duration_fast) ease;
}

.sub_nav_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  min-height: 1.5rem;
  letter-spacing: 0;
}

.sub_nav_icon_small {
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  letter-spacing: 0.04em;
}

.sub_nav_link:hover,
.sub_nav_link:focus-visible {
  color: var(--color_text);
  outline: none;
  transform: scale(1.04);
}

.sub_nav_link:hover .sub_nav_shape,
.sub_nav_link:focus-visible .sub_nav_shape {
  background: rgba(55, 213, 255, 0.12);
  border-color: rgba(117, 226, 255, 0.92);
  opacity: 0.86;
  box-shadow:
    inset 0 0 1.4rem rgba(55, 213, 255, 0.14),
    0 0 1.6rem rgba(55, 213, 255, 0.18);
}

.sub_nav_link.is_active {
  color: var(--color_text);
}

.sub_nav_link.is_active .sub_nav_shape {
  background: rgba(55, 200, 255, 0.14);
  border-color: rgba(117, 226, 255, 0.98);
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(55, 200, 255, 0.46));
  box-shadow:
    inset 0 0 1.6rem rgba(55, 213, 255, 0.2),
    0 0 1.9rem rgba(55, 213, 255, 0.36);
}

.sub_nav_link.is_active::after {
  animation: sub_nav_ring_pulse 1.15s ease-out infinite;
}

.sub_nav_home .sub_nav_icon {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 300;
}

@keyframes sub_nav_ring_pulse {
  0% {
    opacity: 0.68;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.menu_overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center start;
  grid-template-columns: 1fr;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear var(--duration_slow);
}

.menu_background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(5, 15, 19, 0.98), rgba(10, 35, 44, 0.98)),
    var(--color_background_deep);
  transform: translateX(-100%) scale(1.02);
  transform-origin: left;
  transition:
    transform var(--duration_slow) var(--ease_soft),
    visibility 0s linear var(--duration_slow);
}

.menu_overlay.is_open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.menu_overlay.is_open .menu_background {
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.menu_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: start;
  justify-content: center;
  width: min(100%, 82rem);
  min-height: min(46rem, 78vh);
  padding-left: clamp(2rem, 12vw, 13rem);
  opacity: 0;
  transform: translateY(-3vh);
  transition: opacity 360ms ease;
}

.menu_overlay.is_open .menu_content {
  opacity: 1;
  transform: translateY(-3vh);
  transition-delay: 220ms;
}

.menu_links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.25rem, 0.75vw, 0.7rem);
  text-align: left;
}

.menu_link {
  position: relative;
  display: inline-flex;
  padding: 0.2rem 0;
  color: var(--color_text);
  max-width: 100%;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  opacity: 0;
  transition:
    color var(--duration_fast) ease,
    opacity 360ms ease;
}

.menu_link::after {
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--color_accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.menu_link:hover,
.menu_link:focus-visible {
  color: var(--color_accent);
  outline: none;
}

.menu_link:hover::after,
.menu_link:focus-visible::after {
  transform: scaleX(1);
}

.menu_overlay.is_open .menu_link {
  opacity: 1;
}

.menu_overlay.is_open .menu_link:nth-child(1) {
  transition-delay: 300ms;
}

.menu_overlay.is_open .menu_link:nth-child(2) {
  transition-delay: 380ms;
}

.menu_overlay.is_open .menu_link:nth-child(3) {
  transition-delay: 460ms;
}

.menu_secondary {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 0.55rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  opacity: 0;
  transition: opacity 360ms ease;
}

.menu_secondary_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0;
  border: 0;
  color: var(--color_text_muted);
  background: transparent;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--duration_fast) ease,
    opacity var(--duration_fast) ease;
}

.menu_separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: clamp(0.5rem, 1.2vw, 0.9rem);
  color: rgba(244, 251, 255, 0.28);
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-weight: 700;
  line-height: 1.4;
}

.menu_secondary_link::after {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--color_accent);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left;
  transition:
    opacity var(--duration_fast) ease,
    transform var(--duration_fast) ease;
}

.menu_secondary_link:hover,
.menu_secondary_link:focus-visible {
  color: var(--color_text);
  outline: none;
}

.menu_secondary_link:hover::after,
.menu_secondary_link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu_secret_separator {
  opacity: 0.1;
}

.menu_secret_link {
  min-width: 4.8rem;
  opacity: 0.11;
}

.menu_secret_dot {
  color: rgba(210, 237, 246, 0.55);
  font-size: 1.1em;
  line-height: 1;
  transition: opacity var(--duration_fast) ease;
}

.menu_secret_text {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(0.15rem);
  transition:
    opacity var(--duration_fast) ease,
    transform var(--duration_fast) ease;
}

.menu_secret_link:hover,
.menu_secret_link:focus-visible {
  opacity: 1;
}

.content_status {
  display: inline-block;
  margin-left: 0.55rem;
  color: rgba(255, 105, 118, 0.9);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.links_blank_page {
  min-height: 100svh;
  background:
    linear-gradient(145deg, #f0f2f3 0%, #d9dedf 52%, #c5ccce 100%);
  color: #2f3638;
  color-scheme: light;
}

.links_body {
  min-height: 100svh;
  margin: 0;
  background: #0b0f17;
  color: #e5e7eb;
  color-scheme: dark;
  font-family: var(--font_primary);
}

.links_close {
  --links_close_size: 2.25rem;

  position: fixed;
  top: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2rem);
  z-index: 10;
  display: grid;
  width: var(--links_close_size);
  height: var(--links_close_size);
  place-items: center;
  color: #e5e7eb;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
  transform 180ms ease;
}

.links_close_scene,
.links_close_hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.links_close_outline {
  fill: rgba(55, 200, 255, 0.08);
  stroke: rgba(117, 226, 255, 0.92);
  stroke-width: 3;
}

.links_close_icon,
.links_close_icon::before,
.links_close_icon::after {
  position: absolute;
  width: 0.92rem;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.links_close_icon {
  top: 50%;
  left: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.links_close_icon::before {
  transform: rotate(45deg);
}

.links_close_icon::after {
  transform: rotate(-45deg);
}

.links_close:hover,
.links_close:focus-visible {
  opacity: 1;
  outline: none;
  transform: scale(1.04);
}

.links_page {
  min-height: 100svh;
  padding: clamp(2rem, 4.2vw, 4rem) clamp(1rem, 3vw, 2.5rem);
  background: #0b0f17;
}

.links_panel {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.links_header {
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.links_header h1 {
  margin: 0;
  color: #37d5ff;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.links_table_stack {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.55rem);
}

.links_table_group h2 {
  margin: 0 0 0.55rem;
  color: #e5e7eb;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.links_table_wrap {
  overflow-x: auto;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  background: #111827;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.32) transparent;
}

.links_table_wrap::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.links_table_wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(156, 163, 175, 0.24);
}

.links_table_wrap::-webkit-scrollbar-track {
  background: transparent;
}

.links_table_wrap::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.links_table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  color: #e5e7eb;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
}

.links_table th,
.links_table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #374151;
  text-align: left;
  vertical-align: top;
}

.links_table th {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.links_table tbody tr:last-child td {
  border-bottom: 0;
}

.links_table td:first-child {
  width: 22%;
  font-weight: 700;
}

.links_table td:nth-child(2) {
  width: 38%;
}

.links_table a {
  color: #e5e7eb;
  text-decoration-color: rgba(156, 163, 175, 0.7);
  text-underline-offset: 0.18em;
}

.links_table a:hover,
.links_table a:focus-visible {
  color: #ffffff;
  outline: none;
  text-decoration-color: #ffffff;
}

.menu_secret_link:hover .menu_secret_dot,
.menu_secret_link:focus-visible .menu_secret_dot {
  opacity: 0;
}

.menu_secret_link:hover .menu_secret_text,
.menu_secret_link:focus-visible .menu_secret_text {
  opacity: 1;
  transform: translateY(0);
}

.menu_overlay.is_open .menu_secondary {
  opacity: 1;
  transition-delay: 560ms;
}

.legal_panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-items: end;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 520ms;
}

.legal_panel_backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 88%, rgba(55, 213, 255, 0.075), transparent 32%),
    rgba(1, 6, 8, 0.68);
  opacity: 0;
  cursor: pointer;
  transition: opacity 420ms var(--ease_soft);
}

.legal_panel_sheet {
  position: relative;
  width: min(100% - clamp(1rem, 4vw, 4rem), 74rem);
  max-height: min(78svh, 42rem);
  margin: 0 auto clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1rem, 1.45vw, 1.3rem);
  border: 1px solid rgba(119, 220, 255, 0.18);
  border-radius: var(--radius_small);
  background:
    linear-gradient(180deg, rgba(14, 43, 65, 0.92), rgba(4, 16, 22, 0.94)),
    rgba(5, 18, 23, 0.92);
  box-shadow: 0 1.7rem 4.2rem rgba(0, 0, 0, 0.48);
  opacity: 0;
  overflow: hidden;
  transform: translateY(110%) scale(0.985);
  transition:
    opacity 420ms var(--ease_soft),
    transform 520ms var(--ease_soft);
}

.legal_panel.is_open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.legal_panel.is_open .legal_panel_backdrop {
  opacity: 1;
}

.legal_panel.is_open .legal_panel_sheet {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.legal_panel_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(177, 209, 222, 0.2);
}

.legal_panel_title {
  margin: 0 0 clamp(0.85rem, 1.5vw, 1.15rem);
  color: var(--color_text);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.18;
}

.legal_tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

.legal_tab_button {
  min-height: 2rem;
  padding: 0;
  border: 0;
  color: rgba(156, 163, 175, 0.82);
  background: transparent;
  font-family: inherit;
  font-size: clamp(0.72rem, 0.88vw, 0.8rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color var(--duration_fast) ease;
}

.legal_tab_button.is_active {
  color: rgba(55, 213, 255, 0.96);
}

.legal_tab_button:hover,
.legal_tab_button:focus-visible {
  color: rgba(191, 232, 255, 0.96);
  outline: none;
}

.legal_tab_separator {
  color: rgba(156, 163, 175, 0.42);
  font-size: 0.78rem;
}

.legal_panel_close {
  position: relative;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(119, 220, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    border-color var(--duration_fast) ease,
    background var(--duration_fast) ease,
    transform var(--duration_fast) ease;
}

.legal_panel_close::before,
.legal_panel_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  content: "";
  background: var(--color_text);
  transform-origin: center;
}

.legal_panel_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.legal_panel_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.legal_panel_close:hover,
.legal_panel_close:focus-visible {
  border-color: rgba(119, 220, 255, 0.7);
  background: rgba(55, 213, 255, 0.09);
  outline: none;
  transform: translateY(-1px);
}

.legal_panel_body {
  max-height: calc(min(78svh, 42rem) - 4.2rem);
  padding-top: clamp(0.9rem, 1.35vw, 1.15rem);
  padding-right: clamp(0.25rem, 0.65vw, 0.5rem);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(119, 220, 255, 0.26) transparent;
}

.legal_panel_body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.legal_panel_body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(119, 220, 255, 0.24);
}

.legal_panel_body::-webkit-scrollbar-track {
  background: transparent;
}

.legal_panel_body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.legal_tab_panel[hidden] {
  display: none;
}

.legal_tab_panel {
  min-width: 0;
}

.legal_card_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.legal_card {
  min-width: 0;
  padding: clamp(0.72rem, 1vw, 0.92rem);
  border-left: 1px solid rgba(119, 220, 255, 0.55);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(13, 31, 44, 0.72);
}

.legal_card h3 {
  margin: 0 0 0.45rem;
  color: var(--color_text);
  font-size: clamp(0.8rem, 0.92vw, 0.88rem);
  font-weight: 800;
  line-height: 1.2;
}

.legal_card p {
  margin: 0;
  color: rgba(244, 251, 255, 0.72);
  font-size: clamp(0.74rem, 0.82vw, 0.8rem);
  font-weight: 400;
  line-height: 1.48;
}

.legal_card a {
  color: var(--color_text);
  text-decoration-color: rgba(119, 220, 255, 0.45);
  text-underline-offset: 0.2em;
}

.legal_card a:hover,
.legal_card a:focus-visible {
  color: var(--color_accent);
  outline: none;
}

@media (max-width: 760px) {
  html.scroll_html,
  html.scroll_html body,
  .rich_content,
  .legal_panel_body,
  .links_table_wrap {
    scrollbar-width: none;
  }

  html.scroll_html::-webkit-scrollbar,
  html.scroll_html body::-webkit-scrollbar,
  .rich_content::-webkit-scrollbar,
  .legal_panel_body::-webkit-scrollbar,
  .links_table_wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  html.scroll_html::-webkit-scrollbar-thumb,
  html.scroll_html body::-webkit-scrollbar-thumb,
  .rich_content::-webkit-scrollbar-thumb,
  .legal_panel_body::-webkit-scrollbar-thumb,
  .links_table_wrap::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .links_page {
    padding: clamp(1.25rem, 5vw, 1.75rem) clamp(1rem, 4.5vw, 1.2rem) 2rem;
  }

  .links_panel {
    width: 100%;
  }

  .links_header {
    margin-bottom: 1.15rem;
    padding-right: 2.4rem;
  }

  .links_header h1 {
    font-size: clamp(0.62rem, 2.7vw, 0.78rem);
    letter-spacing: 0.12em;
  }

  .links_table_stack {
    gap: 1.25rem;
  }

  .links_table_group h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    line-height: 1.2;
  }

  .links_table_wrap {
    overflow: hidden;
    border-radius: 0.42rem;
  }

  .links_table {
    min-width: 0;
    table-layout: fixed;
    font-size: clamp(0.82rem, 3.55vw, 0.92rem);
  }

  .links_table th,
  .links_table td {
    padding: 0.78rem 0.85rem;
  }

  .links_table th:nth-child(1),
  .links_table td:nth-child(1) {
    width: 42%;
  }

  .links_table th:nth-child(2),
  .links_table td:nth-child(2) {
    width: 58%;
  }

  .links_table th:nth-child(3),
  .links_table td:nth-child(3) {
    display: none;
  }

  .links_table td:first-child,
  .links_table td:nth-child(2) {
    width: auto;
  }

  .links_table td,
  .links_table a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page {
    background:
      radial-gradient(circle at 28% 18%, rgba(55, 213, 255, 0.14), transparent 34%),
      radial-gradient(circle at 80% 82%, rgba(17, 124, 155, 0.16), transparent 38%),
      linear-gradient(145deg, #071014 0%, #0a171d 55%, #020608 100%);
  }

  .line_pattern {
    opacity: 0.18;
    background-size: 6.5rem auto;
  }

  .nav {
    top: clamp(0.75rem, 4vw, 1.25rem);
    right: clamp(0.75rem, 4vw, 1.25rem);
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .top_nav {
    top: clamp(0.9rem, 4vw, 1.15rem);
    left: clamp(0.85rem, 4vw, 1.25rem);
    right: clamp(4.25rem, 17vw, 5.25rem);
    justify-content: flex-start;
    gap: 0.45rem 0.65rem;
    transform: translate3d(0, 0.75rem, 0);
  }

  html.is_page_ready .top_nav {
    transform: translate3d(0, 0, 0);
  }

  html.is_entering_from_top .top_nav {
    transform: translate3d(0, -0.7rem, 0);
  }

  html.is_entering_from_bottom .top_nav {
    transform: translate3d(0, 0.7rem, 0);
  }

  body.is_subpage_moving_up .top_nav {
    transform: translate3d(0, -0.6rem, 0);
  }

  body.is_subpage_moving_down .top_nav {
    transform: translate3d(0, 0.6rem, 0);
  }

  .top_nav_link {
    min-height: 1.9rem;
    font-size: clamp(0.62rem, 2.45vw, 0.72rem);
    letter-spacing: 0.055em;
    line-height: 1.2;
  }

  .menu_button {
    --menu_button_size: clamp(56px, 14vw, 64px);
  }

  .hero {
    align-items: center;
    padding: 1.25rem 1rem;
  }

  .hero_title {
    font-size: clamp(3.8rem, 19vw, 6.4rem);
    line-height: 0.9;
  }

  .hero_hook {
    font-size: 0.78rem;
  }

  .hero_text {
    font-size: 1rem;
  }

  .hero_statement {
    font-size: clamp(1.15rem, 5.5vw, 1.65rem);
  }

  .hero_quote {
    width: min(100%, 20.6rem);
    min-height: 5.65rem;
    height: auto;
    margin-top: 0.9rem;
    text-align: center;
    padding: 0.78rem 1.25rem;
  }

  .hero_quote blockquote {
    font-size: clamp(0.82rem, 4vw, 1rem);
    line-height: 1.28;
  }

  .hero_quote figcaption {
    max-width: 18rem;
    margin-top: 0.45rem;
    font-size: clamp(0.62rem, 3.1vw, 0.78rem);
    line-height: 1.34;
  }

  .hero_content {
    transform: translateY(-4vh);
  }

  .content_section {
    padding: clamp(5.75rem, 18vw, 7rem) 1rem 4rem;
  }

  .content_content {
    transform: translateY(0);
  }

  .content_title {
    font-size: clamp(2.65rem, 14vw, 4.8rem);
  }

  .content_text {
    font-size: 1rem;
  }

  .rich_section {
    align-items: start;
    padding: clamp(5.9rem, 22vw, 7.5rem) 1rem 2.5rem;
  }

  .rich_content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-height: calc(100svh - clamp(6.4rem, 20vw, 7.2rem));
    padding-right: 0;
  }

  .profile_layout .rich_content,
  .competence_layout .rich_content {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 22rem);
    max-width: 100%;
    min-height: 0;
    max-height: calc(100svh - clamp(6.4rem, 20vw, 7.2rem));
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .profile_layout .rich_intro,
  .competence_layout .rich_intro,
  .profile_layout .profile_stack,
  .competence_layout .workflow_stack {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .rich_content .content_title,
  .competence_layout .content_title {
    max-width: 12.5ch;
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .rich_content .content_text {
    font-size: 0.95rem;
  }

  .stance_panel,
  .core_panel,
  .detail_card,
  .workflow_step {
    padding: 0.95rem;
  }

  .detail_card,
  .workflow_step {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
  }

  .profile_layout .detail_card {
    grid-template-columns: minmax(0, 1fr);
  }

  .competence_layout .workflow_step {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail_icon,
  .workflow_icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .profile_stack::before,
  .workflow_stack::before {
    left: 1.15rem;
  }

  .principle_grid {
    grid-template-columns: 1fr;
  }

  .principle_grid article {
    min-height: auto;
  }

  .competence_tags {
    gap: 0.38rem;
  }

  .subpage_content {
    transform: translateY(-1.5vh);
  }

  .sub_nav {
    top: clamp(0.75rem, 4vw, 1.25rem);
    right: clamp(0.75rem, 4vw, 1.25rem);
    left: auto;
    flex-direction: row;
    gap: 0.55rem;
    transform: none;
  }

  .sub_nav_link {
    --sub_nav_size: clamp(2.8rem, 13vw, 3.4rem);
    font-size: clamp(0.82rem, 4vw, 1rem);
  }

  .sub_nav_icon_small {
    font-size: clamp(0.58rem, 2.8vw, 0.72rem);
  }

  .visual_grid {
    width: 86vw;
    right: -38vw;
    bottom: -28vw;
    opacity: 0.28;
  }

  .menu_overlay {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
  }

  .menu_content {
    justify-content: center;
    padding-left: clamp(0.5rem, 5vw, 2rem);
    transform: translateY(-1.5vh);
    width: min(100%, 42rem);
  }

  .menu_overlay.is_open .menu_content {
    transform: translateY(-1.5vh);
  }

  .menu_link {
    font-size: clamp(2.05rem, 9.3vw, 3.2rem);
    line-height: 1.04;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .menu_links {
    gap: clamp(0.55rem, 2.8vw, 0.95rem);
    width: 100%;
  }

  .menu_secondary {
    row-gap: 0.35rem;
    margin-top: clamp(1.5rem, 7vw, 2.5rem);
  }

  .legal_panel {
    align-items: stretch;
  }

  .legal_panel_sheet {
    width: calc(100% - 1rem);
    max-height: calc(100svh - 1rem);
    margin: 0.5rem auto;
    padding: 1rem;
  }

  .legal_panel_header {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .legal_tabs {
    gap: 0.35rem 0.48rem;
  }

  .legal_tab_button {
    min-height: 1.75rem;
    font-size: clamp(0.68rem, 2.5vw, 0.76rem);
  }

  .legal_panel_body {
    max-height: calc(100svh - 8rem);
  }

  .legal_card_grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .menu_secret_link {
    opacity: 0.24;
  }

  .links_header h1 {
    font-size: clamp(0.48rem, 2.05vw, 0.82rem);
    letter-spacing: 0.045em;
  }
}

@media (min-width: 761px) and (max-width: 1080px), (min-width: 761px) and (max-height: 720px) {
  .nav {
    top: clamp(1rem, 3vw, 1.75rem);
    right: clamp(1rem, 3vw, 1.75rem);
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .menu_button {
    --menu_button_size: clamp(58px, 7vw, 68px);
  }
}

@media (max-height: 620px) {
  .hero_title {
    font-size: clamp(3.2rem, 12vw, 7rem);
  }

  .menu_link {
    font-size: clamp(2.2rem, 7vw, 5rem);
  }
}

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

  .legal_panel_sheet {
    transform: translateY(0) scale(1);
  }
}
