:root {
  --navy-950: #042d3f;
  --navy-900: #073f57;
  --navy-800: #0a506c;
  --cyan-700: #087f9d;
  --cyan-500: #13a6c8;
  --gold-700: #a76b11;
  --gold-600: #c1852b;
  --gold-500: #dfaa52;
  --gold-400: #f0c77d;
  --cream: #fbf8f1;
  --sand: #efe8da;
  --ink: #0d2732;
  --muted: #64747b;
  --line: rgba(7, 63, 87, 0.13);
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(3, 47, 64, 0.12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1240px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 10px;
}

.kicker-light {
  color: var(--gold-400);
}

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

.section-heading h2,
.network-copy h2,
.contact-copy h2,
.values-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  color: var(--navy-950);
}

.section-heading h2 span,
.network-copy h2 span,
.contact-copy h2 span {
  color: var(--gold-600);
}

.section-heading p,
.network-copy p,
.contact-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 72px;
  align-items: end;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
}

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

.centered .kicker {
  justify-content: center;
}

.centered p {
  max-width: 690px;
  margin-inline: auto;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-950);
  display: grid;
  place-items: center;
  transition: opacity .65s ease, visibility .65s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 118px;
  height: 118px;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  animation: loaderFloat 1.5s ease-in-out infinite;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-line {
  position: absolute;
  width: 180px;
  height: 2px;
  margin-top: 164px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: var(--gold-500);
  animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderFloat {
  50% { transform: translateY(-8px); }
}

@keyframes loaderLine {
  from { transform: translateX(220%); }
  to { transform: translateX(-320%); }
}

/* Header */
.site-header {
  height: var(--header-height);
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(4, 45, 63, .07);
  border-bottom-color: rgba(7, 63, 87, .08);
}

.header-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 87, .09);
  box-shadow: 0 8px 22px rgba(3, 47, 64, .08);
  background: #fff;
  flex: 0 0 auto;
}

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

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

.brand-copy b {
  font-size: 14px;
  color: var(--navy-950);
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-700);
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: .12em;
  direction: ltr;
  text-align: right;
}

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

.desktop-nav > a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  color: #304750;
  transition: color .25s ease;
}

.desktop-nav > a:not(.nav-dream)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}

.desktop-nav > a:hover {
  color: var(--navy-900);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after {
  width: 100%;
}

.nav-dream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-700) !important;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.mini-dream-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--navy-900);
  background: rgba(223, 170, 82, .18);
}

.mini-dream-icon svg {
  width: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 16px;
  border: 0;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-contact {
  min-height: 46px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(7, 63, 87, .18);
}

.btn-contact svg {
  color: var(--gold-400);
}

.btn-primary {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 18px 40px rgba(7, 63, 87, .2);
}

.btn-primary:hover {
  background: var(--navy-950);
  box-shadow: 0 20px 48px rgba(7, 63, 87, .27);
}

.btn-ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(7, 63, 87, .13);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--navy-950);
  border-radius: 3px;
  transition: .25s ease;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Floating dream house */
.dream-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: var(--navy-950);
  padding: 10px 12px 10px 17px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(4, 45, 63, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.dream-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(4, 45, 63, .36);
}

.dream-float-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.dream-float-icon svg {
  width: 26px;
}

.dream-float-copy {
  display: grid;
  line-height: 1.35;
}

.dream-float-copy small {
  font-size: 8px;
  color: rgba(255, 255, 255, .6);
}

.dream-float-copy b {
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  padding: calc(var(--header-height) + 86px) 0 54px;
  background:
    radial-gradient(circle at 8% 25%, rgba(19, 166, 200, .1), transparent 22%),
    radial-gradient(circle at 75% 15%, rgba(223, 170, 82, .12), transparent 20%),
    linear-gradient(180deg, #fff 0%, #fbfcfb 62%, #f6f9f8 100%);
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(7, 63, 87, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 87, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(7, 63, 87, .08);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
  left: -240px;
  top: 130px;
}

.orbit-two {
  width: 320px;
  height: 320px;
  right: -180px;
  bottom: 80px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  padding-top: 30px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 107, 17, .16);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 10px 30px rgba(7, 63, 87, .06);
  color: var(--gold-700);
  font-size: 10px;
  font-weight: 900;
}

.eyebrow-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(223, 170, 82, .2);
}

.eyebrow-icon svg {
  width: 19px;
}

.eyebrow b {
  color: var(--navy-900);
  font-size: 14px;
}

.hero h1 {
  margin: 30px 0 24px;
  color: var(--navy-950);
  font-size: clamp(50px, 6.4vw, 88px);
  line-height: 1.13;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--gold-600);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #546a73;
  font-size: 17px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.trust-line {
  width: 44px;
  height: 1px;
  background: var(--gold-500);
}

