:root {
  --navy: #0b3158;
  --navy-deep: #071f3c;
  --navy-soft: #123f70;
  --copper: #c9822b;
  --copper-light: #e0a350;
  --paper: #f6f3ed;
  --white: #ffffff;
  --ink: #1d334b;
  --muted: #6d7c8b;
  --line: #d9e0e6;
  --card: #edf3f8;
  --success: #2f7a61;
  --shadow: 0 18px 55px rgba(8, 31, 58, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

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

.site-header {
  min-height: 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  color: var(--white);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -6px;
  padding-right: 5px;
  font-weight: 300;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 130, 43, 0.72);
  border-radius: 50%;
}

.mark-z,
.mark-n,
.mark-d {
  position: relative;
  z-index: 1;
}

.mark-z,
.mark-d {
  color: var(--white);
}

.mark-n {
  color: var(--copper-light);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  letter-spacing: 0.05em;
  font-size: 13px;
}

.brand-copy small {
  color: var(--copper-light);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.site-nav a {
  color: rgba(255,255,255,0.88);
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--copper-light);
}

.site-nav .nav-cta {
  border: 1px solid rgba(224,163,80,0.92);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  background: transparent;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

.hero {
  min-height: 760px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 42%, rgba(46, 100, 161, .55), transparent 28%),
    linear-gradient(104deg, var(--navy-deep) 0%, var(--navy) 58%, #15518a 100%);
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.37) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.37) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: 130px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.eyebrow.navy {
  color: var(--copper);
}

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

.hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-intro {
  max-width: 570px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover {
  background: #dd963e;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.42);
  color: var(--white);
}

.hero-metrics {
  display: flex;
  gap: 36px;
  margin-top: 70px;
}

.hero-metrics div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-metrics span {
  color: var(--copper-light);
  font-size: 24px;
  font-weight: 700;
}

.hero-metrics p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  line-height: 1.2;
}

.hero-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50vw, 720px);
  height: 84%;
  z-index: 2;
}

.city-shape {
  position: absolute;
  bottom: 0;
  width: 8%;
  background: linear-gradient(to top, #0b2e55, #3d75b8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.city-shape::before {
  content: "";
  position: absolute;
  inset: 14px 20% 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.85) 0 15%, transparent 15% 45%, rgba(255,255,255,.85) 45% 60%, transparent 60%),
    repeating-linear-gradient(to bottom, transparent 0 11px, rgba(255,255,255,.86) 11px 16px, transparent 16px 29px);
  opacity: .8;
}

.city-one { left: 3%; height: 47%; }
.city-two { left: 13%; height: 72%; width: 9%; }
.city-three { left: 24%; height: 38%; }
.city-four { left: 34%; height: 55%; }
.city-five { left: 45%; height: 46%; }
.city-six { left: 56%; height: 63%; }
.city-seven { left: 68%; height: 35%; width: 12%; }

.signal-line {
  position: absolute;
  height: 1px;
  background: var(--copper);
  transform-origin: left center;
  opacity: .9;
}

.signal-one { width: 68%; left: 8%; top: 28%; transform: rotate(11deg); }
.signal-two { width: 72%; left: 5%; top: 51%; transform: rotate(-7deg); }
.signal-three { width: 65%; left: 20%; top: 65%; transform: rotate(18deg); }

.signal-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--copper);
  border-radius: 50%;
}

.signal-node::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 5px;
  left: 5px;
  background: var(--copper);
  border-radius: 50%;
}

.node-one { top: 27%; left: 48%; }
.node-two { top: 52%; left: 72%; }
.node-three { top: 66%; left: 31%; }

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201,130,43,.35);
  border-radius: 50%;
  z-index: 1;
}

.orbit-one { width: 700px; height: 700px; right: -210px; top: 80px; }
.orbit-two { width: 520px; height: 520px; right: -115px; top: 180px; }
.orbit-three { width: 330px; height: 330px; right: 10px; top: 290px; }

section {
  padding: 112px 0;
}

.section-light {
  background: var(--paper);
}

