/* ==========================================================================
   SEO Penang - design system
   Direction: "instrument panel". Penang runs on precision manufacturing,
   so the vernacular is measurement and readouts, not agency gloss.
   ========================================================================== */

:root {
  /* Ink: Straits navy. Deep, cool, never pure black. */
  --ink: #0A1B2E;
  --ink-800: #0F2843;
  --ink-700: #16395C;
  --ink-500: #2C4A66;
  --muted: #5C7183;
  --muted-2: #7D8FA0;

  /* Surfaces */
  --porcelain: #EDF1F4;
  --porcelain-2: #F6F8FA;
  --white: #FFFFFF;
  --line: #D9E0E7;
  --line-soft: #E8EDF1;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Signal */
  --jade: #0FA3A0;
  --jade-700: #0B7F7C;
  --jade-300: #6FCFCC;
  --jade-100: #DEF3F2;
  --amber: #E8930C;
  --amber-100: #FDF0D8;
  --coral: #DB3E43;
  --coral-100: #FBE4E5;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-1: 0 1px 2px rgba(10, 27, 46, .06);
  --shadow-2: 0 1px 2px rgba(10, 27, 46, .05), 0 14px 34px -14px rgba(10, 27, 46, .22);
  --shadow-3: 0 2px 4px rgba(10, 27, 46, .06), 0 28px 60px -22px rgba(10, 27, 46, .30);

  --font-display: 'Bricolage Grotesque', 'Instrument Sans', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap: 1160px;
  --gap: clamp(28px, 4vw, 52px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "ss01" on;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--jade-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--jade); outline-offset: 2px; border-radius: 2px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 3.4vw, 3.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.6rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.12rem, 1rem + .5vw, 1.35rem); letter-spacing: -0.02em; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.06rem, .98rem + .5vw, 1.28rem); color: var(--ink-500); line-height: 1.6; }
strong { font-weight: 650; color: var(--ink); }