.hero-trust p {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.5;
}

.hero-trust b {
  font-size: 10px;
  color: var(--navy-900);
}

.hero-trust span {
  font-size: 9px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.visual-backplate {
  position: absolute;
  width: 430px;
  height: 530px;
  border-radius: 60% 60% 42% 42% / 42% 42% 58% 58%;
  background:
    linear-gradient(150deg, rgba(7, 63, 87, .98), rgba(8, 127, 157, .88));
  transform: rotate(-4deg);
  box-shadow: 0 35px 80px rgba(7, 63, 87, .18);
}

.visual-backplate::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
}

.logo-stage {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  display: grid;
  place-items: center;
}

.logo-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
}

.halo-one {
  inset: 0;
  animation: haloSpin 22s linear infinite;
}

.halo-two {
  inset: 42px;
  border-style: dashed;
  animation: haloSpin 16s linear reverse infinite;
}

.halo-one::before,
.halo-two::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-400);
  top: 35px;
  right: 53px;
  box-shadow: 0 0 0 9px rgba(223, 170, 82, .13);
}

.halo-two::before {
  background: var(--cyan-500);
  top: auto;
  right: auto;
  bottom: 12px;
  left: 52px;
  box-shadow: 0 0 0 8px rgba(19, 166, 200, .12);
}

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

.logo-card {
  width: 275px;
  height: 275px;
  border-radius: 50%;
  background: #fff;
  padding: 13px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .19),
    inset 0 0 0 1px rgba(7, 63, 87, .05);
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(4, 45, 63, .13);
}

.hero-card-one {
  top: 86px;
  right: -12px;
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
}

.card-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-700);
  background: rgba(223, 170, 82, .16);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.hero-card > div {
  display: grid;
  line-height: 1.45;
}

.hero-card small {
  color: var(--muted);
  font-size: 8px;
}

.hero-card b {
  color: var(--navy-950);
  font-size: 11px;
}

.hero-card-dream {
  bottom: 74px;
  left: -20px;
  min-width: 250px;
  padding: 16px 18px;
  border-radius: 20px;
  transition: transform .25s ease;
}

.hero-card-dream:hover {
  transform: translateY(-5px);
}

.dream-card-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
}

.dream-card-mark svg {
  width: 30px;
}

.hero-card-dream em {
  color: var(--gold-700);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  margin-top: 3px;
}

.visual-dots {
  position: absolute;
  left: 36px;
  top: 154px;
  z-index: 5;
  display: flex;
  gap: 5px;
  transform: rotate(90deg);
}

.visual-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}

.hero-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: 1px solid rgba(7, 63, 87, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 20px 55px rgba(4, 45, 63, .07);
  overflow: hidden;
}

.metric {
  min-height: 116px;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.metric:last-child {
  border-left: 0;
}

.metric strong {
  color: var(--navy-900);
  font-family: "Tajawal", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.metric span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.metric-accent {
  color: #fff;
  background: var(--navy-950);
}

.metric-accent-label {
  width: fit-content;
  margin: 0 0 8px !important;
  color: var(--gold-400) !important;
  font-size: 9px !important;
}

.metric-accent b {
  font-size: 13px;
  line-height: 1.8;
}

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.about-feature {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(193, 133, 43, .3);
}

.about-feature-main {
  background:
    radial-gradient(circle at 25% 20%, rgba(19, 166, 200, .18), transparent 25%),
    var(--navy-950);
  border-color: transparent;
  color: #fff;
}

.feature-no {
  position: absolute;
  left: 28px;
  top: 26px;
  color: rgba(7, 63, 87, .18);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.about-feature-main .feature-no {
  color: rgba(255, 255, 255, .3);
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--navy-900);
  background: var(--cream);
  margin-bottom: 72px;
}

.feature-icon svg {
  width: 31px;
}

.about-feature-main .feature-icon {
  color: var(--navy-950);
  background: var(--gold-400);
}

.about-feature h3 {
  margin: 0 0 16px;
  color: var(--navy-950);
  font-size: 20px;
  line-height: 1.55;
}

.about-feature-main h3 {
  color: #fff;
}

.about-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.about-feature-main p {
  color: rgba(255, 255, 255, .7);
}

/* Philosophy */
.philosophy {
  padding-top: 0;
}

.philosophy-shell {
  position: relative;
  min-height: 640px;
  padding: 84px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 85% 12%, rgba(19, 166, 200, .18), transparent 26%),
    linear-gradient(135deg, var(--navy-950), #06283a 78%);
  color: #fff;
  overflow: hidden;
}

.philosophy-shell::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  left: -190px;
  bottom: -230px;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, .025),
    0 0 0 140px rgba(255, 255, 255, .018);
}

