:root {
  --bg: #f4f8fa;
  --surface: #ffffff;
  --text: #232a34;
  --muted: #5b6773;
  --line: #e5eef2;
  --brand: #107495;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

main {
  overflow-x: clip;
  overflow-y: visible;
}

main section {
  max-width: 100%;
}

.site-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(244, 248, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(16, 116, 149, 0.3);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #0d5c76;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(16, 116, 149, 0.4);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 51px;
  padding: 12px;
}

.site-logo {
  width: 96px;
  height: 46px;
  display: inline-flex;
  align-items: center;
}

.site-logo img,
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  color: #232a34;
}

.site-nav-links a {
  transition: color 0.2s ease;
  position: relative;
}

.site-nav-links a:hover {
  color: var(--brand);
}

.mobile-menu-toggle,
.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #232a34;
  border-radius: 2px;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 17, 23, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1000;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 88vw);
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 40px rgba(0, 0, 0, .1);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 1001;
  padding: 20px;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.mobile-nav-links a {
  padding: 12px 4px;
  font-size: 15px;
  line-height: 20px;
  color: #232a34;
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 16px;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-drawer {
  transform: translateX(0);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-radius: 39px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 3px 3px 3px 10px;
  position: relative;
}

.nav-lang-icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 4px;
}

.nav-lang a {
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1;
}

.nav-lang a:hover {
  color: var(--text);
}

.nav-lang a.is-active {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 116, 149, 0.25);
}

.mobile-nav-lang {
  display: flex;
  gap: 8px;
  padding: 16px 0;
}

.mobile-nav-lang a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-lang a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-nav-lang a.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 116, 149, 0.2);
}

.home-page {
  background: var(--bg);
}

.home-hero-wrap {
  padding: 80px 0 0;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.home-hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
}

.home-sub {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  font-style: italic;
  line-height: 24px;
}

.home-chevron {
  margin-top: 8px;
  color: #5b6773;
  opacity: .5;
  font-size: 26px;
}

.home-orb-wrap {
  height: 460px;
  background: var(--bg);
}

.home-orb {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-orb-video {
  width: 426px;
  height: 420px;
  object-fit: cover;
  display: block;
  mix-blend-mode: darken;
}


.home-strategy {
  background: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  padding: 120px 0;
}

.home-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.home-heading-row h2 {
  margin: 0;
  max-width: 870px;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.home-heading-row p {
  margin: 0;
  max-width: 322px;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
  text-align: right;
}

.heading-line {
  width: 83px;
  height: 2px;
  border-radius: 14px;
  background: var(--brand);
  margin-top: 8px;
}

.strategy-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.strategy-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  min-height: 156px;
}

.strategy-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 16px;
}

.strategy-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}

.strategy-card p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.home-projects {
  background: var(--bg);
  padding: 120px 0;
  overflow: visible;
}

.home-projects-grid {
  display: grid;
  grid-template-columns: 261px 1fr;
  gap: 40px;
  align-items: start;
  overflow: visible;
}

.projects-side {
  position: sticky;
  top: 128px;
  align-self: start;
}

.projects-side h2 {
  margin: 0;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: .48px;
}

.projects-side p {
  margin: 8px 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.projects-side a {
  color: #2f5da8;
  font-size: 14px;
  line-height: 17px;
}

.projects-side-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.projects-side-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.projects-list {
  display: grid;
  gap: 60px;
}

.projects-list-stack {
  display: block;
  position: relative;
  padding-bottom: 40px;
}

.project-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 251px 1fr;
  gap: 20px;
  align-items: start;
}

.projects-list-stack .project-item {
  position: sticky;
  top: calc(120px + (var(--stack-index) * 30px));
  z-index: calc(100 + var(--stack-index));
  box-shadow: 0 -15px 40px rgba(0, 0, 0, .08);
  margin-bottom: 30vh;
  will-change: transform, filter;
  transform-origin: center top;
}

.projects-list-stack .project-item:last-child {
  margin-bottom: 0;
}

.project-text span {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.project-text {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.project-text h3 {
  margin: auto 0 8px;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.project-text p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #5b6773;
}

.project-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.project-media-wrap {
  width: 100%;
  height: 420px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.project-media-wrap>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.project-media-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 192px;
  height: 165px;
  object-fit: cover;
}

.home-tech {
  background: #fff;
  padding: 120px 0;
}

.home-tech-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-tech-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.home-tech-head p {
  max-width: 381px;
  margin: 8px 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
  font-weight: 500;
}

.tech-circles {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px;
}

.tech-circle {
  height: 240px;
  border: 1px solid var(--line);
  border-radius: 171px;
  padding: 36px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-circle h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}

.tech-circle p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.home-org {
  background: var(--bg);
  padding: 120px 0;
}

.home-org-grid {
  display: grid;
  grid-template-columns: 374px 591px;
  justify-content: space-between;
  gap: 24px;
}

.home-org-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-org-titlebox {
  border-left: 2px solid var(--brand);
  padding-left: 16px;
}

.home-org-titlebox h2 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.home-org-titlebox h2 span {
  color: #5b6773;
}

.home-org-titlebox p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.home-org-list {
  display: grid;
  gap: 16px;
}

.home-org-list p {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
}

.home-org-cards {
  display: grid;
  grid-template-columns: repeat(2, 285px);
  gap: 20px;
}

.org-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  min-height: 164px;
}

.org-card small {
  display: block;
  color: #5b6773;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 8px;
}

.org-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}

.org-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.home-why {
  background: #fff;
  padding: 120px 0;
}

.home-why-grid {
  display: grid;
  grid-template-columns: 388px 1fr;
  gap: 32px;
  align-items: center;
}

.why-left h2 {
  margin: 0;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: .48px;
}

.why-left h2 span {
  color: var(--brand);
}

.why-left p {
  margin: 8px 0 32px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.why-right {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: flex-end;
}

.why-right img {
  width: 320px;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.why-list {
  display: grid;
}

.why-item {
  background: #fff;
  border-bottom: 1px solid #d4d6d7;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 116px;
}

.why-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 2px;
}

.why-item div {
  display: grid;
  gap: 8px;
}

.why-item span {
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.why-item p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.why-item:last-child {
  border-bottom: 0;
}

.why-item:last-child {
  min-height: 132px;
}

.site-footer {
  margin-top: 0;
  background: linear-gradient(90deg, #0e2a5c, #113473);
  border-top: 8px solid var(--line);
  color: #9ba7b4;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 170px 130px 150px;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-contact {
  gap: 20px;
}

.footer-logo-img {
  width: 110px;
  height: auto;
}

.footer-bullet-list {
  display: grid;
  gap: 4px;
}

.footer-bullet-list li {
  color: #9ba7b4;
  font-size: 13px;
  line-height: 18px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 20px;
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand);
  opacity: 0.85;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-links a {
  color: #9ba7b4;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  padding: 9px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  line-height: 0;
  font-size: 0;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-socials svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.25s ease;
}

.footer-socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 116, 149, 0.35);
}

.footer-socials a:hover svg {
  fill: #fff;
}

.footer-grid h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 4px;
  color: #9ba7b4;
  font-size: 13px;
  line-height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 238, 242, .25);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 16px;
  padding: 16px 0 28px;
}

