/* Ekol GSYO  modern cinematic system */
:root {
  --ink: #003055;
  --ink-2: #002844;
  --navy: #003055;
  --navy-mid: #0a4a78;
  --navy-deep: #00243f;
  --navy-dark: #001c33;
  --silver: #a8b8c6;
  --mist: #dce6ee;
  --ivory: #f5f8fb;
  --accent: #d2b48c;
  --accent-2: #7eb6d6;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --glass: rgba(0, 36, 63, 0.55);
  --glass-2: rgba(0, 48, 85, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 5rem;
  --radius: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #003055;
}

body {
  font-family: "Rubik", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(10, 74, 120, 0.55), transparent 55%),
    radial-gradient(900px 600px at -10% 30%, rgba(210, 180, 140, 0.10), transparent 50%),
    radial-gradient(800px 500px at 70% 110%, rgba(126, 182, 214, 0.12), transparent 45%),
    linear-gradient(180deg, #003055 0%, #002844 50%, #001f38 100%);
  background-attachment: fixed;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none !important; }
}

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

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

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

::selection {
  background: rgba(210, 180, 140, 0.35);
  color: #fff;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
  opacity: 0;
}

.cursor.is-on { opacity: 1; }
.cursor.is-grow {
  width: 42px;
  height: 42px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  z-index: 90;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 12px rgba(210, 180, 140, 0.35);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.35rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.display {
  font-family: "Literata", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

/* Nav */
.nav {
  position: fixed;
  top: 0.85rem;
  left: 0.75rem;
  right: 0.75rem;
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s,
    inset 0.35s var(--ease),
    border-radius 0.35s var(--ease),
    width 0.35s var(--ease);
}

.nav.is-solid {
  background: rgba(0, 36, 63, 0.78);
  border-color: var(--line-strong);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav__brand img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  opacity: 0.7;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: opacity 0.25s, background 0.25s, color 0.25s;
}

.nav__links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}

.nav__links a.is-current {
  opacity: 1;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav__lang {
  display: inline-flex;
  gap: 0.35rem;
  margin-left: 0.35rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line-strong);
}

.nav__lang a {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.4rem 0.7rem;
}

.nav__lang a.is-active {
  opacity: 1;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: 85;
  min-height: 42px;
  padding: 0 0.85rem 0 1rem;
  border: 1px solid transparent;
  background: transparent;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  border-radius: 999px;
  color: var(--ivory);
  transition: background 0.3s var(--ease), border-color 0.3s;
}

.nav__toggle-label {
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav__toggle-icon i {
  display: block;
  height: 1.5px;
  width: 18px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0 1.6rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s, transform 0.35s var(--ease), background 0.35s;
}

.btn::after {
  content: ">";
  transition: transform 0.35s var(--ease);
}

.btn:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
  transform: translateY(-1px);
}

.btn:hover::after { transform: translateX(3px); }

.btn--solid {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ivory);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--solid:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--ivory);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: saturate(0.95) contrast(1.04);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 48, 85, 0.35) 0%, rgba(0, 48, 85, 0.12) 35%, rgba(0, 40, 70, 0.78) 72%, #003055 100%),
    linear-gradient(105deg, rgba(0, 36, 63, 0.72) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(10, 74, 120, 0.3), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(5.5rem, 11vh, 8rem);
  max-width: 60rem;
}