.statement-layout,
.direction-layout,
.sawwari-layout,
.mechaniqi-layout,
.commitment-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

.statement-copy {
  font-size: 17px;
  color: #40566c;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 62px;
}

.pillar-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(10,49,88,.05);
}

.pillar-card span,
.governance-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  margin-bottom: 18px;
}

.pillar-card h3 {
  color: var(--navy);
  margin-bottom: 9px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .03em;
}

.pillar-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.direction {
  background: var(--navy);
  color: var(--white);
}

.direction h2 {
  color: var(--white);
}

.direction-copy > p:last-child {
  max-width: 450px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.direction-cards {
  display: grid;
  gap: 15px;
}

.direction-cards article {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 20px 22px;
}

.direction-cards span {
  color: var(--copper-light);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
}

.direction-cards h3 {
  margin: 5px 0 7px;
  font-size: 18px;
}

.direction-cards p {
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: 13px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.journey article {
  position: relative;
  min-height: 220px;
  padding: 26px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.journey article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 17px;
  right: 17px;
  height: 3px;
  background: var(--copper);
  border-radius: 3px;
}

.journey span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  margin-bottom: 18px;
}

.journey h3 {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.journey p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.ecosystem {
  background: linear-gradient(145deg, #0a2b50, #113f70);
  color: var(--white);
  overflow: hidden;
}

.section-heading-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-heading-center h2 {
  color: var(--white);
}

.section-heading-center > p:last-child {
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

.ecosystem-map {
  min-height: 580px;
  position: relative;
  margin-top: 50px;
}

.ecosystem-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(224,163,80,.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { width: 230px; height: 230px; }
.ring-b { width: 385px; height: 385px; border-color: rgba(255,255,255,.2); }
.ring-c { width: 530px; height: 530px; border-color: rgba(224,163,80,.23); }

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 20%, #174d83, var(--navy-deep));
  border: 2px solid var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(255,255,255,.06);
}

.center-logo {
  color: var(--white);
  font-size: 43px;
  letter-spacing: -11px;
  padding-right: 10px;
  line-height: 1;
}

.center-logo .mark-n {
  color: var(--copper-light);
}

.ecosystem-center strong {
  margin-top: 10px;
  letter-spacing: .05em;
  font-size: 13px;
}

.ecosystem-center small {
  color: var(--copper-light);
  font-size: 7px;
  margin-top: 4px;
}

.eco-card {
  width: 170px;
  position: absolute;
  text-align: center;
}

.eco-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  background: var(--navy-deep);
  border: 2px solid var(--copper);
  outline: 4px solid rgba(255,255,255,.09);
  border-radius: 50%;
  font-size: 11px;
}

.eco-card h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}

.eco-one { top: 12%; left: 8%; }
.eco-two { top: 12%; right: 8%; }
.eco-three { top: 42%; left: 1%; }
.eco-four { top: 42%; right: 1%; }
.eco-five { bottom: 4%; left: 16%; }
.eco-six { bottom: 4%; right: 16%; }

.platforms-section {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
}

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

.platform-card {
  min-height: 338px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 14px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.platform-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -110px;
  border: 1px solid rgba(224,163,80,.28);
  border-radius: 50%;
}

.platform-card:nth-child(even) {
  background: linear-gradient(145deg, #153f6b, #0c2747);
}

.platform-card:nth-child(3n) {
  background: linear-gradient(145deg, #123d66, #0a223e);
}

.platform-number {
  color: var(--copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.platform-card h3 {
  max-width: 260px;
  margin: 15px 0 12px;
  font-size: 21px;
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.platform-card p {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.platform-card ul {
  padding: 0;
  margin: auto 0 0;
  position: relative;
  z-index: 1;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.platform-card li {
  position: relative;
  padding: 5px 0 5px 13px;
}

.platform-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--copper-light);
  border-radius: 50%;
}

.platform-card a {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: var(--copper-light);
  font-size: 12px;
  font-weight: 700;
}

.status-tag {
  width: fit-content;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .08em;
  font-weight: 700;
}

.live {
  border-color: #67b396;
  color: #a7dcc8;
}

.planned {
  border-color: var(--copper-light);
  color: var(--copper-light);
}

.sawwari-feature {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(61,118,180,.36), transparent 30%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
}

.sawwari-feature h2,
.commitment h2,
.contact h2 {
  color: var(--white);
}

.sawwari-feature p,
.commitment p,
.contact p {
  color: rgba(255,255,255,.75);
}

.sawwari-graphic {
  min-height: 330px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent),
    linear-gradient(135deg, #174d82 0%, #0b284a 100%);
  border: 1px solid rgba(255,255,255,.18);
}

.sawwari-graphic::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 180px;
  left: -20%;
  bottom: 45px;
  background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.18) 34px 38px);
  border-top: 1px solid rgba(255,255,255,.25);
  transform: perspective(380px) rotateX(62deg);
}

.route {
  position: absolute;
  border: 2px dashed var(--copper-light);
  border-radius: 50%;
  opacity: .9;
}

.route-one { width: 270px; height: 145px; top: 38px; left: 40px; transform: rotate(-18deg); }
.route-two { width: 200px; height: 120px; right: 30px; top: 125px; transform: rotate(35deg); }
.route-three { width: 180px; height: 90px; left: 150px; bottom: 35px; transform: rotate(13deg); }

.vehicle {
  position: absolute;
  z-index: 3;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}

.vehicle::before,
.vehicle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #091c33;
}

.vehicle::before { left: 10px; }
.vehicle::after { right: 10px; }

.vehicle-car {
  width: 116px;
  height: 43px;
  border-radius: 19px 25px 12px 12px;
  right: 58px;
  bottom: 78px;
}

.vehicle-car::selection {
  color: transparent;
}

.vehicle-rickshaw {
  width: 62px;
  height: 58px;
  left: 70px;
  bottom: 92px;
  border-radius: 25px 25px 10px 10px;
  background: #28795d;
}

.vehicle-bike {
  width: 38px;
  height: 18px;
  left: 220px;
  bottom: 118px;
  border-radius: 12px;
  background: var(--copper);
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.feature-points span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.83);
  font-size: 12px;
}

.mechaniqi-layout {
  align-items: start;
}

.mechaniqi-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.mechaniqi-list div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.mechaniqi-list strong {
  color: var(--navy);
}

.mechaniqi-list span {
  color: var(--muted);
  font-size: 14px;
}

.mechaniqi-visual {
  min-height: 395px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.service-window {
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a4f80, #0b2c51);
}

.service-window::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.55) 0 3%, transparent 4%),
    linear-gradient(135deg, transparent 42%, rgba(224,163,80,.9) 43% 44%, transparent 45%);
}