.page {
  padding: 24px 0 64px;
}

.hero {
  text-align: center;
  padding: 56px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--line);
  border-radius: 56px;
  font-size: 14px;
  margin-bottom: 16px;
}

.section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  margin-top: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
}

.section-head p {
  margin: 0;
  color: #5b6773;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 1.6;
}

.about-page {
  padding-bottom: 0;
}

.about-hero {
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  margin: 0 auto 16px;
  max-width: 842px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
}

.about-hero h1 span {
  color: #107495;
}

.about-hero p {
  margin: 0 auto 24px;
  max-width: 900px;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.about-position {
  display: grid;
  grid-template-columns: 739px 366px;
  justify-content: space-between;
  align-items: start;
}

.about-position>img {
  width: 739px;
  height: 481px;
  object-fit: cover;
}

.about-position article {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.about-position h2,
.about-resp-text h2 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.2;
}

.about-position p,
.about-resp-text p {
  margin: 0 0 10px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.about-model .card {
  min-height: 156px;
}

.about-responsibility {
  display: grid;
  grid-template-columns: 483px 390px;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.about-resp-card {
  background: #f4f8fa;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.about-members .section-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-members .section-head.center p {
  max-width: 900px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 24px;
  justify-content: center;
}

.member-card img {
  width: 280px;
  height: 299px;
  object-fit: cover;
  margin-bottom: 16px;
}

.member-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.member-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 16px;
}

@media (max-width: 1200px) {
  .site-header-wrap {
    padding-top: 20px;
  }

  .site-nav-links,
  .site-nav-end {
    display: none;
  }

  .site-nav {
    min-height: 64px;
    border-radius: 20px;
    padding: 10px 12px;
  }

  .site-logo {
    width: 88px;
    height: 42px;
  }

  .mobile-menu-toggle,
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: flex;
  }

  .home-heading-row,
  .home-projects-grid,
  .home-org-grid,
  .home-why-grid,
  .about-position,
  .about-responsibility {
    grid-template-columns: 1fr;
  }

  .home-heading-row p {
    text-align: left;
    max-width: unset;
  }

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

  .strategy-cards,
  .tech-circles,
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-right img {
    width: 100%;
    max-width: 320px;
  }

  .about-position>img {
    width: 100%;
    height: auto;
  }

  .member-card img {
    width: 100%;
    height: 320px;
  }

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

  .projects-side {
    position: static;
    top: auto;
  }

  .projects-list-stack .project-item {
    top: calc(96px + (var(--stack-index) * 24px));
    margin-bottom: 25vh;
  }
}

@media (max-width: 800px) {
  .site-container {
    width: min(1200px, calc(100% - 24px));
  }

  .home-org-cards,
  .strategy-cards,
  .tech-circles,
  .members-grid {
    grid-template-columns: 1fr;
  }

  .project-item {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .project-item img {
    order: -1;
    height: 200px;
    border-radius: 8px;
  }

  .project-text {
    min-height: auto;
  }

  .project-text h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 8px 0 6px;
  }

  .project-text p {
    font-size: 13px;
    line-height: 20px;
  }

  .project-media-wrap {
    order: -1;
    height: 200px;
  }

  .home-hero h1,
  .about-hero h1 {
    line-height: 1.25;
  }

  .section {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .projects-list-stack .project-item {
    position: sticky;
    top: calc(72px + (var(--stack-index) * 16px));
    z-index: calc(100 + var(--stack-index));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .05);
    margin-bottom: 20vh;
    will-change: transform, filter;
    transform-origin: center top;
  }
}

.about-page {
  background: #f4f8fa;
}

.about-hero-section {
  background: #f4f8fa;
  padding: 80px 0;
}

.about-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-hero-inner h1 {
  margin: 0;
  width: min(842px, 100%);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
}

.about-hero-inner h1 span {
  color: #107495;
}

.about-hero-inner p {
  margin: 0;
  width: min(1200px, 100%);
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.about-position-section {
  background: #fff;
  padding: 120px 0;
}

.about-position-grid {
  display: grid;
  grid-template-columns: 739px 366px;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.about-position-grid>img {
  width: 739px;
  height: 481px;
  object-fit: cover;
}

.about-position-text {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.about-position-text h2 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.about-position-text p {
  margin: 0 0 10px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.about-model-section {
  background: #f4f8fa;
  padding: 120px 0;
}

.about-model-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.about-model-head h2 {
  margin: 0;
  width: 820px;
  color: #232a34;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.about-model-head p {
  margin: 0;
  width: 372px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

.about-model-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 285px);
  gap: 20px;
}

.about-model-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  min-height: 156px;
  padding: 20px;
}

.about-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: #232a34;
  display: block;
}

.about-icon-lg {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
}

.about-model-card h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
}

.about-model-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.about-responsibility-section {
  background: #fff;
  padding: 120px 0;
}

.about-responsibility-grid {
  display: grid;
  grid-template-columns: 483px 390px;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.about-resp-text h2 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.about-resp-text p {
  margin: 0 0 8px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.about-resp-card {
  background: #f4f8fa;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.about-resp-card h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
}

.about-resp-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 16px;
}

.about-members-section {
  background: #f4f8fa;
  padding: 120px 0;
}

.about-members-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-members-head h2 {
  margin: 0;
  color: #232a34;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: .48px;
}

.about-members-head p {
  margin: 0;
  width: min(1200px, 100%);
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.about-members-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 220px);
  gap: 24px;
  justify-content: center;
}

.about-member-card {
  width: 220px;
  max-width: 100%;
}

.about-member-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.about-member-card h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 18px;
  line-height: 22px;
}

.about-member-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 16px;
}