.hero__brand {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 1.35rem;
  background: linear-gradient(115deg, #fff 10%, var(--mist) 45%, var(--accent) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.hero__title {
  font-family: "Literata", serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.28;
  max-width: 22ch;
  margin-bottom: 1rem;
  color: rgba(243, 247, 249, 0.88);
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero__scroll i {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Statement */
.statement {
  min-height: 80svh;
  display: grid;
  place-items: center;
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
}

.statement::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 74, 122, 0.28), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.statement__track {
  width: 100%;
  text-align: center;
  position: relative;
}

.statement__line {
  font-family: "Literata", serif;
  font-size: clamp(2.3rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  white-space: nowrap;
  will-change: transform;
  padding: 0.12em 0;
}

.statement__line--accent {
  color: var(--accent);
  font-style: italic;
}

/* About / page visuals */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 100svh;
}

.about__visual {
  position: relative;
  overflow: hidden;
  min-height: 70svh;
}

.about__visual img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  background: linear-gradient(165deg, rgba(0, 36, 63, 0.92), rgba(0, 48, 85, 0.55));
}

.about__body {
  margin-top: 2rem;
  max-width: 38rem;
  display: grid;
  gap: 1.25rem;
  color: var(--silver);
  font-size: 1.05rem;
}

/* Approach */
.approach {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 5vw, 5rem);
  overflow: hidden;
}

.approach__head { margin-bottom: 3.5rem; }

.approach__list {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.strip {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.35s var(--ease), border-color 0.35s, transform 0.35s var(--ease);
}

.strip:hover {
  background: rgba(12, 74, 122, 0.18);
  border-color: rgba(126, 182, 214, 0.25);
  transform: translateX(4px);
}

.strip__index {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: "Rubik", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 0.4rem;
  line-height: 1;
}

.strip h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.strip p {
  grid-column: 2;
  grid-row: 2;
  color: var(--silver);
  max-width: 42ch;
  margin: 0;
  line-height: 1.55;
  font-size: 0.98rem;
}

.approach__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach__orb {
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -14vw;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 74, 122, 0.4), transparent 68%);
  filter: blur(12px);
  will-change: transform;
}

.approach__orb--two {
  width: 28vw;
  height: 28vw;
  left: -10vw;
  bottom: 0;
  top: auto;
  right: auto;
  background: radial-gradient(circle, rgba(210, 180, 140, 0.16), transparent 70%);
}

/* Figures */
.figures {
  position: relative;
  min-height: 68svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.figures__bg {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
}

.figures__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.08);
}

.figures__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #003055, rgba(0, 36, 63, 0.78), #003055);
}

.figures__grid {
  width: min(1100px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 5rem 0;
}

.figure {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 36, 63, 0.55);
  backdrop-filter: blur(12px);
}

.figure__value {
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.figure__unit {
  display: block;
  margin-top: 0.4rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.figure__label {
  display: block;
  margin-top: 0.85rem;
  color: var(--silver);
  font-size: 0.92rem;
}

/* Gateways */
.gateways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(4rem, 8vh, 6rem);
}

.gateway {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.75rem, 3.5vw, 2.35rem);
  min-height: 11rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    linear-gradient(160deg, rgba(12, 74, 122, 0.18), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  align-content: start;
}

.gateway::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 180, 140, 0.18), transparent 70%);
  transition: transform 0.5s var(--ease);
}

.gateway:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 182, 214, 0.35);
  background: linear-gradient(160deg, rgba(12, 74, 122, 0.32), rgba(255, 255, 255, 0.03));
}

.gateway:hover::before { transform: scale(1.25) translate(-10%, -10%); }

.gateway__label {
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.gateway h2 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gateway__arrow {
  margin-top: auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s;
}

.gateway:hover .gateway__arrow {
  transform: translateX(4px);
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero--short { min-height: 52svh; }

.page-hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  will-change: transform;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.8) contrast(1.05);
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 48, 85, 0.35) 0%, rgba(0, 48, 85, 0.15) 40%, rgba(0, 40, 70, 0.88) 85%, #003055 100%),
    linear-gradient(90deg, rgba(0, 36, 63, 0.55), transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(3.2rem, 7vh, 5rem);
  max-width: 52rem;
}

.page-hero__title {
  font-family: "Literata", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.page-block {
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.25rem, 5vw, 5rem) clamp(4rem, 10vh, 6.5rem);
}