/* Eyebrow doubles as a readout label. Content, not decoration. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--jade-700);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--jade); flex: none;
}
.eyebrow--light { color: var(--jade-300); }
.eyebrow--light::before { background: var(--jade-300); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 760px; }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 68px); }
.section--porcelain { background: var(--porcelain-2); border-block: 1px solid var(--line-soft); }
.section--ink { background: var(--ink); color: #C7D5E0; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lede { color: #A9BECE; }
.section--ink a { color: var(--jade-300); }
.section--ink a:hover { color: #fff; }
.head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 48px); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 20px; }
.grid--1 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--gap); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600; font-size: .97rem; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--jade); color: #fff; box-shadow: var(--shadow-1); }
.btn--primary:hover { background: var(--jade-700); color: #fff; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-700); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.microcopy { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: var(--muted-2); margin-top: 14px; }
.section--ink .microcopy { color: #7D93A6; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; letter-spacing: -0.035em; color: var(--ink); }
.brand__name em { font-style: normal; color: var(--jade); }
.brand__sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn), .nav button.nav__toggle {
  font-size: .93rem; font-weight: 500; color: var(--ink-500);
  text-decoration: none; padding: 9px 12px; border-radius: var(--radius);
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.nav a:not(.btn):hover, .nav button.nav__toggle:hover { color: var(--ink); background: var(--porcelain); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__group { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 288px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3); padding: 8px; display: none;
}
.nav__group[data-open="true"] .nav__panel { display: block; }
.nav__panel a { display: block; padding: 10px 12px; border-radius: var(--radius); }
.nav__panel a span { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; margin-top: 2px; }
.nav__cta { margin-left: 8px; }
.burger {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff; align-items: center; justify-content: center; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 1020px) {
  .burger { display: inline-flex; }
  .nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 14px 22px 22px;
    box-shadow: var(--shadow-2); max-height: calc(100dvh - 70px); overflow-y: auto;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a:not(.btn), .nav button.nav__toggle { padding: 12px 10px; font-size: 1rem; width: 100%; justify-content: flex-start; }
  .nav__panel { position: static; display: block; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 10px; padding: 0 0 0 6px; min-width: 0; }
  .nav__group .nav__toggle::after { content: ""; }
  .nav__cta { margin: 10px 0 0; }
}

/* ---------- hero: the signature is a working instrument ---------- */
.hero { position: relative; background: var(--ink); color: #BFD0DC; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 20%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -260px;
  background: radial-gradient(circle, rgba(15,163,160,.30), transparent 62%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; padding-block: clamp(48px, 6vw, 88px); }
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--jade-300); }
.hero__lede { color: #A9BECE; font-size: clamp(1.03rem, .96rem + .45vw, 1.22rem); max-width: 33em; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.chip {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  border: 1px solid var(--line-dark); border-radius: 100px; padding: 6px 12px; color: #9FB6C7;
}
.chip strong { color: #fff; font-weight: 600; }

/* ---------- scanner console ---------- */
.console {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-3); overflow: hidden; color: var(--ink-800);
}
.console__top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--line-soft); background: var(--porcelain-2);
}
.console__title { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); }
.console__state { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jade); box-shadow: 0 0 0 0 rgba(15,163,160,.55); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(15,163,160,0); } 100% { box-shadow: 0 0 0 0 rgba(15,163,160,0); } }
.console__body { padding: 20px 18px 22px; }
.console__form { display: flex; gap: 8px; }
@media (max-width: 520px) { .console__form { flex-direction: column; } }
.field {
  flex: 1; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0 12px; background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field:focus-within { border-color: var(--jade); box-shadow: 0 0 0 3px var(--jade-100); }
.field__prefix { font-family: var(--font-mono); font-size: .78rem; color: var(--muted-2); flex: none; }
.field input { border: 0; outline: 0; padding: 14px 0; width: 100%; background: transparent; font-size: .97rem; }
.console__note { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .04em; color: var(--muted-2); margin-top: 12px; }

.progress { margin-top: 18px; display: none; }
.progress[data-on="true"] { display: block; }
.progress__track { height: 3px; background: var(--line-soft); border-radius: 100px; overflow: hidden; }
.progress__bar { height: 100%; width: 8%; background: var(--jade); border-radius: 100px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.progress__log { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-top: 10px; min-height: 1.2em; }

.console__error {
  margin-top: 12px; padding: 10px 12px; border-radius: var(--radius);
  background: var(--coral-100); color: #9E2529; font-size: .86rem; line-height: 1.45;
}
.console__error[hidden] { display: none; }

.optin { margin-top: 24px; padding: 20px; background: var(--porcelain-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.optin h3 { font-size: 1.06rem; margin-bottom: 6px; }
.optin p { font-size: .9rem; color: var(--muted); }
.optin__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
@media (max-width: 560px) { .optin__row { grid-template-columns: 1fr; } }
.optin__row .field { padding: 0 12px; }
.optin__consent { display: flex; gap: 9px; align-items: flex-start; margin-top: 12px; font-size: .8rem; color: var(--muted); }
.optin__consent input { margin-top: 3px; accent-color: var(--jade); }
.form-msg { font-size: .88rem; margin-top: 12px; padding: 11px 13px; border-radius: var(--radius); display: none; }
.form-msg[data-on="true"] { display: block; }
.form-msg--ok { background: var(--jade-100); color: var(--jade-700); }
.form-msg--err { background: var(--coral-100); color: #9E2529; }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 9px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card p { font-size: .94rem; color: var(--muted); }
.card__idx { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; color: var(--jade-700); }
a.card { text-decoration: none; }
a.card:hover { border-color: var(--jade); transform: translateY(-2px); box-shadow: var(--shadow-2); }
a.card h3 { color: var(--ink); }
.card__more { margin-top: auto; padding-top: 12px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--jade-700); }
.section--ink .card { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.section--ink .card p { color: #9FB6C7; }

/* Stat plate reads like a spec sheet row, not a marketing badge. */
.plates { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
@media (max-width: 780px) { .plates { grid-template-columns: repeat(2, 1fr); } }
.plate { padding: 22px 20px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.plate:last-child { border-right: 0; }
@media (max-width: 780px) { .plate:nth-child(2n) { border-right: 0; } }
.plate__k { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.plate__v { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 9px; }

/* ---------- ordered process ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 0; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .82rem; color: var(--jade-700); letter-spacing: .06em; padding-top: 3px;
}
.steps h3 { margin-bottom: 5px; }
.steps p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 560px) { .steps li { grid-template-columns: 44px 1fr; gap: 12px; } }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 620px; }
th, td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
thead th { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); background: var(--porcelain-2); }
tbody tr:last-child td { border-bottom: 0; }
td strong { color: var(--ink); }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 27px; width: 11px; height: 11px;
  border-right: 2px solid var(--jade); border-bottom: 2px solid var(--jade);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq .faq__a { padding: 0 0 22px; color: var(--ink-500); font-size: .97rem; max-width: 68ch; }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ---------- prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.7em; }
.prose ul, .prose ol { padding-left: 1.15em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--jade);
  font-size: 1.06rem; color: var(--ink); font-style: normal;
}
.answer {
  background: var(--porcelain-2); border: 1px solid var(--line-soft); border-left: 3px solid var(--jade);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 18px 20px; margin: 0 0 26px;
}
.answer p { margin: 0; font-size: 1.01rem; color: var(--ink-800); }
.answer .eyebrow { margin-bottom: 10px; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted-2); padding-block: 16px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--jade-700); }
.hero .crumbs a { color: #8FA7BA; }
.hero .crumbs { color: #7D93A6; }
.hero .crumbs li:not(:last-child)::after { color: rgba(255,255,255,.2); }

/* ---------- portrait ---------- */
.portrait { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--porcelain); position: relative; }
.portrait img { width: 100%; display: block; }
.portrait--fallback { aspect-ratio: 4 / 5; display: grid; place-items: center; background: linear-gradient(160deg, var(--ink), var(--ink-700)); }
.portrait--fallback::after {
  content: "RO"; font-family: var(--font-display); font-weight: 800; font-size: 4rem; color: rgba(255,255,255,.14); letter-spacing: -0.05em;
}

/* ---------- inline CTA band ---------- */
.band-cta { background: var(--ink); color: #BFD0DC; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.band-cta h2 { color: #fff; }
.band-cta p { color: #A9BECE; }
.band-cta::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -160px; bottom: -220px;
  background: radial-gradient(circle, rgba(15,163,160,.28), transparent 62%);
}
.band-cta > * { position: relative; z-index: 1; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #94ABBD; padding-block: clamp(46px, 5vw, 72px) 0; font-size: .92rem; }
.site-footer h2, .site-footer h3 { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__h { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #6E869B; margin: 0 0 14px; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__list a { color: #B4C7D5; text-decoration: none; }
.footer__list a:hover { color: #fff; text-decoration: underline; }
.footer__about { max-width: 34ch; color: #94ABBD; }
.footer__addr { font-style: normal; line-height: 1.8; color: #B4C7D5; }
.footer__bottom {
  margin-top: 44px; padding-block: 20px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; color: #6E869B;
}
.footer__bottom a { color: #94ABBD; text-decoration: none; }

/* ---------- floating whatsapp ---------- */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  background: #128C7E; color: #fff; text-decoration: none;
  padding: 12px 17px; border-radius: 100px; font-weight: 600; font-size: .88rem;
  box-shadow: 0 10px 28px -8px rgba(18,140,126,.6);
}
.wa:hover { background: #0f7568; color: #fff; }
@media (max-width: 560px) { .wa span { display: none; } .wa { padding: 14px; } }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.rv.is-in { opacity: 1; transform: none; }

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