@media (max-width: 1200px) {

  .about-position-grid,
  .about-model-cards,
  .about-responsibility-grid,
  .about-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .about-position-grid>img,
  .about-member-card img {
    width: 100%;
    height: 340px;
  }

  .about-member-card {
    width: 100%;
  }

  .about-model-head {
    flex-direction: column;
    gap: 12px;
  }

  .about-model-head h2,
  .about-model-head p {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 800px) {

  .about-model-cards,
  .about-members-grid,
  .about-position-grid,
  .about-responsibility-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-inner h1 {
    line-height: 1.25;
  }
}

/* Investor Relations */
.investor-page {
  background: #f4f8fa;
}

.investor-hero {
  padding: 80px 0;
  background: #f4f8fa;
}

.investor-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.investor-chip {
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.investor-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
}

.investor-hero p {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.investor-chevron {
  margin-top: 8px;
  opacity: .5;
  width: 24px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.investor-chevron img {
  width: 24px;
  height: 104px;
  object-fit: contain;
}

.investor-overview {
  background: #fff;
  padding: 120px 0;
}

.investor-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.investor-lined-title {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.investor-lined-title h2 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .36px;
}

.investor-lined-title h2 span {
  color: #5b6773;
}

.investor-lined-title p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.investor-overview-text {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -.24px;
}

.investor-ecosystem {
  padding: 120px 0;
  background: #f4f8fa;
}

.investor-centered-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.investor-centered-head h2,
.investor-centered-head h3 {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.investor-centered-head-sm h3 {
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.investor-centered-head p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}

.investor-ecosystem-map {
  margin-top: 24px;
  width: min(1036px, 100%);
  height: auto;
  mix-blend-mode: darken;
}

.investor-stats {
  background: #fff;
  padding: 120px 0;
}

.investor-stats-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.investor-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 14px 16px;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  box-shadow: 0 8px 24px rgba(16, 116, 149, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  animation: investorStatIn .5s ease both;
}

.investor-ring-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 116, 149, .12);
  border-color: #cfe3ec;
}

.investor-ring {
  --size: 170px;
  --thickness: 12px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #fff calc(100% - var(--thickness)), transparent 0),
    conic-gradient(#107495 calc(var(--v, var(--p)) * 1%), #d9dde2 0);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(16, 116, 149, .08);
}

.investor-ring span {
  font-family: "Manrope", "Inter", sans-serif;
  color: #000614;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.investor-ring-card h4 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  color: #000614;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.1px;
  text-align: center;
}

.investor-stats-grid .investor-ring-card:nth-child(1) {
  animation-delay: .03s;
}

.investor-stats-grid .investor-ring-card:nth-child(2) {
  animation-delay: .08s;
}

.investor-stats-grid .investor-ring-card:nth-child(3) {
  animation-delay: .13s;
}

.investor-stats-grid .investor-ring-card:nth-child(4) {
  animation-delay: .18s;
}

.investor-stats-grid .investor-ring-card:nth-child(5) {
  animation-delay: .23s;
}

@keyframes investorStatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.investor-focus {
  background: #f4f8fa;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  padding: 120px 0;
}

.investor-head-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.investor-head-left h3 {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.investor-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.investor-focus-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  padding: 20px;
}

.investor-focus-card>span {
  display: none;
}

.investor-focus-card>img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  object-fit: contain;
}

.investor-focus-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}

.investor-focus-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.investor-people,
.investor-advisors,
.investor-docs,
.investor-contact {
  padding: 120px 0;
  background: #fff;
}

.investor-advisors,
.investor-docs,
.investor-docs-alt,
.investor-model,
.investor-contact {
  background: #f4f8fa;
}

.investor-people-grid {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.investor-people-grid.four {
  grid-template-columns: repeat(4, 270px);
  justify-content: center;
}

.investor-people-grid.six {
  grid-template-columns: repeat(6, 270px);
  overflow-x: auto;
  padding-bottom: 6px;
}

.investor-team-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 44px;
  justify-content: center;
}

.investor-team-card img {
  width: 280px;
  height: 299px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.investor-team-card h4 {
  margin: 16px 0 8px;
  color: #232a34;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.investor-team-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 16px;
}

.investor-person-card {
  width: 270px;
  height: 310px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.investor-person-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .24) 51%, rgba(0, 0, 0, .8) 83%);
}

.investor-person-card div {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.investor-person-card small,
.investor-person-card h4,
.investor-person-card p {
  margin: 0;
  color: #fff;
}

.investor-person-card small {
  font-size: 12px;
  line-height: 16px;
}

.investor-person-card h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.investor-person-card p {
  font-size: 14px;
  line-height: 20px;
  white-space: normal;
  letter-spacing: -1.2px;
}

.investor-carousel-head,
.investor-docs-wrap {
  display: grid;
  grid-template-columns: 269px 1fr;
  gap: 32px;
  align-items: start;
}

.investor-docs-wrap.first {
  grid-template-columns: 246px 1fr;
}

.investor-docs-wrap.second {
  grid-template-columns: 290px 1fr;
}

.investor-lined-title.small h2 {
  margin-bottom: 0;
}

.investor-mini-arrows {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.investor-mini-arrows button {
  border: 1px solid #107495;
  width: 44px;
  height: 44px;
  border-radius: 33px;
  background: #fff;
  color: #107495;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 18px;
  line-height: 1;
}

.investor-mini-arrows button:last-child {
  background: #5b6773;
  color: #fff;
  border-color: #5b6773;
}

.investor-mini-arrows button:disabled {
  background: #fff;
  color: #9ba7b4;
  border-color: #d9e4ea;
  opacity: .7;
  cursor: not-allowed;
}

.investor-mini-arrows button:hover {
  filter: brightness(.97);
}

.investor-mini-arrows button:focus-visible {
  outline: 2px solid #107495;
  outline-offset: 2px;
}

.investor-mini-arrows button {
  cursor: pointer;
}

.investor-slider-track {
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  padding-right: 8px;
}

.investor-model {
  padding: 120px 0;
}

.investor-model-wrap {
  display: flex;
  justify-content: center;
}

.investor-model-text {
  width: 480px;
  max-width: 100%;
  display: grid;
  gap: 20px;
}

.investor-model-text h3 {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
}

.investor-model-text > p {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.investor-model-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.investor-model-text li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 16px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.investor-model-text li:hover {
  background: #fff;
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(16, 116, 149, 0.08);
}

.investor-model-text li > span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 116, 149, 0.1), rgba(16, 116, 149, 0.05));
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.investor-model-text li:hover > span {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.investor-model-text strong {
  display: block;
  color: #232a34;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 4px;
}

.investor-model-text em {
  display: block;
  color: #5b6773;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

.investor-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 284px);
  gap: 16px;
}

.investor-doc-grid.four {
  grid-template-columns: repeat(4, 284px);
}

.investor-doc-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  overflow: hidden;
  width: 284px;
  height: 421px;
  display: flex;
  flex-direction: column;
}

.investor-doc-card img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}

.investor-doc-card>div {
  background: #f4f8fa;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.investor-doc-card small {
  color: #232a34;
  font-size: 12px;
  line-height: 16px;
}

.investor-doc-card h4 {
  margin: 0;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.doc-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.doc-actions a {
  height: 36px;
  border-radius: 8px;
  background: #107495;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
}

.investor-empty-state {
  margin-top: 8px;
  padding: 40px 28px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  width: 100%;
}

.investor-empty-state h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 28px;
  color: #232a34;
}