.philosophy-number {
  position: absolute;
  left: 48px;
  top: 42px;
  color: rgba(255, 255, 255, .035);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-5deg);
}

.philosophy-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.philosophy-copy blockquote {
  margin: 4px 0 28px;
  font-size: clamp(32px, 4.3vw, 59px);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.philosophy-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 2.1;
}

.philosophy-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 65px;
}

.ph-point {
  padding: 22px 22px 25px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

.ph-point b {
  display: block;
  color: var(--gold-400);
  font-size: 16px;
  margin-bottom: 6px;
}

.ph-point span {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

/* Work */
.work {
  background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(7, 63, 87, .06);
  box-shadow: 0 0 0 25px rgba(7, 63, 87, .02);
  transition: transform .35s ease;
}

.work-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 65px rgba(4, 45, 63, .1);
}

.work-card:hover::after {
  transform: scale(1.25);
}

.work-index {
  position: absolute;
  left: 28px;
  top: 28px;
  color: #a8b2b5;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.work-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-900);
  background: rgba(7, 63, 87, .07);
  margin-bottom: 56px;
}

.work-icon svg {
  width: 31px;
}

.work-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 18px;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
}

/* Dream House */
.dream-house {
  position: relative;
}

.dream-shell {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 68px;
  align-items: center;
  padding: 82px;
  border-radius: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 15%, rgba(19, 166, 200, .28), transparent 24%),
    radial-gradient(circle at 90% 82%, rgba(223, 170, 82, .19), transparent 28%),
    linear-gradient(135deg, #043247, #052c3d);
  overflow: hidden;
  box-shadow: 0 35px 95px rgba(4, 45, 63, .18);
}

.dream-pattern {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(255,255,255,.08) 25%, rgba(255,255,255,.08) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.08) 75%, rgba(255,255,255,.08) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(255,255,255,.06) 25%, rgba(255,255,255,.06) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.06) 75%, rgba(255,255,255,.06) 76%, transparent 77%);
  background-size: 48px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.dream-content {
  position: relative;
  z-index: 2;
}

.dream-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 900;
}

.dream-badge-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.dream-badge-icon svg {
  width: 21px;
}

.dream-content h2 {
  margin: 28px 0 5px;
  color: #fff;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dream-content h3 {
  max-width: 650px;
  margin: 22px 0;
  color: var(--gold-400);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.65;
}

.dream-content p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 2.15;
}

.dream-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 34px;
}

.dream-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: 8px;
  background: rgba(255, 255, 255, .04);
}

.btn-dream {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 18px 45px rgba(223, 170, 82, .16);
}

.btn-dream:hover {
  background: #f4d090;
}

.dream-visual {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.dream-orbit {
  position: relative;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  animation: subtleRotate 38s linear infinite;
}

.dream-orbit::before,
.dream-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
}

.dream-orbit::before {
  inset: 50px;
}

.dream-orbit::after {
  inset: 100px;
}

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

.dream-center {
  position: absolute;
  inset: 50%;
  width: 190px;
  height: 190px;
  transform: translate(50%, -50%) rotate(0deg);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .24);
  animation: counterRotate 38s linear infinite;
}

@keyframes counterRotate {
  to { transform: translate(50%, -50%) rotate(-360deg); }
}

.dream-center-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  margin-bottom: 10px;
}

.dream-center-icon svg {
  width: 36px;
}

.dream-center b {
  font-size: 16px;
}

.dream-center small {
  color: var(--muted);
  font-size: 7px;
}

.orbit-node {
  position: absolute;
  min-width: 116px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  font-size: 8px;
  animation: counterRotate 38s linear infinite;
}

.node-a { top: 18px; right: 58px; }
.node-b { top: 174px; left: -32px; }
.node-c { bottom: 20px; right: 58px; }
.node-d { top: 174px; right: -38px; }

/* Network */
.network-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.network-copy {
  max-width: 530px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
}

.text-link span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  transition: transform .25s ease;
}

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

.network-board {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 50%, rgba(19, 166, 200, .12), transparent 30%),
    var(--cream);
  border: 1px solid rgba(7, 63, 87, .08);
  overflow: hidden;
}

.network-core {
  position: absolute;
  z-index: 3;
  inset: 50%;
  width: 145px;
  height: 145px;
  transform: translate(50%, -50%);
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 25px 60px rgba(4, 45, 63, .16);
  overflow: hidden;
}

