:root {
  --deep: #020813;
  --midnight: #06162b;
  --navy: #092344;
  --blue: #2f6ed3;
  --cyan: #7eb7ff;
  --accent-blue: #7eb7ff;
  --accent-blue-soft: #b8dcff;
  --text: #f5f8ff;
  --muted: #aebbd0;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --heading: "Montserrat", "Segoe UI", sans-serif;
  --body: "Nunito Sans", "Segoe UI", sans-serif;
}

@property --fill {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
  scrollbar-color: rgba(126, 183, 255, 0.58) #06162b;
  scrollbar-width: thin;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  background: #06162b;
}

main {
  position: relative;
  background: #06162b;
}

body::before {
  display: none;
}

body::after {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(2, 8, 19, 0.98), rgba(9, 35, 68, 0.94));
}

::-webkit-scrollbar-thumb {
  border: 3px solid #06162b;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(126, 183, 255, 0.76), rgba(47, 110, 211, 0.74));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(184, 220, 255, 0.82), rgba(126, 183, 255, 0.8));
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--cyan), var(--blue));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 8px 54px 7px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #08192f;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand-logo {
  width: clamp(300px, 23vw, 430px);
  height: 84px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  transform: scale(1.28);
  transform-origin: center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: var(--heading);
  font-weight: 800;
  background: linear-gradient(145deg, #0b315f, var(--blue));
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy small {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 3px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 19, 0);
  transition: background 0.22s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  background: rgba(2, 8, 19, 0.58);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(320px, 84vw);
  align-content: start;
  gap: 8px;
  padding: 84px 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(126, 183, 255, 0.14), transparent 15rem),
    #08192f;
  box-shadow: 22px 0 62px rgba(0, 0, 0, 0.36);
  transform: translateX(-105%);
  transition: transform 0.24s ease;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-panel a,
.mobile-menu-link,
.mobile-menu-action {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible,
.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-action {
  justify-content: center;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  text-align: center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-right: 0;
}

.main-nav > * {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
}

.main-nav > * + *::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  content: "";
  background: rgba(190, 198, 210, 0.42);
  transform: translateY(-50%);
}

.main-nav a,
.nav-link-button,
.nav-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.main-nav a,
.nav-link-button {
  border: 0;
  padding: 0 clamp(12px, 1.15vw, 22px);
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  text-align: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
  color: #fff;
  background: transparent;
  transform: translateY(-1px);
}

.nav-action {
  width: 260px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  line-height: 1.18;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 1500px) {
  .site-header {
    grid-template-columns: minmax(230px, auto) 1fr auto;
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand-logo {
    width: clamp(230px, 18vw, 300px);
  }

  .main-nav {
    margin-right: 0;
  }

  .main-nav a,
  .nav-link-button {
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .nav-action {
    width: 230px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

.section-shell {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}

.section-pad {
  padding: 76px 0;
  box-shadow: inset 0 1px rgba(126, 183, 255, 0.12);
}

section[id] {
  scroll-margin-top: 104px;
}

body,
main,
section,
.hero,
.hero-bg,
.model-story,
.founding-companies-section,
.brand-power,
.project-showcase,
.project-band,
.trust-section,
.cta-section,
.organization-section {
  background-color: #06162b !important;
  background-image: none !important;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 76px;
  background: transparent;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 22, 43, 0.92), rgba(8, 25, 47, 0.18) 62%, rgba(8, 25, 47, 0));
}

.hero::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 142px;
  content: "";
  background: linear-gradient(180deg, rgba(8, 25, 47, 0), rgba(8, 25, 47, 0.32) 76%);
}

.hero::after {
  display: none;
}

.hero-grid,
.split,
.project-grid,
.scenario-grid,
.trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  transform: translateY(42px);
}

.eyebrow {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #fff;
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.65rem, 6.4vw, 6rem);
  line-height: 0.95;
  white-space: nowrap;
}