.investor-empty-state p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.investor-contact-card {
  width: min(893px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
  padding: 43px 132px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.investor-contact-card h3 {
  margin: 0;
  color: #232a34;
  font-size: 36px;
  line-height: 44px;
}

.investor-contact-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.investor-mail-btn {
  margin-top: 8px;
  background: #107495;
  color: #fff;
  border-radius: 39px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.investor-mail-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 1200px) {

  .investor-overview-grid,
  .investor-carousel-head,
  .investor-docs-wrap,
  .investor-focus-grid,
  .investor-doc-grid,
  .investor-stats-grid {
    grid-template-columns: 1fr;
  }

  .investor-people-grid.four,
  .investor-people-grid.six {
    grid-template-columns: repeat(2, 270px);
    justify-content: center;
  }

  .investor-team-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 20px;
  }

  .investor-team-card img {
    width: 100%;
    height: 320px;
  }

  .investor-team-card h4 {
    font-size: 26px;
  }

  .investor-team-card p {
    font-size: 18px;
  }

  .investor-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .investor-ring {
    --size: 148px;
  }

  .investor-ring span {
    font-size: 42px;
  }

  .investor-ring-card h4 {
    font-size: 16px;
  }

  .investor-doc-card,
  .investor-person-card {
    width: 100%;
  }

  .investor-doc-grid {
    justify-items: center;
  }

  .investor-doc-card {
    max-width: 360px;
  }

  .investor-contact-card {
    padding: 28px;
  }
}

@media (max-width: 800px) {

  .investor-overview,
  .investor-ecosystem,
  .investor-stats,
  .investor-focus,
  .investor-people,
  .investor-advisors,
  .investor-model,
  .investor-docs,
  .investor-contact {
    padding: 72px 0;
  }

  .investor-hero h1,
  .investor-lined-title h2,
  .investor-model-text h3,
  .investor-contact-card h3 {
    font-size: 34px;
    line-height: 1.25;
  }

  .investor-people-grid.four,
  .investor-people-grid.six {
    grid-template-columns: 1fr;
  }

  .investor-carousel-head,
  .investor-docs-wrap {
    gap: 20px;
  }

  .investor-lined-title {
    min-width: 0;
    width: 100%;
  }

  .investor-lined-title p {
    width: 100%;
    max-width: 100%;
  }

  .investor-mini-arrows {
    margin-top: 10px;
  }

  .investor-team-grid {
    grid-template-columns: 1fr;
  }

  .investor-team-card img {
    height: auto;
  }

  .investor-team-card h4 {
    font-size: 22px;
  }

  .investor-team-card p {
    font-size: 15px;
    line-height: 1.4;
  }

  .investor-stats .investor-centered-head h3 {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .investor-stats-grid {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .investor-stats-grid .investor-ring-card {
    flex: 0 0 min(72vw, 230px);
    scroll-snap-align: start;
    gap: 14px;
    padding: 12px 10px 8px;
    border: 1px solid #e5eef2;
    border-radius: 14px;
    background: #fff;
    opacity: 1;
  }

  .investor-ring {
    --size: 132px;
  }

  .investor-ring span {
    font-size: 34px;
    letter-spacing: -.8px;
  }

  .investor-ring-card h4 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .investor-advisors .investor-carousel-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .investor-advisors .investor-lined-title {
    border-left: 0;
    background: #fff;
    border: 1px solid #e5eef2;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
  }

  .investor-advisors .investor-lined-title h2 {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: .2px;
  }

  .investor-advisors .investor-mini-arrows {
    justify-content: flex-end;
    margin-top: 12px;
  }

  .investor-advisors .investor-mini-arrows button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .investor-advisors .investor-people-grid.six {
    width: calc(100% + 4px);
    margin-left: -2px;
    padding: 2px 2px 10px;
    gap: 12px;
  }

  .investor-advisors .investor-person-card {
    width: min(84vw, 280px);
    height: 300px;
  }

  .investor-docs-wrap.first,
  .investor-docs-wrap.second {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .investor-docs-wrap.first .investor-lined-title,
  .investor-docs-wrap.second .investor-lined-title {
    border-left: 0;
    background: #fff;
    border: 1px solid #e5eef2;
    border-radius: 16px;
    padding: 16px;
  }

  .investor-docs-wrap.first .investor-lined-title h2,
  .investor-docs-wrap.second .investor-lined-title h2 {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: .2px;
  }

  .investor-docs-wrap.first .investor-lined-title p,
  .investor-docs-wrap.second .investor-lined-title p {
    font-size: 13px;
    line-height: 18px;
  }

  .investor-docs-wrap.first .investor-mini-arrows,
  .investor-docs-wrap.second .investor-mini-arrows {
    justify-content: flex-end;
    margin-top: 12px;
  }

  .investor-docs-wrap.first .investor-mini-arrows button,
  .investor-docs-wrap.second .investor-mini-arrows button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .investor-docs-wrap.first .investor-doc-grid,
  .investor-docs-wrap.second .investor-doc-grid {
    width: calc(100% + 4px);
    margin-left: -2px;
    padding: 2px 2px 10px;
    gap: 12px;
  }

  .investor-docs-wrap.first .investor-doc-card,
  .investor-docs-wrap.second .investor-doc-card {
    width: min(84vw, 300px);
    max-width: none;
    height: auto;
    border-radius: 14px;
  }

  .investor-docs-wrap.first .investor-doc-card img,
  .investor-docs-wrap.second .investor-doc-card img {
    height: 240px;
  }

  .investor-docs-wrap.first .doc-actions,
  .investor-docs-wrap.second .doc-actions {
    grid-template-columns: 1fr;
  }
}

/* Projects Page */
.projects-page {
  background: #f4f8fa;
}

.projects-hero {
  background: #f4f8fa;
  padding: 80px 0;
}

.projects-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.projects-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.projects-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
  color: #232a34;
}

.projects-hero p {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.projects-chevron {
  margin-top: 8px;
  opacity: .5;
  width: 24px;
  height: 24px;
}

.projects-chevron img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.projects-list-section {
  background: #fff;
  padding: 120px 0;
}

.projects-list-wrap {
  display: grid;
  gap: 60px;
}

.project-z-card {
  border: 1px solid #e5eef2;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.project-z-card-wide {
  grid-template-columns: 574px 574px;
  justify-content: space-between;
  padding: 16px;
}

.project-z-content {
  display: grid;
  gap: 16px;
  align-content: center;
}

.project-z-content h2 {
  margin: 0;
  color: #232a34;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .36px;
}

.project-z-content p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.project-z-content ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.project-z-content li {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #232a34;
  font-size: 14px;
  line-height: 17px;
}

.project-z-content li img {
  width: 16px;
  height: 16px;
  display: block;
}

.project-z-media {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.project-z-card.reverse .project-z-content {
  order: 2;
}

.project-z-card.reverse .project-z-media {
  order: 1;
}

.projects-process {
  background: #f4f8fa;
  padding: 120px 0;
}

.projects-process-grid {
  display: grid;
  grid-template-columns: 374px 591px;
  gap: 24px;
  justify-content: center;
  align-items: start;
}

.projects-lined-title {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.projects-lined-title h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: .48px;
}

.projects-lined-title h3 span {
  color: #5b6773;
}

.projects-lined-title p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.projects-process-left {
  display: grid;
  gap: 32px;
}

.projects-process-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.projects-process-left li {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #232a34;
  font-size: 14px;
  line-height: 17px;
}

.projects-process-left li img {
  width: 16px;
  height: 16px;
}

.projects-steps {
  width: 591px;
  display: grid;
  border-radius: 32px;
  overflow: hidden;
}

.projects-steps article {
  border-top: 1px solid #d4d6d7;
  border-bottom: 1px solid #d4d6d7;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.projects-steps article img {
  width: 24px;
  height: 24px;
}

.projects-steps article h4 {
  margin: 0;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.projects-steps article p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.projects-why {
  background: #fff;
  padding: 120px 0;
}

.projects-rive-demo {
  background: #f4f8fa;
  padding: 0 0 120px;
}

.projects-rive-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  padding: 20px;
}

.projects-rive-card h3 {
  margin: 0 0 12px;
  color: #232a34;
  font-size: 20px;
  line-height: 1.3;
}

.projects-rive-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #f4f8fa;
}

.projects-why-grid {
  display: grid;
  grid-template-columns: 388px 320px 1fr;
  gap: 32px;
  align-items: end;
}

.projects-why-left {
  display: grid;
  gap: 8px;
}

.projects-why-left h3 {
  margin: 0;
  color: #232a34;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: .48px;
}

.projects-why-left p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}

.projects-why-left .btn-primary {
  margin-top: 24px;
  width: fit-content;
}

.projects-why-art {
  width: 320px;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.projects-why-list {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.projects-why-list p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
}

.projects-why-list img {
  width: 24px;
  height: 24px;
}

/* Technology Areas */
.tech-page {
  background: #f4f8fa;
}

.tech-hero {
  background: #f4f8fa;
  padding: 80px 0;
}

.tech-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.tech-hero h1 {
  margin: 0;
  color: #232a34;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
}

.tech-hero p {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.tech-chevron {
  opacity: .5;
  width: 24px;
  height: 24px;
}

.tech-chevron img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tech-values {
  background: #fff;
  padding: 120px 0;
}

.tech-section-head.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.tech-section-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin: 0 auto 48px;
}

.tech-section-head.narrow {
  max-width: 381px;
}

.tech-section-head h2 {
  margin: 0;
  color: #232a34;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: .36px;
}

.tech-section-head.left h2 {
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.tech-section-head p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.tech-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tech-value-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  padding: 20px;
}

.tech-value-card img {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  object-fit: contain;
}

.tech-value-card h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.tech-value-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.tech-focus {
  background: #f4f8fa;
  padding: 120px 0;
}

.tech-focus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.tech-focus-row:last-child {
  margin-bottom: 0;
}

.tech-focus-row.reverse .tech-focus-text {
  order: 1;
}

.tech-focus-row.reverse .tech-focus-media {
  order: 2;
}

.tech-focus-media {
  width: 100%;
  height: 333px;
  border-radius: 12px;
  object-fit: cover;
}

.tech-focus-text h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: .36px;
}

.tech-focus-text p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.tech-focus-text ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.tech-focus-text li {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #232a34;
  font-size: 14px;
  line-height: 17px;
}

.tech-focus-text li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.tech-collab {
  background: #fff;
  padding: 120px 0;
}

.tech-collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tech-lined-title {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.tech-lined-title h3 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: .36px;
}

.tech-lined-title h3 span {
  color: #5b6773;
}

.tech-lined-title p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.tech-collab-text ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.tech-collab-text li {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #232a34;
  font-size: 14px;
  line-height: 17px;
}

.tech-collab-text li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.tech-collab-visual {
  position: relative;
  width: 100%;
  height: 568px;
  overflow: hidden;
}

.tech-collab-visual img {
  position: absolute;
  display: block;
}

.tech-collab-visual .bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-collab-visual .main {
  top: 21px;
  left: 15px;
  width: calc(100% - 30px);
  height: 530px;
  object-fit: cover;
}

.tech-collab-visual .overlay {
  top: 57px;
  left: 18px;
  width: 270px;
  height: 246px;
  object-fit: cover;
}

.tech-collab-visual .single {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Career */
.career-page {
  background: #f4f8fa;
}

.career-hero {
  background: #f4f8fa;
  padding: 80px 0;
}

.career-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.career-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 56px;
  background: #e5eef2;
  font-size: 14px;
  line-height: 20px;
}

.career-hero h1 {
  margin: 0;
  color: #232a34;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
}

.career-hero p {
  margin: 0;
  color: #5b6773;
  font-size: 16px;
  line-height: 24px;
}

.career-chevron {
  opacity: .5;
  width: 24px;
  height: 24px;
}

.career-chevron img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.career-culture {
  background: #fff;
  padding: 120px 0;
}

.career-culture-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.career-culture-head h2 {
  margin: 0;
  color: #232a34;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: .28px;
}

.career-culture-head h2 span {
  color: #107495;
}

.career-culture-head p {
  margin: 0;
  max-width: 435px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

.career-words {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
  align-items: center;
  color: #232a34;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.career-words .accent {
  color: #107495;
}

.career-application {
  background: #fff;
  padding: 80px 0 120px;
}

.career-form-card {
  width: min(872px, 100%);
  margin: 0 auto;
  background: #f4f8fa;
  border-radius: 24px;
  padding: 60px 160px;
  display: grid;
  gap: 10px;
}

.career-form-card h3 {
  margin: 0 0 22px;
  color: #000;
  font-size: 28px;
  line-height: 1.2;
}

.career-form-card label {
  color: #232a34;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 12px;
}

.career-form-card small {
  margin-top: -2px;
  color: #5b6773;
  font-size: 12px;
  line-height: 1.2;
}

.career-form-card input,
.career-form-card textarea {
  width: 100%;
  border: 1px solid #e5eef2;
  border-radius: 8px;
  background: #fff;
  color: #232a34;
  font: 400 16px/24px "Inter", sans-serif;
  padding: 10px 16px;
}

.career-form-card input::placeholder,
.career-form-card textarea::placeholder {
  color: rgba(35, 42, 52, .5);
}

.career-form-card textarea {
  resize: vertical;
  min-height: 87px;
}

.career-upload-box {
  border: 1px dashed #dedede;
  border-radius: 12px;
  background: #fff;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.career-upload-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.career-upload-box p {
  margin: 0;
  color: #232a34;
  font-size: 14px;
}

.career-upload-box small {
  margin: 0;
}

.career-form-card .btn-primary.full {
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 1200px) {

  .project-z-card,
  .project-z-card-wide,
  .projects-process-grid,
  .projects-why-grid,
  .tech-focus-row,
  .tech-collab-grid {
    grid-template-columns: 1fr;
  }

  .project-z-card.reverse .project-z-content,
  .project-z-card.reverse .project-z-media {
    order: initial;
  }

  .projects-steps {
    width: 100%;
  }

  .projects-why-art {
    width: min(320px, 100%);
    height: auto;
  }

  .tech-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-focus-text h3,
  .tech-lined-title h3 {
    font-size: 36px;
  }

  .tech-collab-visual {
    height: 520px;
  }

  .tech-collab-visual .main {
    height: 482px;
  }

  .career-form-card {
    padding: 42px;
  }

  .career-culture-head {
    flex-direction: column;
  }

  .career-culture-head p {
    max-width: unset;
    text-align: left;
  }

  .career-words {
    font-size: 38px;
    gap: 20px;
  }
}

@media (max-width: 800px) {

  .projects-hero,
  .projects-list-section,
  .projects-rive-demo,
  .projects-process,
  .projects-why,
  .tech-hero,
  .tech-values,
  .tech-focus,
  .tech-collab,
  .career-hero,
  .career-culture,
  .career-application {
    padding: 72px 0;
  }

  .projects-hero h1,
  .projects-lined-title h3,
  .projects-why-left h3,
  .project-z-content h2 {
    font-size: 34px;
    line-height: 1.25;
  }

  .project-z-card {
    padding: 18px;
    gap: 20px;
  }

  .project-z-media {
    height: 300px;
  }

  .tech-values-grid {
    grid-template-columns: 1fr;
  }

  .tech-section-head h2,
  .tech-focus-text h3,
  .tech-lined-title h3 {
    font-size: 34px;
    line-height: 1.25;
  }

  .tech-focus-media {
    height: 280px;
  }

  .tech-collab-visual {
    height: 360px;
  }

  .tech-collab-visual .main {
    top: 14px;
    left: 12px;
    width: calc(100% - 24px);
    height: 332px;
  }

  .tech-collab-visual .overlay {
    width: 160px;
    height: 145px;
    top: 36px;
    left: 15px;
  }

  .career-hero h1,
  .career-words {
    font-size: 34px;
    line-height: 1.25;
  }

  .career-words {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    white-space: normal;
  }

  .career-form-card {
    padding: 24px;
  }
}

/* Basın & Media */
.press-page {
  background: var(--bg);
}

.press-hero {
  padding: 80px 0;
}

.press-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.press-chip {
  background: #e5eef2;
  border-radius: 56px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 20px;
}

.press-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.2;
  letter-spacing: .48px;
}

.press-hero p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #5b6773;
}

.press-search {
  width: min(568px, 100%);
  margin-top: 8px;
  border-radius: 25px;
  border: 1px solid #e5eef2;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.press-search svg {
  width: 20px;
  height: 20px;
  fill: #8da1b0;
  flex: 0 0 auto;
}

.press-search input {
  border: 0;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
  color: #232a34;
}

.press-search input::placeholder {
  color: rgba(35, 42, 52, .5);
}

.press-news {
  background: #fff;
  padding: 120px 0;
}

.press-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.press-head-row h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: .28px;
}

.press-head-row a {
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.press-news-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.press-empty-state {
  margin-top: 24px;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.press-empty-state h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 30px;
}

.press-empty-state p {
  margin: 0;
  color: #5b6773;
}

.press-empty-state .btn-primary {
  margin-top: 16px;
}

.press-card {
  border: 1px solid #e5eef2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.press-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-card-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  border-radius: 10px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.press-card-body {
  background: #f4f8fa;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-card-body small {
  font-size: 12px;
  line-height: 16px;
}

.press-card-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.press-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
  min-height: 80px;
}

.press-card-body a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  background: #107495;
  color: #fff;
  font-size: 14px;
}

