:root {
  --ink: #08101f;
  --ink-soft: #101b2d;
  --blue: #2d67ff;
  --blue-bright: #4c7dff;
  --paper: #f4f2ec;
  --white: #ffffff;
  --muted: #687487;
  --line: rgba(10, 20, 38, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);

  --shell: min(1180px, calc(100% - 40px));
  --header-height: 82px;

  --shadow: 0 24px 70px rgba(5, 13, 28, 0.16);
}

/* ======================================================
   RESET AND GLOBAL STYLES
====================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  top: 20px;
}

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

/* ======================================================
   TYPOGRAPHY
====================================================== */

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.eyebrow {
  margin: 0 0 20px;
  color: #91aeff;
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--blue);
}

/* ======================================================
   HEADER AND NAVIGATION
====================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 14, 27, 0.92);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
}

.brand-mark::first-letter {
  color: var(--blue-bright);
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.17em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Mono", monospace;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--blue-bright);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 12px 19px;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

/* ======================================================
   HERO
====================================================== */

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      112deg,
      rgba(5, 13, 26, 0.98) 0%,
      rgba(7, 18, 36, 0.96) 49%,
      rgba(15, 34, 61, 0.93) 100%
    );
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(45, 103, 255, 0.34),
      transparent 67%
    );
  filter: blur(5px);
}

.pitch-lines {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 59%;
  height: 71%;
  opacity: 0.2;
  transform:
    perspective(700px)
    rotateY(-16deg)
    rotateX(5deg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(
      90deg,
      transparent 49.85%,
      rgba(255, 255, 255, 0.44) 50%,
      transparent 50.15%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 0 15%,
      rgba(255, 255, 255, 0.42) 15.2% 15.6%,
      transparent 15.8%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0.24)
    )
    0 50% / 100% 1px no-repeat;
}

