:root {
  --font-heading: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: #1B1B1B;
  background: #F6F5F2;
}
/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #0B3D3A;
}

h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #0B3D3A;
}

p {
  margin: 0;
}
.section {
  padding: 120px 0;
}

.section h2 {
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.wrap {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
}
.landing-hero {
  position: relative;
  padding: 116px 0 88px;
  min-height: 80vh;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 18% -18% auto -18%;
  height: 280px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(198, 167, 94, 0.14) 0,
      rgba(198, 167, 94, 0.14) 1px,
      transparent 1px,
      transparent 46px
    );
  transform: rotate(-7deg);
  opacity: 0.16;
  pointer-events: none;
  animation: runwayDrift 18s linear infinite;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
  }
.landing-hero {
  padding: 160px 0 120px;
}

.landing-hero-copy h1 {
  font-size: clamp(56px, 4.8vw, 74px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 10.8ch;
}
.landing-hero-copy {
  align-self: center;
}

.hero-chip-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip-row span {
  border: 1px solid rgba(11, 61, 58, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  font-weight: 700;
  background: rgba(20, 92, 84, 0.06);
  font-family: "Sora", "Manrope", sans-serif;
}

.hero-metrics {
  margin-top: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hero-metrics article {
  background: rgba(248, 247, 244, 0.6);
}
.startup-strip-inner span:not(:last-child)::after{
content:"•";
margin-left:10px;
color:#C6A75E;
}
.world-stage{
  width:100%;
  display:flex;
  align-items:stretch;
  align-self: stretch;
  }

.hero-video-frame{
  width:100%;
  min-height: 420px;
  border-radius:20px;
  overflow:hidden;
  background:#0a0f16;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
  display: flex;
}

.hero-video-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-frame video{
width:100%;
height:100%;
display:block;
object-fit:cover;
aspect-ratio:16/9;
}
.global-network{
  position:relative;
  aspect-ratio:1/1;
  border-radius:18px;
  background:linear-gradient(160deg,#0B3D3A,#0E4A46);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-video-frame::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,.05),
rgba(0,0,0,.25)
);
pointer-events:none;
}
.global-network svg{
  width:90%;
  height:auto;
}
.route{
 fill:none;
 stroke:rgba(255,255,255,0.5);
 stroke-width:1.5;
 stroke-dasharray:400;
 stroke-dashoffset:400;
 animation:drawRoute 2.5s ease forwards;
}

@keyframes drawRoute{
 to{stroke-dashoffset:0;}
}
.hub{
 fill:white;
}

.hub::after{
 content:"";
}
.global-network circle{
  fill:rgba(255,255,255,0.7);
}

.gcc{
  fill:#ffffff;
  r:6;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}
.region-strip {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.region-strip span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(198, 167, 94, 0.6);
  padding-bottom: 4px;
}
.global-core-media {
  position: relative;
  border: 1px solid rgba(198, 167, 94, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.06), transparent 42%),
    radial-gradient(circle at 66% 82%, rgba(47, 143, 138, 0.38), transparent 52%),
    #082d2c;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 10px;
}
.footer {
  background: #0B3D3A;
  color: rgba(255,255,255,0.85);
  padding: 32px 0;   /* reduced from 60px */
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-line {
  opacity: 0.8;
  margin-bottom: 6px;
}

.footer-parent {
  font-size: 13px;
  opacity: 0.75;
}

.footer-parent a {
  color: #C6A75E;
  text-decoration: none;
}

.footer-center p {
  margin: 2px 0;
}

.footer-right {
  text-align: right;
  font-size: 13px;
  opacity: 0.7;
}
.global-core-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(248, 247, 244, 0.33) 0 1.2px, transparent 2px),
    radial-gradient(circle at 68% 74%, rgba(198, 167, 94, 0.22) 0 1.2px, transparent 2px),
    radial-gradient(circle at 80% 26%, rgba(248, 247, 244, 0.24) 0 1.2px, transparent 2px),
    radial-gradient(circle at 44% 82%, rgba(248, 247, 244, 0.2) 0 1.2px, transparent 2px);
}

.earth-stage {
  position: relative;
   width: min(72%, 360px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.earth-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.earth-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.earth-halo {
  position: absolute;
  inset: -5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(198, 167, 94, 0)),
    radial-gradient(circle at 35% 40%, rgba(63, 155, 149, 0.33), rgba(63, 155, 149, 0));
  filter: blur(12px);
}

.world-stage-content {
  color: rgba(248, 247, 244, 0.94);
}

.world-stage-content h2 {
  margin-top: 8px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.08;
  color: #FFFFFF;
}

.lane-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lane-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(248, 247, 244, 0.16);
}

.lane-list span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(248, 247, 244, 0.78);
  font-family: "Sora", "Manrope", sans-serif;
}