.logo-heading {
  display: block;
  width: min(clamp(340px, 32vw, 500px), 100%);
  max-width: 100%;
  margin: 0 auto 22px;
}

.logo-heading img {
  display: block;
  width: 100%;
  height: clamp(160px, 14vw, 230px);
  object-fit: cover;
  object-position: center;
}

.inline-brand-logo {
  display: inline-flex;
  width: 124px;
  height: 28px;
  vertical-align: -0.38em;
}

.inline-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 3.35vw, 3.55rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-kicker {
  max-width: 810px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 650px;
  font-size: 0.98rem;
  overflow-wrap: break-word;
}

.hero-copy {
  min-width: 0;
  max-width: 810px;
  justify-self: end;
}

.hero-visual {
  width: min(52vw, 980px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 0 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.4);
  transform-origin: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.button.primary {
  border: 0;
  padding: 0 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 42px rgba(47, 110, 211, 0.34);
}

.button.ghost {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  min-height: 410px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(126, 183, 255, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(9, 35, 68, 0.76), rgba(2, 8, 19, 0.72));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-topline {
  display: grid;
  gap: 8px;
}

.panel-topline span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-topline strong {
  max-width: 420px;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

.mini-network {
  position: absolute;
  inset: 90px 28px 130px;
  border: 1px solid rgba(126, 183, 255, 0.18);
  border-radius: 50%;
}

.mini-network::before,
.mini-network::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(126, 183, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.mini-network::after {
  inset: 36%;
}

.mini-network i {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 9px rgba(143, 199, 255, 0.1);
  animation: floatNode 5s ease-in-out infinite;
}

.mini-network i:nth-child(1) {
  top: 14%;
  left: 56%;
}

.mini-network i:nth-child(2) {
  top: 48%;
  left: 18%;
  background: var(--cyan);
  animation-delay: -1.2s;
}

.mini-network i:nth-child(3) {
  right: 20%;
  bottom: 24%;
  animation-delay: -2s;
}

.mini-network i:nth-child(4) {
  right: 42%;
  bottom: 10%;
  background: #fff;
  animation-delay: -3s;
}

.hero-stats {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats small,
.metric-grid span,
.scenario-preview span,
.share-ratio-field span,
.team-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-stats strong,
.metric-grid strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  letter-spacing: -0.05em;
}

.section-intro {
  max-width: 760px;
}

.section-intro.narrow {
  max-width: 800px;
  margin-bottom: 28px;
}

.copy-stack {
  display: grid;
  gap: 8px;
}

.model-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #08192f;
}

.model-story-copy {
  max-width: 680px;
}

.model-story-copy h2 {
  max-width: 760px;
}

.model-story-copy p {
  font-size: 1rem;
}

.model-story-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.model-story-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.58), transparent 42%),
    linear-gradient(180deg, transparent 52%, rgba(2, 8, 19, 0.5));
  pointer-events: none;
}

.model-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.04);
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.model-card,
.scenario-preview,
.team-card,
.cta-card,
.trust-list,
.metric-grid article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.model-card {
  min-height: 220px;
  padding: 22px;
}

.model-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.model-card p,
.team-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.founding-companies-section {
  background: #06162b;
}

.founding-companies {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #08192f;
}

.founding-copy {
  max-width: 680px;
}

.founding-copy h2 {
  max-width: 760px;
}

.founding-copy p {
  font-size: 1rem;
}