.press-announcements {
  padding: 120px 0;
  background: #f4f8fa;
}

.press-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.press-list-item {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eef3f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
}

.press-list-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.press-list-item small {
  font-size: 12px;
  color: #5b6773;
}

.press-list-item h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.press-list-item span {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: -.12px;
  color: #232a34;
}

.press-kit {
  background: #fff;
  padding: 120px 0;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: 570px 452px;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.press-kit-title {
  border-left: 2px solid #107495;
  padding-left: 16px;
}

.press-kit-title h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: .36px;
}

.press-kit-title h2 span {
  color: #5b6773;
}

.press-kit-title p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.press-kit-content ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 440px;
}

.press-kit-content li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.press-kit-content li svg {
  width: 16px;
  height: 16px;
  fill: #5b6773;
  flex: 0 0 auto;
}

.press-kit-btn {
  width: 217px;
  gap: 10px;
}

.press-kit-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.press-kit-image {
  height: 275px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8edf2;
}

.press-kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-contact {
  padding: 120px 0;
  background: #f4f8fa;
}

.press-contact-card {
  width: min(893px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 0, 0, .10);
  padding: 43px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.press-contact-card h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: .36px;
}

.press-contact-card p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.press-contact-card a {
  margin-top: 4px;
  gap: 10px;
}