.page-block__narrow {
  max-width: 42rem;
  display: grid;
  gap: 1.35rem;
  color: var(--silver);
  font-size: 1.08rem;
  line-height: 1.7;
}

.approach--page {
  border-top: 1px solid var(--line);
}

.page-cta {
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 10vh, 7.5rem);
  border-top: 1px solid var(--line);
}

.page-cta p {
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.page-cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-title {
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem);
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 5rem);
  align-items: start;
  width: min(1100px, 100%);
  margin-inline: auto;
}

.page-head {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 5vw, 5rem) 0.75rem;
}

.page-head .page-hero__title {
  max-width: none;
  margin-bottom: 0;
}

.contact--page {
  padding-top: 1.25rem;
  padding-bottom: clamp(4rem, 10vh, 7rem);
}

.contact__info {
  margin-top: 0.5rem;
  font-style: normal;
  display: grid;
  gap: 1.35rem;
  color: var(--silver);
}

.contact__info strong {
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact__info a:hover { color: var(--accent); }

.contact__form {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(12, 74, 122, 0.22), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
}

.contact__form label { display: grid; gap: 0.4rem; }

.contact__form span {
  font-family: "Rubik", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.85rem 0;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--accent);
}

.contact__form .btn {
  margin-top: 0.5rem;
  justify-self: start;
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem) 2.75rem;
  border-top: 1px solid var(--line);
}