.founding-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(9, 35, 68, 0.45), rgba(2, 8, 19, 0.72)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.founding-hero-image {
  display: block;
  width: 100%;
  min-height: 440px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.founding-logo-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.founding-logo-card {
  display: grid;
  min-height: 265px;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.founding-logo-mark {
  display: grid;
  width: 100%;
  height: 172px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.founding-logo-mark img {
  display: block;
  width: min(620px, 198%);
  max-width: none;
  max-height: 164px;
  object-fit: contain;
  object-position: center;
}

.founding-logo-card span {
  color: var(--cyan);
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founding-logo-card p {
  margin: 0;
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.62;
  text-align: center;
}

.model-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(126, 183, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(4, 18, 36, 0.8), rgba(2, 8, 19, 0.94));
}

.model-flow::before {
  display: none;
}

.model-flow-head {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.model-flow-head h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.model-flow-head p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.flow-system {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(360px, 1fr) minmax(250px, 320px);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
  justify-content: center;
}

.flow-list {
  display: grid;
  gap: 22px;
  padding-top: 72px;
}

.flow-list-right .flow-item {
  grid-template-columns: minmax(0, 1fr) 50px;
  text-align: right;
}

.flow-list-right .flow-item span {
  order: 2;
}

.flow-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
}

.flow-item span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--deep);
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 900;
  background: #fff6e9;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.flow-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.flow-item p {
  margin-bottom: 0;
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.43;
}

.flow-wheel {
  position: relative;
  display: grid;
  min-height: 560px;
  margin-top: 8px;
  place-items: center;
}

.flow-orbit {
  position: absolute;
  width: min(460px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle, rgba(47, 110, 211, 0.08), transparent 62%);
  box-shadow:
    inset 0 0 0 52px rgba(47, 110, 211, 0.03),
    0 0 90px rgba(126, 183, 255, 0.08);
}

.flow-orbit::before {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 30px rgba(47, 110, 211, 0.04),
    0 0 90px rgba(126, 183, 255, 0.12);
}

.flow-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(258px, 64vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--navy);
  text-align: center;
  background:
    radial-gradient(circle at 32% 26%, #fffdf7, #f6ebd9 68%, #d7c8ae);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    inset 0 0 0 12px rgba(255, 255, 255, 0.26);
  animation: corePulse 4.6s ease-in-out infinite;
}

.flow-core strong {
  max-width: 196px;
  font-family: var(--heading);
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.flow-core span {
  position: absolute;
  bottom: 26%;
  width: 96px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 34%, rgba(9, 35, 68, 0.18) 34% 68%, rgba(9, 35, 68, 0.6) 68%);
}

.brand-power {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(143, 199, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 64%, rgba(47, 110, 211, 0.22), transparent 30rem),
    linear-gradient(135deg, rgba(2, 8, 19, 0.96), rgba(9, 35, 68, 0.82));
}

.brand-power::before {
  display: none;
}

.brand-power-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.brand-power-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.brand-power-media::before {
  display: none;
}

.brand-power-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 78%;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(2, 8, 19, 0.48)),
    linear-gradient(90deg, rgba(2, 8, 19, 0.2), transparent 48%);
  border-radius: 34px;
  pointer-events: none;
}

.brand-power-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 78%;
  min-height: 0;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 34px;
  transform: scale(1.02);
  animation: imageDrift 12s ease-in-out infinite alternate;
}

.brand-power-overlay {
  position: absolute;
  top: clamp(16px, 4vw, 42px);
  left: 50%;
  z-index: 3;
  width: min(62%, 440px);
  height: clamp(86px, 12vw, 150px);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.brand-power-copy h2 {
  max-width: 780px;
}

.brand-power-copy > p {
  max-width: 740px;
  color: rgba(245, 248, 255, 0.84);
  font-size: 1rem;
}

.location-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(126, 183, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(47, 110, 211, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.pin {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #ff4c38, #ffb23f);
  box-shadow: 0 0 0 10px rgba(255, 178, 63, 0.12);
  transform: rotate(-45deg);
  animation: pinPulse 2.6s ease-in-out infinite;
}

.pin::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: #fff;
}

.location-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--heading);
  font-size: 1rem;
}

.location-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.power-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.power-points article {
  position: relative;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
}

.power-points article::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(126, 183, 255, 0.2), transparent 68%);
}