.press-contact-card a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

@media (max-width: 1200px) {

  .press-news,
  .press-announcements,
  .press-kit,
  .press-contact {
    padding: 96px 0;
  }

  .press-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .press-kit-grid {
    grid-template-columns: 1fr;
  }

  .press-kit-content ul {
    max-width: 100%;
  }

  .press-kit-image {
    width: min(560px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 800px) {

  .press-hero,
  .press-news,
  .press-announcements,
  .press-kit,
  .press-contact {
    padding: 72px 0;
  }

  .press-hero h1 {
    font-size: 34px;
  }

  .press-hero p br {
    display: none;
  }

  .press-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .press-news-grid {
    grid-template-columns: 1fr;
  }

  .press-list-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .press-kit-title h2,
  .press-contact-card h2 {
    font-size: 30px;
  }

  .press-kit-content ul {
    grid-template-columns: 1fr;
  }

  .press-kit-btn {
    width: 100%;
  }

  .press-contact-card {
    padding: 36px 18px;
  }
}

/* Basın & Media Detay */
.press-detail-page {
  background: #f4f8fa;
}

.press-detail-layout {
  display: grid;
  grid-template-columns: 829px minmax(300px, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 80px;
}

.press-detail-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 80px;
}

.press-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5b6773;
}

.press-detail-breadcrumb span:last-child {
  color: #232a34;
}

.press-detail-chip {
  width: fit-content;
  border-radius: 56px;
  background: #e5eef2;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 20px;
}

.press-detail-main h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.2;
  letter-spacing: .48px;
  color: #232a34;
}