.footer__brand img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.footer__copy {
  color: var(--silver);
  font-size: 0.85rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__social a {
  opacity: 0.6;
  transition: opacity 0.25s, color 0.25s;
}

.footer__social a:hover {
  opacity: 1;
  color: var(--accent);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Investor Relations */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: rgba(0, 36, 63, 0.35);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.page-veil.is-on { opacity: 1; }

.ir-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  min-height: 100svh;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 2.5rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}

.ir-main {
  min-width: 0;
  padding: 0.35rem 0.15rem 0.35rem 0.5rem;
}

.ir-side {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
  max-height: calc(100svh - var(--nav-h) - 2.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.15rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background: rgba(0, 36, 63, 0.72);
  backdrop-filter: blur(16px) saturate(1.15);
}

.ir-side__label {
  flex: 0 0 auto;
  font-family: "Rubik", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0.65rem 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.ir-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(210, 180, 140, 0.55) rgba(255, 255, 255, 0.06);
  padding-right: 0.15rem;
}

.ir-nav::-webkit-scrollbar {
  width: 4px;
}

.ir-nav::-webkit-scrollbar-thumb {
  background: rgba(210, 180, 140, 0.55);
  border-radius: 999px;
}

.ir-nav ul {
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.ir-nav a {
  display: block;
  padding: 0.68rem 0.75rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--silver);
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, transform 0.25s, border-color 0.25s;
}

.ir-nav a:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

.ir-nav a.is-active {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}



.ir-panel {
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), filter 0.28s;
}

.ir-panel.is-out {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}

.ir-panel.is-enter {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

html.ir-soft-boot .ir-panel {
  opacity: 0;
  transform: translateY(14px);
}

.ir-title {
  font-family: "Literata", serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 16ch;
}

.ir-body { max-width: 48rem; }

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

.ir-meta > div {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.ir-meta > div:hover {
  border-color: rgba(126, 182, 214, 0.28);
  background: rgba(12, 74, 122, 0.16);
  transform: translateY(-2px);
}

.ir-meta dt {
  font-family: "Rubik", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.ir-meta dd {
  color: var(--mist);
  font-size: 0.98rem;
  line-height: 1.45;
}

.ir-table {
  display: grid;
  gap: 0.45rem;
}

.ir-table__head,
.ir-table__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.ir-table--two .ir-table__head,
.ir-table--two .ir-table__row {
  grid-template-columns: 1.2fr 1.4fr;
}

.ir-table__head {
  font-family: "Rubik", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(12, 74, 122, 0.18);
  border-color: rgba(126, 182, 214, 0.18);
}

.ir-table__row {
  color: var(--mist);
  font-size: 0.96rem;
  transition: border-color 0.25s, background 0.25s;
}

.ir-table__row:hover {
  border-color: rgba(126, 182, 214, 0.25);
  background: rgba(12, 74, 122, 0.12);
}

.ir-table__row em {
  color: var(--silver);
  font-style: normal;
  font-size: 0.86rem;
}

.ir-table__row--total {
  font-family: "Rubik", sans-serif;
  color: var(--ivory);
  background: linear-gradient(120deg, rgba(210, 180, 140, 0.14), rgba(12, 74, 122, 0.2));
  border-color: rgba(210, 180, 140, 0.28);
}

.ir-people {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 44rem;
}

.ir-people li {
  display: grid;
  gap: 0.3rem;
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.ir-people li:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 182, 214, 0.28);
  background: rgba(12, 74, 122, 0.16);
}

.ir-people strong {
  font-family: "Rubik", sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
}

.ir-people span { color: var(--silver); }

.ir-files {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
}

.ir-file {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s;
}

.ir-file:hover {
  background: rgba(12, 74, 122, 0.22);
  border-color: rgba(210, 180, 140, 0.35);
  transform: translateY(-2px);
}

.ir-file__badge {
  font-family: "Rubik", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(120deg, var(--accent), #e2c7a0);
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
}

.ir-file__name { font-size: 0.96rem; }

.ir-file__go {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  color: var(--silver);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.ir-file:hover .ir-file__go {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    top: 0.65rem;
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    max-width: none;
    border-radius: 1.25rem;
    padding: 0.65rem 0.85rem;
  }

  .nav__toggle { display: flex; }

  .nav.is-open {
    inset: 0;
    width: auto;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-color: transparent;
    background: rgba(0, 36, 63, 0.98);
    backdrop-filter: blur(18px);
    z-index: 90;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0.75rem 0.85rem 2rem;
  }

  .nav.is-open .nav__brand,
  .nav.is-open .nav__toggle {
    position: relative;
    z-index: 2;
  }

  .nav.is-open .nav__toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--line-strong);
  }

  .nav__links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.05rem;
    width: 100%;
    flex: 1 1 100%;
    min-height: calc(100svh - 5.5rem);
    opacity: 0;
    pointer-events: none;
  }

  .nav.is-open .nav__links {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav.is-open .nav__toggle-icon i:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .nav.is-open .nav__toggle-icon i:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .nav__lang {
    border: 0;
    margin: 0;
    padding: 0;
  }

  .nav__links a {
    font-size: 1.05rem;
    padding: 0.85rem 1.25rem;
  }

  .nav__links a.is-current {
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 48svh; }
  .figures__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .contact { grid-template-columns: 1fr; }
  .gateways { grid-template-columns: 1fr; }
  .gateway { min-height: 0; }
  .statement__line { white-space: normal; padding-inline: 1rem; }
  .hero__scroll { display: none; }
  .ir-people { grid-template-columns: 1fr; }

  .ir-shell {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 1.5rem);
  }

  .ir-side {
    position: relative;
    top: 0;
    max-height: min(52vh, 24rem);
    overflow: hidden;
    padding: 1rem 0.75rem 0.85rem;
  }

  .ir-side__label {
    position: static;
    margin: 0 0.35rem 0.75rem;
    padding: 0 0 0.65rem;
    background: transparent;
    border-bottom: 1px solid var(--line);
  }

  .ir-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    overflow: visible;
    padding-bottom: 0.35rem;
  }

  .ir-nav li { flex: none; width: 100%; }

  .ir-nav a {
    white-space: normal;
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0.75rem 0.8rem;
  }

  .ir-meta { grid-template-columns: 1fr; }

  .ir-table__head,
  .ir-table__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .ir-table__head span:not(:first-child) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