.network-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.network-item {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px 19px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 63, 87, .08);
  box-shadow: 0 16px 42px rgba(4, 45, 63, .08);
}

.network-item span {
  color: var(--gold-600);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.network-item b {
  display: block;
  margin: 6px 0 4px;
  color: var(--navy-950);
  font-size: 12px;
}

.network-item small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
}

.item-one { top: 65px; right: 48px; }
.item-two { top: 62px; left: 42px; }
.item-three { bottom: 62px; right: 45px; }
.item-four { bottom: 60px; left: 38px; }

.network-lines {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  color: rgba(7, 63, 87, .18);
  stroke-dasharray: 8 10;
  animation: lineDash 16s linear infinite;
}

@keyframes lineDash {
  to { stroke-dashoffset: -200; }
}

/* Programs */
.programs {
  background: #fbfaf6;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
}

.program-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(4, 45, 63, .09);
}

.program-featured {
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(19, 166, 200, .22), transparent 25%),
    var(--navy-950);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(4, 45, 63, .16);
}

.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.program-label {
  color: var(--gold-700);
  font-size: 8px;
  font-weight: 900;
}

.program-featured .program-label {
  color: var(--gold-400);
}

.program-arrow,
.program-no {
  color: #a4b0b4;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.program-featured .program-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.program-dream-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 50px 0 26px;
  border-radius: 22px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
}

.program-dream-icon svg {
  width: 40px;
}

.program-card h3 {
  margin: auto 0 15px;
  color: var(--navy-950);
  font-size: 21px;
  line-height: 1.5;
}

.program-featured h3 {
  margin-top: 0;
  color: #fff;
  font-size: 31px;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 2;
}

.program-featured p {
  color: rgba(255, 255, 255, .66);
}

.program-cta {
  margin-top: 24px;
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 900;
}

.program-line {
  width: 100%;
  height: 2px;
  margin-top: 34px;
  background: linear-gradient(90deg, var(--gold-500) 0 35%, rgba(7, 63, 87, .07) 35% 100%);
}

/* Values */
.values {
  background: #fff;
}

.values-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  padding: 76px;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(223, 170, 82, .14), transparent 22%),
    linear-gradient(135deg, #063e54, #052a3a);
}

.values-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
}

.values-list {
  display: grid;
  gap: 13px;
}

.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
}

.value-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.value-item b {
  display: block;
  color: #fff;
  font-size: 14px;
  margin: 1px 0 5px;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 10% 80%, rgba(19, 166, 200, .1), transparent 20%),
    #fbfaf6;
}

.contact-shell {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.contact-copy p {
  max-width: 610px;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.contact-details a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
}

.contact-detail-icon svg {
  width: 22px;
}

.contact-details a > span:last-child,
.contact-details > div > span:last-child {
  display: grid;
  line-height: 1.55;
}

.contact-details small {
  color: var(--muted);
  font-size: 8px;
}

.contact-details b {
  color: var(--navy-950);
  font-size: 11px;
}

.contact-card {
  padding: 36px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(7, 63, 87, .08);
  box-shadow: 0 25px 70px rgba(4, 45, 63, .09);
}

.contact-form {
  display: grid;
  gap: 17px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--navy-950);
  font-size: 9px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 63, 87, .12);
  border-radius: 15px;
  outline: 0;
  color: var(--ink);
  background: #fbfcfc;
  padding: 14px 16px;
  font-size: 11px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form input {
  height: 50px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-700);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 127, 157, .08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa6aa;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

/* Dream strip */
.dream-strip {
  padding: 0 0 46px;
  background: #fbfaf6;
}

.dream-strip-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  border-radius: 25px;
  color: #fff;
  background: var(--navy-950);
}

.dream-strip-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dream-strip-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.dream-strip-icon svg {
  width: 29px;
}

.dream-strip-copy > div {
  display: grid;
  line-height: 1.5;
}

.dream-strip-copy small {
  color: var(--gold-400);
  font-size: 8px;
}

.dream-strip-copy b {
  font-size: 13px;
}

.dream-strip-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 900;
}

.dream-strip-inner > a span {
  font-size: 18px;
}

/* Footer */
.site-footer {
  padding: 70px 0 25px;
  color: #fff;
  background: #031f2c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .55fr .7fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand-link .brand-logo {
  width: 72px;
  height: 72px;
  border: 0;
}

.footer-brand-link .brand-copy b {
  color: #fff;
  font-size: 16px;
}

.footer-brand-link .brand-copy small {
  color: var(--gold-400);
}

.footer-brand > p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  line-height: 2;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links b {
  color: var(--gold-400);
  font-size: 11px;
  margin-bottom: 10px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(-4px);
}