.service-window span,
.service-window b {
  position: relative;
  z-index: 1;
}

.service-window span {
  color: var(--copper-light);
  font-size: 10px;
  letter-spacing: .1em;
  margin-bottom: 7px;
}

.service-window b {
  font-size: 16px;
  line-height: 1.15;
}

.home-window {
  grid-row: span 2;
  background: linear-gradient(145deg, #0d335d, #31587f);
}

.corporate-window {
  background: linear-gradient(145deg, #123f6d, #0b2748);
}

.industrial-window {
  background: linear-gradient(145deg, #194b71, #0c2d4e);
}

.governance {
  background: var(--navy);
  color: var(--white);
}

.governance h2 {
  color: var(--white);
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.governance-grid article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  padding: 25px;
  border-radius: 12px;
}

.governance-grid h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.governance-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.industries h2 {
  max-width: 820px;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.industry-cloud span {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.roadmap {
  color: var(--white);
  background: linear-gradient(130deg, #071f3c, #123f70);
}

.roadmap h2 {
  color: var(--white);
}

.roadmap-top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
}

.roadmap-top > p {
  color: rgba(255,255,255,.7);
  margin: 0 0 28px;
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 65px;
}

.roadmap-line::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 26px;
  height: 2px;
  background: var(--copper);
}

.roadmap-line article {
  position: relative;
  padding-top: 58px;
}

.roadmap-line span {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--copper);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
}

.roadmap-line h3 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.roadmap-line p {
  color: rgba(255,255,255,.67);
  font-size: 13px;
  margin: 0;
}

.commitment {
  color: var(--white);
  background: var(--navy-deep);
}

.commitment-symbol {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  border: 2px solid var(--copper);
  border-radius: 50%;
  font-size: 54px;
  font-weight: 300;
  letter-spacing: -12px;
  padding-right: 12px;
  color: var(--white);
  box-shadow: 0 0 0 14px rgba(224,163,80,.08);
}

.contact {
  background: linear-gradient(130deg, #103a66, #0b284a);
  color: var(--white);
}

.contact-card {
  padding: 35px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.contact-card p {
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
}

.contact-card strong {
  color: var(--copper-light);
  font-size: 19px;
}

.contact-card a:hover {
  color: var(--copper-light);
}

.site-footer {
  padding: 36px 0;
  background: #061a31;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-layout strong {
  letter-spacing: .06em;
  font-size: 13px;
}

.footer-layout p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.footer-links a:hover {
  color: var(--copper-light);
}

.legal-note {
  text-align: right;
  font-size: 10px !important;
  max-width: 360px;
}

@media (max-width: 1050px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .roadmap-line::before {
    display: none;
  }

  .ecosystem-map {
    min-height: 760px;
  }

  .eco-one { top: 3%; left: 8%; }
  .eco-two { top: 3%; right: 8%; }
  .eco-three { top: 30%; left: 1%; }
  .eco-four { top: 30%; right: 1%; }
  .eco-five { bottom: 5%; left: 12%; }
  .eco-six { bottom: 5%; right: 12%; }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 74px;
    position: absolute;
    padding: 12px 20px;
  }

  .site-nav {
    display: none;
    width: calc(100% - 40px);
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(7,31,60,.97);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 770px;
  }

  .hero-content {
    padding-top: 145px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-intro {
    max-width: 450px;
    font-size: 16px;
  }

  .hero-visual {
    width: 88vw;
    height: 48%;
    opacity: .62;
  }

  .hero-metrics {
    gap: 18px;
    margin-top: 48px;
  }

  .hero-metrics span {
    font-size: 18px;
  }

  section {
    padding: 74px 0;
  }

  .statement-layout,
  .direction-layout,
  .sawwari-layout,
  .mechaniqi-layout,
  .commitment-layout,
  .contact-layout,
  .roadmap-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pillars,
  .governance-grid {
    grid-template-columns: 1fr;
  }

  .journey,
  .roadmap-line {
    grid-template-columns: 1fr;
  }

  .journey article {
    min-height: auto;
  }

  .ecosystem-map {
    min-height: 920px;
  }

  .ecosystem-center {
    top: 43%;
  }

  .eco-card {
    width: 125px;
  }

  .eco-card h3 {
    font-size: 10px;
  }

  .eco-one { top: 2%; left: 2%; }
  .eco-two { top: 2%; right: 2%; }
  .eco-three { top: 23%; left: 0; }
  .eco-four { top: 23%; right: 0; }
  .eco-five { bottom: 5%; left: 4%; }
  .eco-six { bottom: 5%; right: 4%; }

  .ring-a { width: 180px; height: 180px; }
  .ring-b { width: 280px; height: 280px; }
  .ring-c { width: 390px; height: 390px; }

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

  .platform-card {
    min-height: 300px;
  }

  .mechaniqi-visual {
    min-height: 320px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-note {
    text-align: center;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-metrics {
    flex-wrap: wrap;
  }

  .statement-copy,
  .direction-copy > p:last-child {
    font-size: 15px;
  }

  .ecosystem-map {
    transform: scale(.9);
    transform-origin: top center;
    margin-bottom: -90px;
  }

  .mechaniqi-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .industry-cloud span {
    width: 100%;
  }
}