.pitch-lines::before,
.pitch-lines::after {
  content: "";
  position: absolute;
  top: 31%;
  width: 19%;
  height: 38%;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.pitch-lines::before {
  left: 0;
  border-left: 0;
}

.pitch-lines::after {
  right: 0;
  border-right: 0;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-ring-one {
  right: 10%;
  top: 19%;
  width: 390px;
  height: 390px;
}

.hero-ring-two {
  right: 18%;
  top: 31%;
  width: 180px;
  height: 180px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    url(
      "data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"
    );
}

.hero-grid {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(290px, 0.7fr);
  gap: 80px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding: 70px 0;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* ======================================================
   BUTTONS
====================================================== */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(45, 103, 255, 0.27);
}

.button-primary:hover {
  background: #1e58ec;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.03);
}

/* ======================================================
   HERO SIDE PANEL
====================================================== */

.hero-panel {
  align-self: end;
  max-width: 370px;
  margin-bottom: 72px;
  padding: 29px;
  border: 1px solid var(--line-dark);
  background: rgba(3, 11, 23, 0.48);
  backdrop-filter: blur(10px);
}

.panel-number {
  display: block;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Roboto Mono", monospace;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

.panel-kicker {
  margin: 36px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel p:not(.panel-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.panel-line {
  display: block;
  height: 1px;
  margin: 25px 0 17px;
  background: var(--line-dark);
}

.panel-meta {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Roboto Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ======================================================
   HERO PROOF STRIP
====================================================== */

.proof-strip {
  position: relative;
  border-top: 1px solid var(--line-dark);
  background: rgba(4, 13, 27, 0.74);
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 15px 24px;
  border-right: 1px solid var(--line-dark);
}

.proof-item:first-child {
  border-left: 1px solid var(--line-dark);
}

.proof-icon {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #91aeff;
}

.proof-item div {
  display: grid;
}

.proof-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-item span:not(.proof-icon) {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

/* ======================================================
   SHARED SECTIONS
====================================================== */

.section {
  padding: 110px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  margin-bottom: 50px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 70px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
}

.split-heading > p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered > p:last-child {
  color: var(--muted);
}

/* ======================================================
   ABOUT ORALDO
====================================================== */

.about {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f8f7f3 0%,
      #f3f1eb 100%
    );
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.about-intro .eyebrow {
  margin-top: 10px;
}

.about-intro h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  line-height: 0.98;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 7vw, 105px);
  align-items: center;
}

.portrait-card {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  background: #d9d8d4;
  box-shadow: var(--shadow);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 52%,
      rgba(4, 11, 22, 0.06) 65%,
      rgba(4, 11, 22, 0.9) 100%
    );
}

.portrait-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.03);
}

.portrait-card figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  color: var(--white);
}

.portrait-card figcaption span {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.portrait-card figcaption small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.about-story {
  max-width: 650px;
}

.about-story p {
  margin: 0 0 24px;
  color: #596577;
  font-size: 1rem;
}

.about-story .lead {
  margin-bottom: 30px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-fact {
  min-height: 225px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.profile-number {
  display: block;
  margin-bottom: 47px;
  color: var(--blue);
  font-family: "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.profile-fact h3 {
  max-width: 230px;
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.profile-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ======================================================
   TRACK RECORD
====================================================== */

.transfer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.transfer-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #111c2d;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.transfer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 135, 255, 0.65);
}

.transfer-visual {
  position: relative;
  min-height: 230px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(69, 111, 255, 0.56),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #1d2b43,
      #070d18 74%
    );
}

.transfer-visual::before {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(6deg);
}

.transfer-initials {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.transfer-country {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-family: "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transfer-copy {
  min-height: 198px;
  padding: 20px;
  color: var(--ink);
  background: #f8f7f3;
}

.transfer-copy h3 {
  margin-bottom: 5px;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

.transfer-copy .role {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

.transfer-route {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.transfer-route strong {
  font-size: 0.76rem;
  line-height: 1.35;
}

.transfer-route span {
  color: var(--blue);
}

.track-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.75rem;
}

/* ======================================================
   SERVICES
====================================================== */

.services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-family: "Roboto Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
}

.service-card h3 {
  max-width: 260px;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ======================================================
   INTERNATIONAL NETWORK
====================================================== */

.network {
  color: var(--white);
  background: #0d1b31;
}

.network-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.network-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.market-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(
      circle at 52% 46%,
      rgba(45, 103, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #101f36,
      #07111f
    );
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
}

.market-map::before {
  content: "";
  position: absolute;
  width: 64%;
  height: 34%;
  left: 17%;
  top: 27%;
  opacity: 0.2;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius:
    50% 45% 53% 42% /
    54% 49% 47% 46%;
  transform: rotate(-8deg);
}

.market-dot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-dot i {
  display: block;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(91, 133, 255, 0.35);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 7px rgba(45, 103, 255, 0.13);
}

.dot-uk {
  left: 29%;
  top: 33%;
}

.dot-cyprus {
  left: 48%;
  top: 52%;
}

.dot-turkiye {
  left: 55%;
  top: 43%;
}

.dot-israel {
  left: 61%;
  top: 57%;
}

.dot-india {
  left: 78%;
  top: 60%;
}

.map-caption {
  position: absolute;
  left: 28px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Roboto Mono", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ======================================================
   PHILOSOPHY
====================================================== */

.philosophy {
  background: #e8e7e2;
}

.philosophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 270px;
  gap: 35px;
  align-items: end;
}

.quote-mark {
  margin: 0;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 0.62;
}

blockquote {
  max-width: 860px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.15rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.quote-credit {
  display: grid;
  gap: 7px;
  padding-bottom: 5px;
}

.quote-credit strong {
  font-family: "Manrope", sans-serif;
}

.quote-credit span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* ======================================================
   CONTACT
====================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.contact-links a {
  width: fit-content;
  color: #9db5ff;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line-dark);
  background: #0d1828;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-bright);
  box-shadow:
    0 0 0 3px rgba(45, 103, 255, 0.18);
}

.form-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

/* ======================================================
   FOOTER
====================================================== */

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255, 255, 255, 0.65);
  background: #040a13;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.65fr;
  gap: 70px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  font-size: 0.78rem;
}

.footer-grid p {
  max-width: 340px;
  font-size: 0.78rem;
}

.brand-footer {
  width: fit-content;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.68rem;
}

/* ======================================================
   SCROLL REVEAL
====================================================== */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   REDUCED MOTION
====================================================== */

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

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

  * {
    transition-duration: 0.01ms !important;
  }
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-feature {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 45px;
  }

  .profile-facts {
    grid-template-columns: 1fr 1fr;
  }

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

  .transfer-card:nth-child(n + 4) {
    display: none;
  }

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

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

/* ======================================================
   MOBILE AND SMALL TABLET
====================================================== */

@media (max-width: 820px) {
  :root {
    --shell: min(calc(100% - 28px), 680px);
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 69px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line-dark);
    background: rgba(5, 13, 25, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 8px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 660px;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: center;
  }

  .hero-copy {
    padding: 100px 0 50px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .hero-panel {
    display: none;
  }

  .pitch-lines {
    right: -42%;
    width: 125%;
    opacity: 0.12;
  }

  .section {
    padding: 80px 0;
  }

  .about-intro {
    margin-bottom: 38px;
    padding-bottom: 34px;
  }

  .about-intro h2 {
    max-width: 660px;
    font-size: clamp(2.45rem, 8.8vw, 4rem);
    line-height: 1.02;
  }

  .about-feature,
  .network-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portrait-card,
  .portrait-card img {
    min-height: 570px;
    height: 570px;
  }

  .portrait-card img {
    object-position: center 24%;
  }

  .about-story {
    max-width: none;
  }

  .about-story .lead {
    font-size: clamp(1.35rem, 4.2vw, 1.85rem);
  }

  .profile-facts {
    margin-top: 55px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .philosophy-grid {
    grid-template-columns: 55px 1fr;
  }

  .quote-credit {
    grid-column: 2;
  }

  .contact-copy {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 560px) {
  .proof-grid,
  .services-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(3) {
    min-height: 76px;
    border-left: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .about {
    padding-top: 72px;
  }

  .about-intro {
    margin-bottom: 28px;
    padding-bottom: 27px;
  }

  .about-intro .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .about-intro h2 {
    font-size: clamp(2.1rem, 10.6vw, 3.15rem);
    line-height: 1.02;
  }

  .about-feature {
    gap: 27px;
  }

  .portrait-card,
  .portrait-card img {
    min-height: 410px;
    height: 410px;
  }

  .portrait-card img {
    object-position: center 22%;
  }

  .portrait-card figcaption {
    left: 21px;
    right: 21px;
    bottom: 20px;
  }

  .portrait-card figcaption span {
    font-size: 1rem;
  }

  .portrait-card figcaption small {
    margin-top: 3px;
    font-size: 0.73rem;
  }

  .about-story p {
    margin-bottom: 17px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .about-story .lead {
    margin-bottom: 20px;
    font-size: 1.18rem;
    line-height: 1.38;
  }

  .text-link {
    margin-top: 9px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .profile-fact {
    min-height: auto;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 24px;
  }

  .profile-number {
    margin: 4px 0 0;
  }

  .profile-fact h3 {
    max-width: none;
    font-size: 0.98rem;
  }

  .profile-fact p {
    font-size: 0.77rem;
  }

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

  .transfer-card:nth-child(n + 4) {
    display: block;
  }

  .transfer-visual {
    min-height: 210px;
  }

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

  .quote-mark {
    height: 55px;
  }

  .quote-credit {
    grid-column: 1;
  }

  .market-map {
    min-height: 370px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}