.power-points span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-blue-soft);
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.power-points strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--heading);
  font-size: 0.98rem;
}

.power-points p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.project-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(126, 183, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 82%, rgba(143, 199, 255, 0.14), transparent 26rem),
    linear-gradient(160deg, rgba(3, 12, 24, 0.98), rgba(9, 35, 68, 0.92));
}

.project-showcase::before {
  display: none;
}

.project-showcase-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.project-media-panel,
.project-copy,
.project-info-card {
  min-width: 0;
}

.project-media-panel {
  display: grid;
  gap: 16px;
}

.project-media-stage {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 183, 255, 0.09), transparent 24rem),
    rgba(2, 8, 19, 0.62);
  box-shadow: var(--shadow);
}

.project-media-stage::before {
  display: none;
}

.project-media-stage::after {
  display: none;
}

.project-media-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}

.project-media-stage.is-switching img {
  opacity: 0;
  transform: none;
}

.project-media-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  padding-bottom: 4px;
  font-size: 2rem;
  line-height: 0.8;
  background: rgba(2, 8, 19, 0.58);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.project-media-arrow:hover,
.project-media-arrow:focus-visible {
  border-color: rgba(126, 183, 255, 0.62);
  background: rgba(47, 110, 211, 0.78);
  transform: translateY(-50%) scale(1.05);
}

.project-media-arrow-prev {
  left: 18px;
}

.project-media-arrow-next {
  right: 18px;
}

.project-media-zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(2, 8, 19, 0.6);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.project-media-zoom:hover,
.project-media-zoom:focus-visible {
  border-color: rgba(126, 183, 255, 0.72);
  background: rgba(47, 110, 211, 0.82);
  transform: translateY(-2px) scale(1.04);
}