.press-detail-sub {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #5b6773;
}

.press-detail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.press-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #232a34;
}

.press-detail-meta svg {
  width: 16px;
  height: 16px;
  fill: #5b6773;
}

.press-detail-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #232a34;
  opacity: .6;
}

.press-detail-hero-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 1920/1080;
  border-radius: 12px;
  overflow: hidden;
}

.press-detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-detail-actions {
  display: flex;
  gap: 16px;
}

.press-detail-actions button {
  border: 0;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 20px;
  color: #232a34;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.press-detail-actions button svg {
  width: 16px;
  height: 16px;
  fill: #5b6773;
}

.press-detail-lead {
  margin: 0;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: #5b6773;
}

.press-detail-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-detail-text-block h2 {
  margin: 0;
  font-size: 24px;
  line-height: 24px;
  color: #5b6773;
}

.press-detail-text-block p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #5b6773;
}

.press-detail-text-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.press-detail-text-block li {
  font-size: 16px;
  line-height: 24px;
  color: #5b6773;
}

.press-detail-side {
  padding: 80px 16px;
}

.press-side-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.press-side-head h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: .16px;
}

.press-side-head a {
  font-size: 14px;
  color: #5b6773;
}

.press-side-cards {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-side-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .05);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-side-card small {
  font-size: 12px;
  line-height: 20px;
  color: #232a34;
}

.press-side-card strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #232a34;
}

.press-side-card span {
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.press-contact-card-detail {
  border-radius: 16px;
}

@media (max-width: 1200px) {
  .press-detail-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .press-detail-main {
    padding-bottom: 0;
  }

  .press-detail-side {
    padding: 56px 0 0;
  }

  .press-side-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-detail-sub br,
  .press-detail-main h1 br {
    display: none;
  }
}

@media (max-width: 800px) {
  .press-detail-layout {
    padding-top: 56px;
  }

  .press-detail-main {
    gap: 20px;
  }

  .press-detail-actions {
    flex-direction: column;
    gap: 10px;
  }

  .press-detail-actions button {
    width: 100%;
    justify-content: center;
  }

  .press-detail-lead {
    font-size: 18px;
    line-height: 30px;
  }

  .press-detail-text-block h2 {
    font-size: 22px;
  }

  .press-side-cards {
    grid-template-columns: 1fr;
  }
}

/* Iletisim */
.contact-page {
  background: #f4f8fa;
}

.contact-hero {
  padding: 80px 0 0;
  position: relative;
}

.contact-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 520px;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 60px;
  letter-spacing: .48px;
  color: #232a34;
}

.contact-hero p {
  margin: 0;
  width: min(542px, 100%);
  font-size: 16px;
  line-height: 24px;
  color: #5b6773;
}

.contact-hero-chevron {
  margin-top: 16px;
  opacity: .5;
}

.contact-hero-chevron svg {
  width: 24px;
  height: 24px;
  fill: #5b6773;
}

.contact-wire-bg {
  position: absolute;
  width: min(800px, 100%);
  height: 400px;
  left: 50%;
  transform: translateX(-50%);
  top: 255px;
  pointer-events: none;
  z-index: 1;
}

.contact-wire-bg .wire-left,
.contact-wire-bg .wire-right {
  position: absolute;
  width: 400px;
  height: 400px;
  object-fit: contain;
  top: 0;
}

.contact-wire-bg .wire-left {
  left: 0;
}

.contact-wire-bg .wire-right {
  left: 399px;
  transform: scaleX(-1);
  transform-origin: center;
}

.contact-wire-bg .wire-dot {
  position: absolute;
  width: 10px;
  height: 10px;
}

.contact-wire-dot-1,
.contact-wire-bg .wire-dot-1 {
  left: 422px;
  top: 44px;
}

.contact-wire-dot-2,
.contact-wire-bg .wire-dot-2 {
  left: 691px;
  top: 106px;
}

.contact-wire-dot-3,
.contact-wire-bg .wire-dot-3 {
  left: 104px;
  top: 18px;
}

.contact-cards {
  padding: 0;
  margin-top: -165px;
  margin-bottom: 250px;
  position: relative;
  z-index: 3;
}

.contact-cards-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 32px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .04);
  width: fit-content;
  margin: 0 auto;
}

.contact-info-card {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 12px;
  padding: 20px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.contact-info-card svg {
  width: 24px;
  height: 24px;
  fill: #232a34;
}

.contact-info-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.contact-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.contact-info-card a {
  font-size: 14px;
  line-height: 20px;
  color: #2f5da8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contact-form-area {
  background: #fff;
  padding: 120px 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(360px, 501px) minmax(360px, 499px);
  gap: 60px;
  justify-content: center;
  align-items: start;
}

.contact-showcase-card,
.contact-form-card {
  background: #f4f8fa;
  border-radius: 24px;
}

.contact-showcase-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 589px;
}

.contact-showcase-card h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: .36px;
  color: #232a34;
  max-width: 381px;
}

.contact-showcase-card p {
  margin: 0;
  max-width: 381px;
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
  font-style: italic;
  font-weight: 500;
}

.contact-showcase-card .heading-line {
  margin-top: 0;
}

.contact-showcase-card>img {
  width: 100%;
  height: 304px;
  object-fit: cover;
  border-radius: 12px;
}

.contact-partners {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.contact-partners .avatars {
  display: inline-flex;
  padding-right: 12px;
}

.contact-partners .avatars span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #f4f8fa;
  margin-right: -12px;
}

.contact-partners .avatars span:nth-child(1) {
  background: #334155;
}

.contact-partners .avatars span:nth-child(2) {
  background: #475569;
}

.contact-partners .avatars span:nth-child(3) {
  background: #64748b;
}

.contact-partners small {
  font-size: 14px;
  line-height: 20px;
  color: #5b6773;
}