.lane-list strong {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 500;
  color: var(--color-accent);
  font-family: "Sora", "Manrope", sans-serif;
}

.service-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  padding: 32px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.service-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
  transition: transform 0.8s ease;
}

.service-card:hover .service-media {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.12;
}

.service-card p {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.flow-lanes {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.flow-lane {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  overflow: hidden;
}

.flow-lane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 280px;
}

.flow-lane.is-reverse .flow-lane-grid {
  direction: rtl;
}

.flow-lane.is-reverse .flow-lane-copy {
  direction: ltr;
}

.flow-lane-media {
  position: relative;
  overflow: hidden;
}

.flow-lane-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.9s ease;
}

.flow-lane:hover .flow-lane-media img {
  transform: scale(1.08);
}

.flow-lane-copy {
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.flow-lane-kicker {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: "Sora", "Manrope", sans-serif;
}

.flow-lane-copy h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
}

.flow-lane-copy p {
  color: var(--color-text-muted);
  font-size: 16px;
}

.model-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

.model-card {
  border: 1px solid rgba(0,0,0,0.04);   /* extremely subtle */
  border-radius: 14px;
  background: #ffffff;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px; /* equal visual weight */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.model-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
  transition: transform 0.8s ease;
}

.model-card:hover .model-media {
  transform: scale(1.06);
}

.model-tag {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(11, 61, 58, 0.06);
  color: #0B3D3A;
  font-weight: 600;
  font-family: "Sora", "Manrope", sans-serif;
}

.model-card h3 {
  margin-top: 12px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 16ch;
  min-height: 54px;
}

.model-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
  color: #5A5A5A;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

.company-pill-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  letter-spacing: 0.05em;
}

.company-pill-grid .feature-item {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  background: rgba(248, 247, 244, 0.85);
  color: var(--color-secondary);
  padding: 10px 12px;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Sora", "Manrope", sans-serif;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(11,61,145,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
  margin-right:12px;
}
.feature-item:hover .feature-icon{
  transform:scale(1.1);
  box-shadow:0 10px 28px rgba(11,61,145,0.18);
}
.feature-icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
}
.icon-supplier{
  background:#EAF1FF;
  color:#0B3D91;
}
.icon-distributor{
  background:#E6F7F5;
  color:#0F766E;
}
.icon-investor{
  background:#EEF2FF;
  color:#3730A3;
}
.icon-sales{
  background:#FFF4E6;
  color:#C2410C;
}

.company-visual {
  margin-top: 16px;
}

.company-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  aspect-ratio: 16 / 8;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.reach-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  padding: 32px;
}

.reach-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.reach-card h3 {
  margin-top: 8px;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.08;
}

.reach-marquee {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 61, 58, 0.07);
}

.reach-track {
  display: inline-flex;
  gap: 16px;
  min-width: 100%;
  padding: 10px 14px;
  white-space: nowrap;
  animation: laneSlide 16s linear infinite;
  align-items: center;
}

.reach-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: none;
  font-family: "Sora", "Manrope", sans-serif;
  padding-right: 2px;
}

.reach-chip::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reach-chip-lumber::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23145c54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='6' rx='2'/%3E%3Cpath d='M7 9v6M12 9v6M17 9v6'/%3E%3C/svg%3E");
}

.reach-chip-realestate::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23145c54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V9l8-5 8 5v11'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
}

.reach-notes {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.reach-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(11, 61, 58, 0.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.reach-note-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-block;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(20, 92, 84, 0.08);
  border: 1px solid rgba(20, 92, 84, 0.16);
}

.reach-note-lumber {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23145c54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='10' width='18' height='4' rx='1.2'/%3E%3Cpath d='M7 10v4M12 10v4M17 10v4'/%3E%3Cpath d='M4 8l8-4 8 4'/%3E%3C/svg%3E");
}

.reach-note-realestate {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23145c54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V11l8-6 8 6v9'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E");
}

.reach-note-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 800;
}

