:root {
  --black: #080808;
  --black-soft: #111111;
  --black-card: #141414;
  --red: #e31b23;
  --red-bright: #ff3139;
  --red-dark: #8e0710;
  --white: #f7f7f4;
  --muted: #a3a3a3;
  --line: rgba(255,255,255,.11);
  --line-dark: rgba(0,0,0,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.page-noise {
  position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .035;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { background: rgba(8,8,8,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { height: 86px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; fill: var(--red); }
.brand-text { display: flex; flex-direction: column; line-height: .88; letter-spacing: -.04em; }
.brand-text strong { font-size: 24px; font-weight: 900; }
.brand-text small { font-size: 8px; letter-spacing: .36em; margin-top: 7px; color: #c4c4c4; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 32px; margin-left: auto; }
.main-nav a { font-size: 13px; color: #d0d0d0; transition: color .2s ease; }
.main-nav a:hover { color: #fff; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent;
  font-size: 13px; font-weight: 800; letter-spacing: .02em; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.btn-outline { border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--red); background: var(--red); }
.btn-primary { background: var(--red); box-shadow: 0 10px 40px rgba(227,27,35,.24); }
.btn-primary:hover { background: var(--red-bright); }
.btn-light { background: #fff; color: #0b0b0b; width: 100%; }
.btn-link { padding: 0 8px; min-height: 52px; border-bottom-color: rgba(255,255,255,.3); }
.btn-link span, .text-link span, .service-card a span { color: var(--red); }

.hero {
  position: relative; min-height: 900px; padding-top: 170px; padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(227,27,35,.22), transparent 28%),
    radial-gradient(circle at 32% 5%, rgba(255,255,255,.045), transparent 24%),
    linear-gradient(135deg, #080808 0%, #0d0d0d 58%, #130708 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 74px 74px; mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 620px; }
.hero-copy { padding: 30px 0 80px; }
.eyebrow { display: flex; align-items: center; gap: 11px; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .22em; color: #bcbcbc; }
.eyebrow span { width: 26px; height: 2px; background: var(--red); }
.eyebrow.light { color: rgba(255,255,255,.72); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 26px 0 28px; font-size: clamp(64px, 7.7vw, 112px); line-height: .84; letter-spacing: -.075em; max-width: 800px; }
h1 em { color: var(--red); font-style: normal; }
.hero-copy > p { max-width: 600px; color: #adadad; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 38px; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 42px; }
.hero-tags span { border: 1px solid var(--line); padding: 10px 14px; color: #bdbdbd; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }

.hero-visual { position: relative; height: 620px; display: grid; place-items: center; }
.signal-ring { position: absolute; border: 1px solid rgba(227,27,35,.32); border-radius: 50%; }
.ring-a { width: 530px; height: 530px; animation: breathe 5s ease-in-out infinite; }
.ring-b { width: 420px; height: 420px; opacity: .45; animation: breathe 5s ease-in-out 1s infinite; }
.ring-c { width: 650px; height: 650px; opacity: .12; }
.orbit { position: absolute; border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; animation: spin 18s linear infinite; }
.orbit i { position: absolute; width: 9px; height: 9px; background: var(--red); border-radius: 50%; box-shadow: 0 0 22px var(--red); }
.orbit-one { width: 590px; height: 360px; transform: rotate(-24deg); }
.orbit-one i { left: 20px; top: 165px; }
.orbit-two { width: 410px; height: 590px; transform: rotate(20deg); animation-duration: 24s; animation-direction: reverse; }
.orbit-two i { right: 35px; top: 100px; }
.glass-card { background: linear-gradient(145deg, rgba(30,30,30,.88), rgba(14,14,14,.74)); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 32px 80px rgba(0,0,0,.45); backdrop-filter: blur(20px); }
.network-card { position: relative; z-index: 4; width: 430px; min-height: 505px; padding: 22px; transform: perspective(1100px) rotateY(-7deg) rotateX(3deg); }
.network-card-top { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: .16em; color: #ccc; }
.network-card-top small { font-size: 8px; color: #6fd38a; }
.live-dot { width: 7px; height: 7px; background: #55d477; border-radius: 50%; box-shadow: 0 0 12px #55d477; }
.network-core { position: relative; height: 330px; }
.core-logo { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 102px; height: 102px; display: grid; place-items: center; border: 1px solid rgba(227,27,35,.65); border-radius: 50%; background: radial-gradient(circle, rgba(227,27,35,.32), rgba(227,27,35,.05)); font-weight: 900; letter-spacing: -.07em; font-size: 31px; box-shadow: 0 0 50px rgba(227,27,35,.22); }
.node { position: absolute; width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: #151515; color: #d5d5d5; font-size: 9px; letter-spacing: .11em; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.n1 { left: 16px; top: 38px; }.n2 { right: 8px; top: 55px; }.n3 { left: 30px; bottom: 30px; }.n4 { right: 24px; bottom: 28px; }
.pulse-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,27,35,.9), transparent); transform-origin: left; }
.p1 { width: 150px; top: 100px; left: 65px; transform: rotate(23deg); }.p2 { width: 148px; top: 196px; left: 78px; transform: rotate(-22deg); }.p3 { width: 145px; top: 145px; left: 209px; transform: rotate(-26deg); }
.network-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; border-top: 1px solid var(--line); padding-top: 18px; }
.network-stats div { display: flex; flex-direction: column; gap: 5px; }
.network-stats strong { font-size: 18px; }.network-stats span { font-size: 8px; letter-spacing: .08em; color: #8f8f8f; text-transform: uppercase; }
.hero-marquee { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.marquee-track { width: max-content; display: flex; gap: 28px; align-items: center; padding: 19px 0; animation: marquee 25s linear infinite; font-size: 11px; letter-spacing: .2em; color: #777; }
.marquee-track b { color: var(--red); }

.metrics { background: var(--red); color: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.metrics article { padding: 34px 26px; border-left: 1px solid rgba(255,255,255,.22); display: flex; flex-direction: column; gap: 7px; }
.metrics article:last-child { border-right: 1px solid rgba(255,255,255,.22); }
.metrics strong { font-size: 24px; letter-spacing: -.035em; }.metrics span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }

.about { background: var(--white); color: var(--black); }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.section-heading h2 { margin: 24px 0 0; font-size: clamp(46px, 5vw, 76px); line-height: .98; letter-spacing: -.06em; max-width: 850px; }
.section-heading.centered { text-align: center; max-width: 850px; margin: 0 auto 58px; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { max-width: 590px; margin: 20px auto 0; color: var(--muted); line-height: 1.7; }
.about-copy .lead { font-size: 25px; line-height: 1.45; letter-spacing: -.025em; }
.about-copy p:not(.lead) { color: #666; line-height: 1.8; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 15px; font-weight: 800; font-size: 13px; border-bottom: 1px solid #bcbcbc; padding-bottom: 8px; }

.services { background: #0d0d0d; }
.service-grid { display: grid; grid-template-columns: minmax(0, 880px); justify-content: center; gap: 16px; }
.service-card { position: relative; min-height: 440px; padding: 34px; background: #151515; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease, background .3s ease; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: auto -50px -100px auto; width: 210px; height: 210px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(227,27,35,.55); background: #191919; }
.service-card.featured { background: var(--red); border-color: var(--red); }
.service-number { position: absolute; right: 25px; top: 23px; font-size: 11px; letter-spacing: .13em; color: #777; }
.featured .service-number { color: rgba(255,255,255,.65); }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); margin-bottom: 60px; }
.service-icon svg { width: 29px; fill: none; stroke: #fff; stroke-width: 1.5; }
.featured .service-icon { background: rgba(0,0,0,.15); }
.service-card h3 { font-size: 42px; letter-spacing: -.04em; margin-bottom: 18px; }
.service-card p { color: #969696; line-height: 1.7; font-size: 14px; }
.featured p { color: rgba(255,255,255,.78); }
.service-card ul { list-style: none; padding: 0; margin: 15px 0 30px; display: grid; gap: 11px; }
.service-card li { font-size: 12px; color: #bbb; padding-left: 17px; position: relative; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; background: var(--red); }
.featured li { color: rgba(255,255,255,.82); }.featured li::before { background: #fff; }
.service-card a { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.featured a { border-top-color: rgba(255,255,255,.25); }.featured a span { color: #fff; }

.benefits { background: var(--white); color: var(--black); }
.benefits-layout { display: grid; grid-template-columns: 1.03fr .97fr; gap: 90px; align-items: center; }
.map-panel { position: relative; height: 650px; background: #0d0d0d; overflow: hidden; box-shadow: 0 35px 80px rgba(0,0,0,.14); }
.map-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 48px 48px; }
.map-grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 45% 45%, rgba(227,27,35,.2), transparent 37%); }
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines path { fill: none; stroke: var(--red); stroke-width: 2; stroke-dasharray: 8 7; filter: drop-shadow(0 0 8px rgba(227,27,35,.7)); animation: dash 18s linear infinite; }
.map-label { position: absolute; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .13em; display: flex; align-items: center; gap: 8px; }
.map-label i { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(227,27,35,.15), 0 0 18px var(--red); }
.label-jkt { left: 16%; top: 68%; }.label-sg { left: 58%; top: 34%; }.label-content { right: 11%; top: 15%; }
.map-caption { position: absolute; left: 28px; right: 28px; bottom: 28px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.map-caption span { color: #67dd83; font-size: 9px; letter-spacing: .15em; }.map-caption strong { font-size: 12px; }
.benefit-copy h2 { margin: 24px 0 48px; font-size: clamp(48px, 5vw, 78px); line-height: .95; letter-spacing: -.065em; }
.benefit-list { border-top: 1px solid #d7d7d7; }
.benefit-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid #d7d7d7; }
.benefit-index { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .13em; padding-top: 5px; }
.benefit-list h3 { margin-bottom: 8px; font-size: 19px; }.benefit-list p { margin-bottom: 0; color: #666; line-height: 1.65; font-size: 13px; }

.participants { background: #0b0b0b; }
.participants .section-heading { margin-bottom: 55px; }
.participant-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: #0f0f0f; }
.participant-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.participant-table th, .participant-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.participant-table th { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.participant-table th:first-child, .participant-table td:first-child { width: 90px; text-align: center; }
.participant-table th:last-child, .participant-table td:last-child { width: 190px; }
.participant-table td { color: #d7d7d7; font-size: 14px; line-height: 1.5; transition: background .2s ease, color .2s ease; }
.participant-table tbody tr:last-child td { border-bottom: 0; }
.participant-table tbody tr:hover td { background: #171717; color: #fff; }
.participant-table td:first-child { color: #777; font-size: 12px; font-weight: 700; }
.asn-badge { display: inline-flex; align-items: center; min-width: 104px; padding: 8px 12px; border: 1px solid rgba(227,27,35,.45); background: rgba(227,27,35,.08); color: #ff4a50; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; font-weight: 800; letter-spacing: .04em; }

.cta-section { background: var(--white); }
.cta-box { position: relative; background: var(--red); padding: 76px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; overflow: hidden; }
.cta-glow { position: absolute; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; left: -220px; bottom: -330px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.cta-copy, .contact-form { position: relative; z-index: 2; }
.cta-copy h2 { margin: 24px 0 24px; font-size: clamp(54px, 6vw, 90px); line-height: .9; letter-spacing: -.07em; }
.cta-copy p { max-width: 430px; color: rgba(255,255,255,.78); line-height: 1.7; }
.contact-form { background: #111; padding: 36px; display: grid; gap: 20px; }
.contact-form label { display: grid; gap: 9px; }.contact-form label > span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: #999; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr .65fr; gap: 15px; }
.contact-form input, .contact-form select { width: 100%; height: 50px; background: #1b1b1b; color: #fff; border: 1px solid rgba(255,255,255,.12); outline: none; padding: 0 15px; font-size: 13px; }
.contact-form input:focus, .contact-form select:focus { border-color: var(--red); }
.form-note { margin: -5px 0 0; color: #777; font-size: 10px; line-height: 1.5; }
.form-note.success { color: #67dd83; }

.site-footer { padding: 75px 0 25px; background: #080808; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .9fr; gap: 50px; }
.footer-brand { margin-bottom: 24px; }.footer-grid p { color: #707070; font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }.footer-links strong, .footer-status strong { color: #777; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; margin-bottom: 7px; }.footer-links a, .footer-links span { color: #aaa; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-status div { font-size: 11px; color: #aaa; display: flex; gap: 9px; align-items: center; }.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: #54d177; box-shadow: 0 0 10px #54d177; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 25px; display: flex; justify-content: space-between; color: #555; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .22s; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(336deg); } }
@keyframes breathe { 50% { transform: scale(1.04); opacity: .55; } }
@keyframes dash { to { stroke-dashoffset: -240; } }


/* Floating WhatsApp chat */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: #25D366;
  box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 0 rgba(37,211,102,.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: whatsappPulse 2.8s infinite;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px);
  filter: brightness(1.04);
  box-shadow: 0 22px 54px rgba(0,0,0,.48), 0 0 0 7px rgba(37,211,102,.12);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255,255,255,.88);
  outline-offset: 4px;
}
.whatsapp-float__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
}
.whatsapp-float__icon svg { width: 23px; height: 23px; fill: currentColor; }
.whatsapp-float__label { white-space: nowrap; }
@keyframes whatsappPulse {
  0%, 55%, 100% { box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 0 rgba(37,211,102,.38); }
  72% { box-shadow: 0 18px 45px rgba(0,0,0,.38), 0 0 0 12px rgba(37,211,102,0); }
}

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }.nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }.hero { padding-top: 145px; }.hero-copy { text-align: center; padding-bottom: 0; }.hero-copy > p { margin-inline: auto; }.hero-actions, .hero-tags { justify-content: center; }.hero-visual { height: 610px; }
  .two-col, .benefits-layout, .cta-box { grid-template-columns: 1fr; }.two-col { gap: 45px; }.benefits-layout { gap: 60px; }.map-panel { height: 560px; }.cta-box { gap: 55px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 400px; }.service-icon { margin-bottom: 35px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, var(--max)); }.section-pad { padding: 85px 0; }
  .nav-wrap { height: 74px; }.menu-toggle { margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; display: grid; place-content: center; gap: 5px; z-index: 3; }.menu-toggle span { display: block; width: 18px; height: 1px; background: #fff; transition: .25s; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-toggle.active span:nth-child(2) { opacity: 0; }.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; background: rgba(8,8,8,.98); display: flex; flex-direction: column; gap: 28px; justify-content: center; transform: translateX(100%); transition: transform .35s ease; }.main-nav.open { transform: none; }.main-nav a { font-size: 28px; font-weight: 800; letter-spacing: -.04em; }
  .hero { min-height: auto; }.hero-grid { min-height: auto; }.hero-copy { padding-top: 20px; }.hero-copy h1 { font-size: clamp(56px, 17vw, 82px); }.hero-copy > p { font-size: 15px; }.hero-actions { flex-direction: column; gap: 8px; }.hero-actions .btn { width: 100%; }.hero-visual { height: 510px; margin-top: 10px; }.network-card { width: 330px; min-height: 430px; transform: none; padding: 18px; }.network-core { height: 270px; }.node { width: 50px; height: 50px; font-size: 7px; }.core-logo { width: 82px; height: 82px; font-size: 25px; }.ring-a { width: 400px; height: 400px; }.ring-b { width: 310px; height: 310px; }.ring-c { width: 490px; height: 490px; }.orbit-one { width: 420px; height: 280px; }.orbit-two { width: 310px; height: 440px; }.p1 { width: 110px; top: 82px; left: 53px; }.p2 { width: 110px; top: 160px; left: 61px; }.p3 { width: 112px; top: 117px; left: 162px; }.network-stats strong { font-size: 14px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }.metrics article { border-bottom: 1px solid rgba(255,255,255,.22); }.metrics article:nth-child(2) { border-right: 1px solid rgba(255,255,255,.22); }
  .section-heading h2, .benefit-copy h2 { font-size: 48px; }.about-copy .lead { font-size: 21px; }.two-col { gap: 35px; }
  .map-panel { height: 440px; }.label-jkt { left: 11%; }.label-content { right: 4%; }.map-caption { flex-direction: column; align-items: flex-start; gap: 7px; }
  .participant-table-wrap { margin-inline: -15px; border-left: 0; border-right: 0; }
  .participant-table { min-width: 660px; }
  .participant-table th, .participant-table td { padding: 17px 18px; }
  .cta-box { padding: 42px 24px; }.cta-copy h2 { font-size: 56px; }.contact-form { padding: 25px 20px; }.form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 10px; }
  .whatsapp-float { right: 16px; bottom: 16px; min-width: 56px; width: 56px; height: 56px; padding: 9px; justify-content: center; }
  .whatsapp-float__label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
}

@media (max-width: 420px) {
  .network-card { width: 300px; }.hero-tags { gap: 6px; }.hero-tags span { padding: 9px 10px; font-size: 9px; }.metrics article { padding: 26px 16px; }.metrics strong { font-size: 20px; }.footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }
}

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