.project-media-copy {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 183, 255, 0.16), transparent 18rem),
    rgba(2, 8, 19, 0.34);
  backdrop-filter: blur(16px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.project-media-copy.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.project-media-copy span {
  color: #7eb7ff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-media-copy strong {
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
}

.project-media-copy p {
  margin-bottom: 0;
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.project-media-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.project-media-tab {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(2, 8, 19, 0.35);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.project-media-tab span {
  min-height: 1.9em;
}

.project-media-tab:hover,
.project-media-tab:focus-visible {
  border-color: rgba(126, 183, 255, 0.4);
  transform: translateY(-2px);
}

.project-media-tab.is-active {
  border-color: rgba(126, 183, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(47, 110, 211, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(2, 8, 19, 0.5);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.project-media-tab img {
  width: 100%;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.project-media-tab span {
  color: #dce8f8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.project-copy {
  display: grid;
  gap: 18px;
  align-self: center;
}

.project-copy h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.project-copy > p {
  margin-bottom: 0;
  color: rgba(245, 248, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.project-key-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-key-metrics article {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(126, 183, 255, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.05);
}

.project-key-metrics span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-key-metrics strong {
  display: block;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1;
}

.project-metric-cta {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  border: 0;
  border-radius: 22px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 42px rgba(47, 110, 211, 0.34);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  transition:
    box-shadow 0.2s ease,
    filter 0.2s ease,
    transform 0.2s ease;
}

.project-metric-cta:hover,
.project-metric-cta:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 18px 48px rgba(47, 110, 211, 0.42);
  transform: translateY(-1px);
}

.project-details-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.project-info-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 199, 255, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.05);
}

.project-info-card > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.project-info-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.project-info-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.project-info-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info-card dl div:last-child {
  border-bottom: 0;
}

.project-info-card dt {
  color: var(--muted);
  font-weight: 700;
}

.project-info-card dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  text-align: right;
}

.project-band,
.trust-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(126, 183, 255, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.035);
}

.investor-share-section {
  position: relative;
  overflow: hidden;
  background: #06162b;
}

.investor-share-section::before {
  display: none;
}

.investor-share-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #08192f;
}

.investor-share-content {
  display: grid;
  max-width: 680px;
  gap: 12px;
}

.investor-share-content h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.investor-share-subtitle {
  max-width: 660px;
  margin: -6px 0 4px;
  color: var(--accent-blue-soft);
  font-family: var(--heading);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 900;
  line-height: 1.35;
}

.investor-share-text {
  display: grid;
  gap: 14px;
  max-width: 740px;
}

.investor-share-text p {
  margin: 0;
  color: rgba(245, 248, 255, 0.82);
  font-size: 1rem;
  line-height: 1.62;
}

.investor-share-text strong {
  color: #fff;
  font-weight: 900;
}

.investor-share-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.investor-share-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transform: scale(1.42);
  transform-origin: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.metric-grid article {
  min-height: 145px;
  padding: 22px;
}

.metric-grid strong {
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
}

.scenario-grid {
  align-items: start;
}

.scenario-preview {
  padding: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(143, 199, 255, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.07);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.preview-header strong {
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
}

.scenario-preview dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.scenario-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-preview dt {
  color: var(--muted);
  font-weight: 700;
}

.scenario-preview dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.team-showcase {
  overflow: hidden;
  margin-top: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.team-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.organization-section {
  padding-bottom: 0;
}

.board-showcase {
  width: 100vw;
  margin: 28px 0 0 calc(50% - 50vw);
}

.board-showcase img {
  display: block;
  width: 92%;
  height: auto;
  margin: 0 auto;
}

.trust-grid {
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.trust-list span {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
}

.cta-card {
  max-width: 920px;
  padding: clamp(28px, 6vw, 60px);
  background:
    radial-gradient(circle at 86% 14%, rgba(143, 199, 255, 0.22), transparent 24rem),
    linear-gradient(145deg, rgba(9, 35, 68, 0.94), rgba(2, 8, 19, 0.95));
}

.site-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 30px 18px 62px;
  background: transparent;
}

.footer-logo-strip {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 132px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 19, 0.18);
}

.footer-logo-item {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 132px;
  place-items: center;
  padding: 22px clamp(14px, 2vw, 28px);
}

.footer-logo-item + .footer-logo-item::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(190, 198, 210, 0.34);
}

.footer-logo {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
  object-position: center;
}

.footer-sakarya {
  max-width: 340px;
  height: 104px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.22);
  transform-origin: center;
}

.footer-daim,
.footer-yahya,
.footer-filizfidan {
  max-width: 245px;
  mix-blend-mode: screen;
}

.footer-daim {
  object-position: 52% center;
}

.footer-yahya {
  object-position: 50% center;
}

.footer-filizfidan {
  object-position: 53% center;
}

.model-story,
.founding-companies,
.model-flow,
.brand-power,
.project-showcase,
.trust-section,
.cta-section,
.organization-section {
  background: transparent;
}

.model-flow::before,
.brand-power::before,
.project-showcase::before {
  display: none;
}

.request-dialog {
  width: min(1120px, calc(100% - 24px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: #fff;
  background: transparent;
}

.request-dialog::backdrop {
  background: rgba(2, 8, 19, 0.82);
  backdrop-filter: blur(12px);
}

.gallery-dialog {
  width: min(1280px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: #fff;
  background: transparent;
}

.gallery-dialog::backdrop {
  background: rgba(2, 8, 19, 0.9);
  backdrop-filter: blur(14px);
}

.gallery-shell {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 12%, rgba(126, 183, 255, 0.14), transparent 24rem),
    linear-gradient(145deg, #071b35, #020813 70%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  background: rgba(2, 8, 19, 0.62);
  backdrop-filter: blur(12px);
}

.gallery-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  margin: 0;
}

.gallery-figure img {
  width: 100%;
  height: min(72vh, 720px);
  min-height: 0;
  object-fit: contain;
  background: rgba(2, 8, 19, 0.38);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.gallery-dialog.is-switching .gallery-figure img {
  opacity: 0;
  transform: scale(0.985);
}

.gallery-caption {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2vw, 28px) clamp(22px, 3vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 8, 19, 0.5);
}

.gallery-caption span {
  color: var(--accent-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-caption strong {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
}

.gallery-caption p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.gallery-arrow {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  padding-bottom: 4px;
  font-size: 2.35rem;
  line-height: 0.8;
  background: rgba(2, 8, 19, 0.62);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: rgba(126, 183, 255, 0.72);
  background: rgba(47, 110, 211, 0.8);
  transform: scale(1.05);
}

.gallery-arrow-prev {
  left: 22px;
}

.gallery-arrow-next {
  right: 22px;
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 183, 255, 0.18), transparent 24rem),
    linear-gradient(145deg, #092344, #020813);
}

.dialog-side {
  padding: 30px;
  background: transparent;
}

.dialog-side h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.dialog-disclaimer {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.14);
}

.request-form {
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 28px;
}

.request-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.request-form legend {
  padding: 0 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.field-label-line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
}

.field-label-line small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.18;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.request-form input {
  min-height: 46px;
  padding: 0 13px;
}

.request-form textarea {
  resize: vertical;
  padding: 13px;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(126, 183, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(126, 183, 255, 0.12);
}

.calculator-fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.share-ratio-field {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.share-ratio-field output {
  display: flex;
  align-items: center;
  min-height: 46px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.full-field {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-note.success,
.form-note.error {
  padding: 12px 14px;
  border-radius: 14px;
}

.form-note.success {
  color: #d8ffe9;
  background: rgba(38, 166, 97, 0.22);
}

.form-note.error {
  color: #ffe3e3;
  background: rgba(199, 61, 61, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stepsAmbientGlow {
  0% {
    opacity: 0.58;
    transform: translate3d(-1.2%, 0, 0) scale(0.985);
  }

  100% {
    opacity: 0.94;
    transform: translate3d(1.2%, 0, 0) scale(1.015);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.06) translate3d(-1.2%, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(1.2%, -1%, 0);
  }
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 178, 63, 0.1);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(255, 178, 63, 0.02);
  }
}

@media (max-width: 1000px) {
  .site-header {
    top: 0;
    width: 100%;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 12px 24px 10px;
  }

  .main-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-end;
    gap: 0;
    overflow-x: auto;
    margin-right: 0;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .main-nav a,
  .nav-link-button {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .nav-action {
    grid-column: auto;
    grid-row: auto;
    width: 230px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .split,
  .model-story,
  .founding-companies,
  .flow-system,
  .brand-power-grid,
  .investor-share-grid,
  .project-grid,
  .scenario-grid,
  .trust-grid,
  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    transform: translateY(-12px);
  }

  .hero-visual {
    width: min(76vw, 520px);
    margin: 8px auto 0;
  }

  .hero-visual img {
    transform: scale(1.25);
  }

  .model-cards,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-fieldset,
  .request-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .flow-system {
    max-width: 760px;
    margin: 0 auto;
    gap: 24px;
  }

  .flow-wheel {
    min-height: 420px;
    margin-top: 0;
    order: -1;
  }

  .flow-list {
    padding-top: 0;
  }

  .flow-list-right .flow-item,
  .flow-item {
    grid-template-columns: 48px minmax(0, 1fr);
    text-align: left;
  }

  .flow-list-right .flow-item span {
    order: 0;
  }

  .project-showcase-shell {
    grid-template-columns: 1fr;
  }

  .project-copy {
    order: -1;
  }

  .project-copy h2 {
    max-width: 18ch;
  }

  .project-media-stage,
  .project-media-stage img {
    min-height: 0;
  }

  .project-media-tabs {
    grid-template-columns: repeat(7, minmax(132px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .project-media-tabs::-webkit-scrollbar {
    display: none;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .brand-power-media {
    min-height: 520px;
  }

  .brand-power-photo {
    height: 76%;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }

  .site-header {
    top: 0;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .brand {
    min-width: 0;
    max-width: none;
    gap: 8px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-logo {
    width: 164px;
    height: 60px;
    object-fit: contain;
    transform: scale(1.16);
  }

  .brand-logo,
  .hero-visual img,
  .founding-logo-mark img,
  .footer-logo {
    mix-blend-mode: screen;
  }

  .hero-visual,
  .founding-logo-mark,
  .footer-logo-item {
    background: transparent;
  }

  .brand-copy strong {
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .main-nav {
    display: none;
  }

  .nav-action {
    display: inline-flex;
    width: 112px;
    min-height: 34px;
    border-radius: 6px;
    padding: 0 8px;
    font-size: 0.56rem;
  }

  .section-shell {
    width: min(1160px, calc(100% - 22px));
  }

  .section-pad {
    padding: 58px 0;
  }

  .investor-share-grid {
    gap: 24px;
  }

  .investor-share-subtitle {
    font-size: 1rem;
  }

  .investor-share-text p {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-grid {
    transform: translateY(20px);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .logo-heading {
    width: min(76vw, 330px);
    max-width: 100%;
    margin: 0 auto 18px;
  }

  .logo-heading img {
    width: 100%;
    height: clamp(120px, 28vw, 168px);
    object-fit: cover;
  }

  .inline-brand-logo {
    width: 104px;
    height: 24px;
  }

  h2 {
    font-size: clamp(1.55rem, 8.5vw, 2.45rem);
  }

  .hero-copy,
  .hero-kicker,
  .hero-text {
    max-width: 560px;
  }

  .hero-visual {
    width: min(88vw, 430px);
  }

  .hero-visual img {
    transform: scale(1.15);
  }

  .hero-panel {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .panel-topline strong {
    font-size: 1.75rem;
  }

  .mini-network {
    display: none;
  }

  .hero-stats {
    position: static;
    margin-top: 20px;
  }

  .hero-stats article {
    padding: 13px;
  }

  .hero-stats strong {
    font-size: 1.18rem;
  }

  .hero-stats,
  .metric-grid,
  .model-story,
  .founding-companies,
  .model-cards,
  .investor-share-grid,
  .founding-logo-grid,
  .team-grid,
  .trust-list,
  .calculator-fieldset,
  .request-form fieldset {
    grid-template-columns: 1fr !important;
  }

  .scenario-preview dl div,
  .preview-header {
    display: grid;
  }

  .model-story-visual {
    min-height: 300px;
    border-radius: 24px;
  }

  .investor-share-visual {
    min-height: 300px;
    border-radius: 24px;
  }

  .model-story-visual img {
    min-height: 300px;
    object-position: 60% 50%;
  }

  .investor-share-visual img {
    min-height: 300px;
  }

  .founding-visual {
    min-height: 300px;
    border-radius: 22px;
  }

  .founding-hero-image {
    min-height: 300px;
    aspect-ratio: 4 / 5;
    object-position: center;
  }

  .founding-logo-card {
    min-height: auto;
  }

  .model-flow-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .model-flow-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .flow-system {
    gap: 20px;
  }

  .flow-list {
    gap: 12px;
  }

  .flow-item {
    gap: 11px;
  }

  .flow-item span {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .flow-item h3 {
    font-size: 0.9rem;
  }

  .flow-item p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .flow-wheel {
    min-height: 286px;
    overflow: hidden;
  }

  .flow-orbit {
    width: min(280px, 84vw);
  }

  .flow-core {
    width: min(170px, 54vw);
  }

  .flow-core strong {
    max-width: 132px;
    font-size: 0.92rem;
  }

  .flow-core span {
    bottom: 24%;
    width: 64px;
    height: 4px;
  }

  .project-media-stage,
  .project-media-stage img {
    min-height: 0;
    border-radius: 24px;
  }

  .project-media-stage::before {
    inset: 10px;
    border-radius: 18px;
  }

  .project-media-copy {
    padding: 16px;
    border-radius: 18px;
    min-height: auto;
  }

  .project-media-arrow {
    width: 36px;
    height: 36px;
    padding-bottom: 3px;
    font-size: 1.65rem;
  }

  .project-media-arrow-prev {
    left: 10px;
  }

  .project-media-arrow-next {
    right: 10px;
  }

  .project-media-zoom {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .project-media-copy strong {
    font-size: 1.08rem;
  }

  .project-media-copy p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .project-media-tabs {
    grid-template-columns: repeat(7, minmax(116px, 1fr));
    gap: 10px;
  }

  .project-media-tab {
    padding: 8px;
    border-radius: 16px;
  }

  .project-media-tab img {
    height: 72px;
    border-radius: 11px;
  }

  .project-media-tab span {
    font-size: 0.72rem;
  }

  .gallery-dialog {
    width: min(100vw - 14px, 1000px);
    max-height: calc(100vh - 14px);
    border-radius: 20px;
  }

  .gallery-shell {
    min-height: calc(100vh - 14px);
    border-radius: 20px;
  }

  .gallery-figure img {
    height: min(66vh, 620px);
  }

  .gallery-caption {
    padding: 16px;
  }

  .gallery-caption strong {
    font-size: 1.25rem;
  }

  .gallery-caption p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .gallery-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .gallery-arrow {
    top: 39%;
    width: 40px;
    height: 40px;
    font-size: 1.75rem;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .project-copy {
    gap: 14px;
  }

  .project-copy h2 {
    max-width: none;
  }

  .project-key-metrics {
    gap: 10px;
  }

  .project-key-metrics article,
  .project-info-card {
    padding: 16px;
    border-radius: 20px;
  }

  .project-key-metrics article {
    min-height: 118px;
  }

  .project-key-metrics span {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  .project-key-metrics strong {
    font-size: 1.42rem;
  }

  .project-metric-cta {
    min-height: 62px;
    border-radius: 18px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .project-info-card h3 {
    font-size: 1.08rem;
  }

  .project-info-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .project-info-card dd {
    text-align: left;
  }

  .brand-power-media {
    min-height: 430px;
    border-radius: 0;
  }

  .brand-power-media::before {
    display: none;
  }

  .brand-power-media::after {
    height: 74%;
    border-radius: 24px;
  }

  .brand-power-photo {
    height: 74%;
    border-radius: 24px;
  }

  .brand-power-overlay {
    top: 6px;
    width: min(78%, 300px);
    height: 92px;
  }

  .location-card,
  .power-points {
    grid-template-columns: 1fr;
  }

  .location-card {
    gap: 12px;
    margin: 22px 0;
    padding: 16px;
  }

  .pin {
    width: 34px;
    height: 34px;
  }

  .pin::before {
    top: 9px;
    left: 9px;
    width: 16px;
    height: 16px;
  }

  .power-points article {
    min-height: auto;
    padding: 16px;
  }

  .power-points span {
    margin-bottom: 18px;
  }

  .dialog-side,
  .request-form {
    padding: 22px;
  }

  .site-footer {
    padding: 22px 14px 42px;
  }

  .footer-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 112px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-logo-item {
    min-height: 112px;
    padding: 14px 12px;
  }

  .footer-logo-item + .footer-logo-item::before {
    display: none;
  }

  .footer-logo-item:nth-child(odd) {
    border-right: 1px solid rgba(190, 198, 210, 0.26);
  }

  .footer-logo-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(190, 198, 210, 0.26);
  }

  .footer-logo {
    height: 66px;
  }

  .footer-sakarya {
    max-width: 250px;
    height: 82px;
    transform: scale(1.22);
  }

  .footer-daim,
  .footer-yahya,
  .footer-filizfidan {
    max-width: 196px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