.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: max-height .35s ease;
  }

  .mobile-menu.is-open {
    max-height: 520px;
  }

  .mobile-menu-inner {
    display: grid;
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(7, 63, 87, .07);
    color: var(--navy-950);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-dream {
    color: var(--gold-700) !important;
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .visual-backplate {
    width: 380px;
    height: 490px;
  }

  .logo-stage {
    width: 320px;
    height: 320px;
  }

  .logo-card {
    width: 245px;
    height: 245px;
  }

  .hero-card-one {
    right: -5px;
  }

  .hero-card-dream {
    left: -4px;
  }

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

  .dream-shell {
    padding: 66px;
    gap: 30px;
  }

  .dream-orbit {
    width: 390px;
    height: 390px;
  }

  .network-layout {
    gap: 40px;
  }

  .network-item {
    width: 190px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 90px 0;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .brand-copy {
    display: none;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .visual-backplate {
    width: min(430px, 75vw);
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-left: 0;
  }

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

  .split-heading,
  .network-layout,
  .contact-shell,
  .values-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .about-feature-main {
    grid-column: 1 / -1;
  }

  .philosophy-shell {
    padding: 60px 42px;
  }

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

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

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

  .dream-visual {
    order: -1;
  }

  .network-copy {
    max-width: 720px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .header-actions .btn-contact {
    display: none;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .dream-float {
    left: 13px;
    bottom: 13px;
    padding: 8px;
    border-radius: 16px;
  }

  .dream-float-icon {
    width: 44px;
    height: 44px;
  }

  .dream-float-copy {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 2;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-backplate {
    width: 330px;
    height: 405px;
    max-width: 88vw;
  }

  .logo-stage {
    width: 275px;
    height: 275px;
  }

  .logo-card {
    width: 205px;
    height: 205px;
  }

  .hero-card-one {
    min-width: 174px;
    top: 65px;
    right: -2px;
    padding: 11px;
  }

  .card-symbol {
    width: 40px;
    height: 40px;
  }

  .hero-card-dream {
    min-width: 203px;
    bottom: 55px;
    left: -2px;
    padding: 12px;
  }

  .dream-card-mark {
    width: 46px;
    height: 46px;
  }

  .hero-metrics {
    margin-top: 38px;
  }

  .metric {
    min-height: 104px;
    padding: 20px;
  }

  .metric strong {
    font-size: 28px;
  }

  .section-heading h2,
  .network-copy h2,
  .contact-copy h2,
  .values-copy h2 {
    font-size: clamp(31px, 10vw, 48px);
  }

  .split-heading {
    gap: 24px;
  }

  .about-grid,
  .work-grid,
  .programs-grid,
  .philosophy-points,
  .field-row {
    grid-template-columns: 1fr;
  }

  .about-feature-main {
    grid-column: auto;
  }

  .about-feature {
    min-height: 340px;
  }

  .feature-icon {
    margin-bottom: 45px;
  }

  .philosophy-shell {
    min-height: auto;
    padding: 45px 24px;
    border-radius: 28px;
  }

  .philosophy-copy blockquote {
    font-size: 30px;
  }

  .philosophy-number {
    font-size: 86px;
    left: 16px;
    top: 20px;
  }

  .dream-shell {
    padding: 42px 24px;
    border-radius: 30px;
  }

  .dream-visual {
    min-height: 390px;
  }

  .dream-orbit {
    width: 305px;
    height: 305px;
  }

  .dream-center {
    width: 145px;
    height: 145px;
  }

  .dream-center-icon {
    width: 50px;
    height: 50px;
  }

  .orbit-node {
    min-width: 98px;
    min-height: 36px;
    font-size: 7px;
  }

  .node-a { top: 0; right: 32px; }
  .node-b { top: 128px; left: -17px; }
  .node-c { bottom: 0; right: 30px; }
  .node-d { top: 128px; right: -21px; }

  .network-board {
    min-height: 640px;
  }

  .network-core {
    width: 120px;
    height: 120px;
  }

  .network-item {
    width: calc(50% - 28px);
    padding: 15px;
  }

  .item-one { top: 50px; right: 15px; }
  .item-two { top: 50px; left: 15px; }
  .item-three { bottom: 48px; right: 15px; }
  .item-four { bottom: 48px; left: 15px; }

  .network-lines {
    opacity: .55;
  }

  .values-shell {
    padding: 45px 24px;
    border-radius: 28px;
  }

  .value-item {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .value-item > span {
    width: 40px;
    height: 40px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .dream-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dream-strip-inner > a {
    width: 100%;
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }
}

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