.contact-form-card {
  padding: 36px 60px;
  min-height: 589px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-card h2 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.2;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form-card label {
  font-size: 14px;
  color: #232a34;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  border: 1px solid #e5eef2;
  border-radius: 8px;
  background: #fff;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #232a34;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form-card input::placeholder,
.contact-form-card select,
.contact-form-card textarea::placeholder {
  color: rgba(35, 42, 52, .5);
}

.contact-form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%235B6773' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 42px;
}

.contact-form-card textarea {
  min-height: 87px;
  resize: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #107495;
  box-shadow: 0 0 0 2px rgba(16, 116, 149, .12);
}

.contact-form-card button {
  margin-top: 0;
  width: 100%;
}

@media (max-width: 1200px) {
  .contact-hero-inner {
    min-height: 480px;
  }

  .contact-wire-bg {
    top: 245px;
    width: min(700px, 100%);
    height: 320px;
  }

  .contact-wire-bg .wire-left,
  .contact-wire-bg .wire-right {
    width: 320px;
    height: 320px;
  }

  .contact-cards {
    padding: 0;
    margin-top: -120px;
    margin-bottom: 150px;
  }

  .contact-cards-shell {
    margin-top: 0;
  }

  .contact-form-area {
    padding: 96px 0;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-showcase-card h2 {
    font-size: 42px;
    line-height: 1.08;
  }
}

@media (max-width: 800px) {
  .contact-hero {
    padding-top: 72px;
  }

  .contact-hero h1 {
    line-height: 1.2;
  }

  .contact-hero p br {
    display: none;
  }

  .contact-hero-inner {
    min-height: 420px;
  }

  .contact-wire-bg {
    top: 260px;
    height: 220px;
    opacity: .55;
  }

  .contact-wire-bg .wire-left,
  .contact-wire-bg .wire-right {
    width: 220px;
    height: 220px;
  }

  .contact-wire-bg .wire-dot {
    display: none;
  }

  .contact-cards {
    padding: 0;
    margin-top: -56px;
    margin-bottom: 72px;
  }

  .contact-cards-shell {
    width: 100%;
    margin-top: 0;
  }

  .contact-info-card {
    width: min(340px, 100%);
  }

  .contact-form-area {
    padding: 72px 0;
  }

  .contact-showcase-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-showcase-card h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .contact-form-card form {
    gap: 16px;
  }

  .contact-form-card button {
    margin-top: 4px;
  }
}

/* Responsive hotfixes */
.why-right>img {
  width: 320px;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.why-item img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .why-right>img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

.about-responsibility-grid {
  justify-items: center;
}

.about-resp-text {
  width: min(483px, 100%);
}

@media (max-width: 800px) {
  .about-resp-text {
    text-align: center;
  }

  .about-resp-text .heading-line {
    margin-left: auto;
    margin-right: auto;
  }
}

.investor-advisors .investor-people-grid.six,
.investor-docs .investor-doc-grid,
.investor-docs-alt .investor-doc-grid {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.investor-advisors .investor-people-grid.six>*,
.investor-docs .investor-doc-grid>*,
.investor-docs-alt .investor-doc-grid>* {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.investor-advisors .investor-people-grid.six::-webkit-scrollbar,
.investor-docs .investor-doc-grid::-webkit-scrollbar,
.investor-docs-alt .investor-doc-grid::-webkit-scrollbar {
  height: 8px;
}

.investor-advisors .investor-people-grid.six::-webkit-scrollbar-thumb,
.investor-docs .investor-doc-grid::-webkit-scrollbar-thumb,
.investor-docs-alt .investor-doc-grid::-webkit-scrollbar-thumb {
  background: #c8d7de;
  border-radius: 99px;
}

/* Standard Hero Down Arrow */
.home-chevron,
.investor-chevron,
.projects-chevron,
.tech-chevron,
.career-chevron,
.contact-hero-chevron {
  margin-top: 8px;
  width: 24px;
  height: 24px;
  opacity: .5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.home-chevron img,
.investor-chevron img,
.projects-chevron img,
.tech-chevron img,
.career-chevron img,
.contact-hero-chevron img,
.home-chevron svg,
.investor-chevron svg,
.projects-chevron svg,
.tech-chevron svg,
.career-chevron svg,
.contact-hero-chevron svg {
  display: none;
}

.home-chevron::before,
.investor-chevron::before,
.projects-chevron::before,
.tech-chevron::before,
.career-chevron::before,
.contact-hero-chevron::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #5b6773;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 15.5 5 8.5l1.4-1.4 5.6 5.6 5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 15.5 5 8.5l1.4-1.4 5.6 5.6 5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Contact Map */
.contact-map-section {
  background: #fff;
  padding: 0 0 120px;
}

.contact-map-head {
  margin-bottom: 16px;
}

.contact-map-head h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.2;
  color: #232a34;
}

.contact-map-head p {
  margin: 0;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.contact-map-embed {
  border: 1px solid #e5eef2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  background: #fff;
}

.contact-map-embed iframe {
  width: 100%;
  height: 500px;
  display: block;
}

@media (max-width: 1200px) {
  .contact-map-section {
    padding-bottom: 96px;
  }

  .contact-map-embed iframe {
    height: 420px;
  }
}

@media (max-width: 800px) {
  .contact-map-section {
    padding-bottom: 72px;
  }

  .contact-map-head h2 {
    font-size: 28px;
  }

  .contact-map-embed iframe {
    height: 320px;
  }
}

/* Policy Pages */
.policy-page {
  background: #f4f8fa;
  padding: 80px 0 120px;
}

.policy-wrap {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  padding: 32px;
}

.policy-wrap h1 {
  margin: 0;
  color: #232a34;
  font-size: 34px;
  line-height: 1.2;
}

.policy-date {
  margin: 8px 0 28px;
  color: #5b6773;
  font-size: 14px;
  line-height: 20px;
}

.policy-wrap h2 {
  margin: 0 0 8px;
  color: #232a34;
  font-size: 20px;
  line-height: 1.3;
}

.policy-wrap p {
  margin: 0 0 20px;
  color: #5b6773;
  font-size: 15px;
  line-height: 24px;
}

.policy-wrap a {
  color: #2f5da8;
}

.footer-policy-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-policy-links a {
  position: relative;
}

.footer-policy-links a+a::before {
  content: "·";
  position: absolute;
  left: -9px;
  color: #9ba7b4;
}

@media (max-width: 800px) {
  .policy-page {
    padding: 56px 0 72px;
  }

  .policy-wrap {
    padding: 20px;
  }

  .policy-wrap h1 {
    font-size: 28px;
  }

  .footer-policy-links {
    justify-content: center;
    gap: 10px 14px;
  }
}

/* Form Toast */
.site-toast-root {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 24px));
}

.site-toast {
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

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

.site-toast.is-success {
  background: linear-gradient(135deg, #0f9b7a, #107495);
}

.site-toast.is-error {
  background: linear-gradient(135deg, #cc3d3d, #a12035);
}

.text-danger,
.field-validation-error,
[data-valmsg-summary="true"] {
  color: #b42318;
  font-size: 12px;
  line-height: 16px;
}

[data-valmsg-summary="true"] ul {
  margin: 0;
  padding-left: 16px;
}

@media (max-width: 800px) {
  .site-toast-root {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