.reach-note-copy {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.btn-solid {
  background: #0B3D3A;
  color: #FFFFFF;
}

.btn-solid:hover {
  background: #092E2C;
}

.btn-soft {
  border: 1px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
}
.small-note {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.industry-showcase-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    justify-content: center;
    gap: 24px;
  }

.industry-showcase-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(11, 61, 58, 0.04);
    padding: 36px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.industry-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.industry-showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 2.2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.8s ease;
}

.industry-showcase-card:hover img {
  transform: scale(1.06);
}

.industry-showcase-card h3 {
  margin-top: 12px;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.12;
}

.industry-showcase-card p {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-visual-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-visual-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.landing-hero .lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4A4A4A;
}
.translate-box{
position:fixed;
bottom:20px;
left:20px;
z-index:9999;
background:#fff;
padding:6px 10px;
border-radius:6px;
box-shadow:0 8px 20px rgba(0,0,0,.15);
font-size:13px;
}
.whatsapp-chat{
position:fixed;
bottom:20px;
right:20px;
z-index:9999;
}

.whatsapp-chat img{
width:54px;
height:54px;
border-radius:50%;
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:transform .2s;
}
.footer-slogan{
margin-bottom:10px;
font-size:13px;
line-height:1.6;
color:rgba(255,255,255,.8);
max-width:420px;
}
.whatsapp-chat img:hover{
  transform:scale(1.08);
}

/* Model card icons */
.model-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  overflow: hidden;
}
.model-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.model-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0));
  transform: rotate(25deg);
  opacity: 0;
  transition: all .6s ease;
}
.model-card:hover .model-icon {
  transform: scale(1.08);
  box-shadow: 0 18px 45px rgba(11,61,145,0.18);
}
.model-card:hover .model-icon::after {
  left: 120%;
  opacity: 1;
}
.icon-promoter {
  background: linear-gradient(135deg, #eaf1ff 0%, #f8fbff 100%);
  color: #0b3d91;
}
.icon-partner {
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9ff 100%);
  color: #3730a3;
}
.icon-distributor {
  background: linear-gradient(135deg, #e6f7f5 0%, #f6fffd 100%);
  color: #0f766e;
}
.icon-seller {
  background: linear-gradient(135deg, #fff4e6 0%, #fff9f0 100%);
  color: #c2410c;
}
.icon-consultant {
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9ff 100%);
  color: #4338ca;
}
.investment-corridor{
padding:120px 0;
background:#ffffff;
text-align:center;
}
.investment-corridor .lede.small{
text-align:center;
margin-left:auto;
margin-right:auto;
max-width:680px;
}

.flag-wave{
  width:42px;
  height:28px;
  margin:0 auto 12px;
  overflow:hidden;
  border-radius:4px;
  box-shadow:0 3px 8px rgba(0,0,0,0.12);
}
.flag-wave img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation:flagWave 3s ease-in-out infinite;
  transform-origin:left center;
}
@keyframes flagWave{
  0%{transform:skewY(0deg);}
  25%{transform:skewY(3deg);}
  50%{transform:skewY(-2deg);}
  75%{transform:skewY(2deg);}
  100%{transform:skewY(0deg);}
}

.corridor-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.corridor-node{
background:#f7f7f7;
border-radius:16px;
padding:28px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.corridor-node h3{
margin-bottom:10px;
color:#0B3D3A;
}
.section-footnote {
  margin-top: 32px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtext {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes runwayDrift {
  from {
    transform: translateX(0) rotate(-7deg);
  }
  to {
    transform: translateX(-90px) rotate(-7deg);
  }
}

@keyframes laneSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-28%);
  }
}

@media (max-width: 1260px) {
  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .landing-hero-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-lane-grid {
    grid-template-columns: 1fr;
  }

  .flow-lane.is-reverse .flow-lane-grid {
    direction: ltr;
  }

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

  .earth-stage {
    width: min(82%, 380px);
  }
}

@media (max-width: 720px) {
  .landing-hero {
    padding: 62px 0 54px;
  }

  .landing-hero::before {
    height: 180px;
    inset: 16% -30% auto -30%;
  }

  .landing-hero-copy,
  .world-stage,
  .reach-card {
    padding: 20px;
  }

  .service-grid,
  .industry-showcase-grid,
  .company-pill-grid,
  .model-grid,
  .flow-lanes {
    grid-template-columns: 1fr;
  }

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

  .global-core-media {
    aspect-ratio: 5 / 4;
  }

  .earth-stage {
    width: min(92%, 300px);
  }

  .contact-visual-grid {
    grid-template-columns: 1fr;
  }
  a {
  color: #C6A75E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
}
