/* ==========================================================================
   Globosoft — 360° Ecommerce
   Static stylesheet. No build step, no framework.
   ========================================================================== */

:root {
  /* Official palette, Globosoft Brand Sheet 2026. */
  --red: #c02228;          /* Primary Red   192 · 34 · 40  */
  --red-dark: #8e1117;     /* Deep Red      142 · 17 · 23  */
  --red-light: #ef6b71;    /* tint of primary, for dark backgrounds */
  --ink: #1a1a1a;          /* Ink            26 · 26 · 26  */
  --rose: #fce7e7;         /* Rose          252 · 231 · 231 */
  --charcoal: #262626;
  --muted: #6b6b6b;
  --paper: #faf6f6;        /* Rose at low strength, keeps the section rhythm */
  --paper-deep: #fce7e7;   /* Rose */
  --white: #ffffff;        /* White */
  --line: rgba(26, 26, 26, 0.14);
  --line-soft: rgba(26, 26, 26, 0.07);
  --line-light: rgba(255, 255, 255, 0.16);
  --green: #2f7d52;
  --gold: #b3841f;
  --dock-h: 64px;
  --header-h: 86px;
  /* Samsung Sharp Sans and SamsungOne are proprietary and not licensed for web
     use here, so the site ships with open-licence lookalikes: Archivo for
     display (squared geometric grotesque) and Figtree for body (humanist
     geometric, close to the original's texture). Both SIL OFL. */
  --font-display: "Poppins", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --pad-x: clamp(24px, 6vw, 104px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: var(--dock-h);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

body.nav-locked { overflow: hidden; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* --------------------------------------------------------------------------
   Announcement bar
   -------------------------------------------------------------------------- */

.announcement {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: center;
  min-height: 34px;
  padding: 8px var(--pad-x);
  position: relative;
}

.announcement-partner {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  position: absolute;
  right: var(--pad-x);
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.announcement-partner:hover { background: var(--red); border-color: var(--red); }

.announcement p {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.announcement i {
  background: var(--red);
  border-radius: 50%;
  height: 4px;
  width: 4px;
  flex: none;
}

.announcement a {
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Header + mega navigation
   -------------------------------------------------------------------------- */

.site-header {
  align-items: center;
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(14px, 2vw, 34px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 86px;
  padding: 12px var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  flex: none;
  width: clamp(160px, 16vw, 250px);
}

.primary-nav {
  display: flex;
  gap: clamp(12px, 1.5vw, 26px);
  justify-content: flex-end;
  min-width: 0;
}

.nav-item-compact { display: none; }

.nav-item {
  padding-bottom: 10px;
  margin-bottom: -10px;
  position: relative;
}

.nav-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  letter-spacing: 0.04em;
  padding: 14px 0;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  background: var(--red);
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link .caret {
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid var(--red);
  display: inline-block;
  transition: transform 180ms ease;
}

.nav-item:hover .caret,
.nav-item.is-open .caret,
.nav-item.is-expanded .caret {
  transform: rotate(180deg);
}

.mega {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px rgba(20, 15, 12, 0.16);
  left: 50%;
  opacity: 0;
  padding: 26px 28px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 6px);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  width: max-content;
  max-width: min(760px, 88vw);
  z-index: 45;
}

.mega::before {
  content: "";
  height: 26px;
  left: 0;
  position: absolute;
  right: 0;
  top: -26px;
}

.nav-item:hover > .mega,
.nav-item:focus-within > .mega,
.nav-item.is-open > .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  gap: 4px 34px;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
}

.mega-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.mega-head {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.mega a {
  border-bottom: 1px solid var(--line-soft);
  display: block;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  transition: color 160ms ease, padding-left 160ms ease;
}

.mega a:hover {
  color: var(--red);
  padding-left: 6px;
}

.mega a small {
  color: var(--muted);
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 3px;
  text-transform: uppercase;
}

.mega-foot {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  padding-top: 16px;
}

.mega-foot a {
  border-bottom: 0;
  color: var(--red);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0;
  text-transform: uppercase;
}

.header-cta {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 10.5px;
  font-weight: 800;
  gap: 14px;
  justify-self: end;
  letter-spacing: 0.03em;
  padding: 15px 17px;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.nav-toggle {
  align-items: center;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  justify-self: end;
  width: 44px;
}

.nav-toggle i {
  background: var(--ink);
  display: block;
  height: 2px;
  position: relative;
  width: 20px;
}

.nav-toggle i::before,
.nav-toggle i::after {
  background: var(--ink);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 20px;
}

.nav-toggle i::before { top: -6px; }
.nav-toggle i::after { top: 6px; }

/* --------------------------------------------------------------------------
   Shared type + section furniture
   -------------------------------------------------------------------------- */

.eyebrow,
.section-index {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

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

.eyebrow span::before {
  background: var(--red);
  content: "";
  flex: none;
  height: 8px;
  width: 8px;
}

.section-index.light {
  color: var(--red-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.section {
  padding: clamp(76px, 9vw, 150px) var(--pad-x);
}

.section.tight {
  padding-top: clamp(50px, 6vw, 90px);
  padding-bottom: clamp(50px, 6vw, 90px);
}

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

.section.dark {
  background: var(--ink);
  color: white;
}

.section.dark h2 em,
.section.dark h3 em { color: var(--red-light); }

.section.dark .section-heading > div > p,
.section.dark .section-lead { color: #aaa29e; }

.section.crimson {
  background: var(--red);
  color: white;
}

.section.crimson em,
.section.crimson .section-index { color: white; }

.section-heading {
  display: grid;
  gap: clamp(34px, 6vw, 120px);
  grid-template-columns: 150px minmax(0, 1fr);
}

.section-heading h2 {
  font-size: clamp(40px, 5.4vw, 82px);
  line-height: 0.98;
}

.section-heading > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 26px 0 0;
  max-width: 700px;
}

.section-body {
  margin-top: clamp(48px, 6vw, 90px);
}

.rule {
  background: var(--line);
  border: 0;
  height: 1px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Brand mark watermark — the droplet "G" from the logo, used as background
   -------------------------------------------------------------------------- */

.mark-wm {
  -webkit-mask: url("../img/globosoft-mark.svg") no-repeat center / contain;
  mask: url("../img/globosoft-mark.svg") no-repeat center / contain;
  background-color: var(--red);
  opacity: 0.06;
  pointer-events: none;
  position: absolute;
}

.section.dark .mark-wm,
.growth-band .mark-wm,
.page-hero.dark .mark-wm { background-color: white; opacity: 0.05; }

.cta-band .mark-wm { background-color: white; opacity: 0.1; }

.page-hero .mark-wm,
.cta-band .mark-wm {
  transform: translate3d(var(--wx, 0px), var(--wy, 0px), 0);
  transition: transform 900ms cubic-bezier(0.22, 0.7, 0.28, 1);
}

.mark-wm.wm-hero { height: 620px; right: -150px; top: -140px; width: 620px; }
.mark-wm.wm-corner { height: 420px; right: -120px; top: -120px; width: 420px; }
.mark-wm.wm-left { height: 520px; left: -190px; top: -140px; width: 520px; }
.mark-wm.wm-big { height: min(60vw, 640px); right: 3vw; top: 6%; width: min(60vw, 640px); }

@media (max-width: 640px) {
  .mark-wm.wm-hero,
  .mark-wm.wm-corner,
  .mark-wm.wm-left { height: 300px; width: 300px; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 30px;
  justify-content: space-between;
  letter-spacing: 0.03em;
  min-width: 226px;
  padding: 19px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--ink); transform: translateY(-2px); }

.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--red); transform: translateY(-2px); }

.button-light { background: white; color: var(--red); }
.button-light:hover { background: var(--ink); color: white; transform: translateY(-2px); }

.button-outline {
  border: 1px solid currentColor;
}
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: white; }

.section.dark .button-outline:hover,
.section.crimson .button-outline:hover { background: white; color: var(--ink); }

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  padding: 8px 0;
  text-transform: uppercase;
}

.text-link span { color: var(--red); margin-left: 10px; }
.section.dark .text-link span,
.section.crimson .text-link span { color: currentColor; }

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 38px;
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.hero {
  background: var(--white);
  overflow: hidden;
  padding: clamp(60px, 7vw, 110px) var(--pad-x) 0;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(25, 23, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 22, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 78%);
  pointer-events: none;
  position: absolute;
}

.hero-gridline {
  border: 1px solid rgba(201, 35, 45, 0.12);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-gridline-one { height: 660px; right: -260px; top: -250px; width: 660px; }
.hero-gridline-two { height: 440px; right: -160px; top: -140px; width: 440px; }

.hero-gridline {
  transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0);
  transition: transform 700ms cubic-bezier(0.22, 0.7, 0.28, 1);
}

.hero .mark-wm {
  transform: translate3d(var(--wx, 0px), var(--wy, 0px), 0);
  transition: transform 900ms cubic-bezier(0.22, 0.7, 0.28, 1);
}

/* Cursor-follow highlight, only on the hero and only on fine pointers. */
.hero-glow {
  background: radial-gradient(circle, rgba(192, 34, 40, 0.09), transparent 62%);
  height: 460px;
  left: var(--mx, 50%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--my, 40%);
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease;
  width: 460px;
  z-index: 1;
}

.hero:hover .hero-glow { opacity: 1; }

/* The capability chips answer the pointer individually. */
.hero-chips span {
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.hero-chips span:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: translateY(-3px);
}

/* Rows of the live-system card lift as the pointer crosses them. */
.flow-item { transition: background 220ms ease, padding-left 220ms ease; }
.hero-system:hover .flow-item:hover { background: rgba(255, 255, 255, 0.09); padding-left: 26px; }
.hero-stats div { transition: transform 260ms ease; }
.hero-stats div:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .hero-system,
  .hero-gridline,
  .hero .mark-wm { transform: rotate(0deg) !important; }
  .hero-system { transform: rotate(2.2deg) !important; }
  .hero-glow { display: none; }
}

.hero-copy {
  max-width: min(930px, 58vw);
  position: relative;
  z-index: 2;
}

/* The H1 carries the search phrase and sits quietly above the display line,
   which is the one that actually addresses the reader. */
.hero h1 {
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 22px;
  max-width: 30ch;
}

.hero-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 0;
  max-width: 16ch;
}

.hero-display em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 700px;
}

.hero-intro strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 9px 13px;
  text-transform: uppercase;
}

/* Live system card */
.hero-system {
  background: var(--ink);
  box-shadow: 0 40px 100px rgba(20, 15, 12, 0.25);
  color: white;
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: clamp(196px, 20vw, 300px);
  transform: rotate(2.2deg) translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.28, 1);
  will-change: transform;
  width: clamp(320px, 31vw, 470px);
  z-index: 3;
}

.system-topbar,
.system-footer {
  align-items: center;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 15px 20px;
}

.system-topbar { border-bottom: 1px solid var(--line-light); }
.system-title { align-items: center; display: flex; gap: 10px; }

.status-dot {
  background: #63d38a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(99, 211, 138, 0.12);
  height: 7px;
  width: 7px;
}

.revenue-panel {
  background: var(--red);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 20px;
}

.panel-kicker {
  font-size: 8px;
  font-weight: 800;
  grid-column: 1 / -1;
  letter-spacing: 0.1em;
}

.revenue-panel strong {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.growth-bars {
  align-items: end;
  display: flex;
  gap: 4px;
  height: 36px;
}

.growth-bars i {
  background: rgba(255, 255, 255, 0.75);
  display: block;
  height: 35%;
  width: 5px;
}

.growth-bars i:nth-child(2) { height: 48%; }
.growth-bars i:nth-child(3) { height: 44%; }
.growth-bars i:nth-child(4) { height: 63%; }
.growth-bars i:nth-child(5) { height: 72%; }
.growth-bars i:nth-child(6) { height: 84%; }
.growth-bars i:nth-child(7) { height: 100%; }

.system-flow { padding: 6px 0; }

.flow-item {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: 26px 1fr auto;
  padding: 12px 20px;
}

.flow-item > span {
  color: #8f8985;
  font-family: var(--font-display);
  font-size: 14px;
}

.flow-item div { display: flex; flex-direction: column; gap: 3px; }
.flow-item strong { font-size: 9.5px; letter-spacing: 0.06em; }
.flow-item small { color: #aaa29e; font-size: 9px; }
.flow-item b { color: #5d5855; font-size: 9px; }
.flow-item.active { background: rgba(255, 255, 255, 0.06); }
.flow-item.active b { color: var(--red); }
.system-footer { color: #9c9692; }

.hero-stats {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* The system card is absolutely positioned, so this only needs to clear
     whichever of the card or the chip list sits lower, plus normal rhythm. */
  margin-top: clamp(56px, 6vw, 104px);
  position: relative;
  z-index: 2;
}

.hero-stats div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 26px clamp(14px, 2vw, 32px);
}

.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { border-right: 0; }

.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 700;
}

.hero-stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Inner page hero
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: clamp(34px, 4vw, 54px) var(--pad-x) clamp(56px, 6vw, 90px);
  position: relative;
}

/* --------------------------------------------------------------------------
   Inner-page banner background: a drifting grid with a node network over it.
   The grid is CSS; the nodes are a canvas injected by the script, so a
   visitor without JavaScript simply gets the grid.
   -------------------------------------------------------------------------- */

.page-hero .hero-grid {
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  inset: -56px;
  mask-image: radial-gradient(120% 90% at 78% 20%, black 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 20%, black 15%, transparent 72%);
  pointer-events: none;
  position: absolute;
  transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0);
  transition: transform 900ms cubic-bezier(0.22, 0.7, 0.28, 1);
  z-index: 0;
}

.js .page-hero .hero-grid { animation: gridDrift 34s linear infinite; }

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

.page-hero.dark .hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

.page-hero .hero-net {
  height: 100%;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 900ms ease;
  width: 100%;
  z-index: 0;
}

.page-hero .hero-net.is-ready { opacity: 1; }

/* Keep every real element above the background layers. */
.page-hero > .breadcrumb,
.page-hero > .eyebrow,
.page-hero > h1,
.page-hero > .hero-display,
.page-hero > .page-lead,
.page-hero > .page-hero-meta,
.page-hero > .actions,
.page-hero > .metric-strip { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .js .page-hero .hero-grid { animation: none; }
  .page-hero .hero-net { display: none; }
}

.page-hero.dark {
  background: var(--ink);
  border-bottom: 0;
  color: white;
}

.page-hero.dark .breadcrumb,
.page-hero.dark .breadcrumb a { color: #a29b96; }
.page-hero.dark .page-lead { color: #aaa29e; }
.page-hero.dark .page-hero-meta div { border-color: var(--line-light); }
.page-hero.dark .page-hero-meta small { color: #a29b96; }

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.05em;
  margin: 0 0 34px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb span[aria-hidden] { color: var(--red); }
.breadcrumb strong { color: var(--ink); font-weight: 800; }
.page-hero.dark .breadcrumb strong { color: white; }

.page-hero h1 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
  margin-top: 24px;
  max-width: 22ch;
  position: relative;
  z-index: 2;
}

.page-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.68;
  margin: 26px 0 0;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.page-hero-meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.page-hero-meta div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px clamp(12px, 2vw, 28px);
}

.page-hero-meta div:first-child { padding-left: 0; }
.page-hero-meta div:last-child { border-right: 0; }

.page-hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-hero-meta small {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   360° lifecycle
   -------------------------------------------------------------------------- */

.lifecycle {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 6vw, 84px);
}

.lifecycle article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px 34px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.lifecycle article:nth-child(4n) { border-right: 0; }

.lifecycle article:hover { background: var(--ink); color: white; }
.lifecycle article:hover .lc-num { color: var(--red-light); }
.lifecycle article:hover p { color: #b6afab; }
.lifecycle article:hover .lc-out { border-color: var(--line-light); color: var(--red-light); }

.lifecycle h3 {
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.1;
}

.lifecycle p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.lc-out {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 14px;
  text-transform: uppercase;
}

/* Arc rail */
.arc-rail {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: clamp(46px, 6vw, 80px);
  position: relative;
}

.arc-rail::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 6px;
}

.section.dark .arc-rail::before { background: rgba(255, 255, 255, 0.18); }

.arc-rail div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.arc-rail div::before {
  background: var(--paper);
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
  height: 13px;
  width: 13px;
}

.section.dark .arc-rail div::before { background: var(--ink); }
.section.white .arc-rail div::before { background: var(--white); }

.arc-rail span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section.dark .arc-rail span { color: #8e8783; }

.arc-rail strong {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.arc-rail small {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.section.dark .arc-rail small { color: #a29b96; }

/* --------------------------------------------------------------------------
   Partner band — "we are partners, not a service provider"
   -------------------------------------------------------------------------- */

.partner-band {
  background: var(--paper-deep);
  overflow: hidden;
  padding: clamp(70px, 9vw, 140px) var(--pad-x);
  position: relative;
}

.partner-band::before {
  border: 1px solid rgba(201, 35, 45, 0.16);
  border-radius: 50%;
  content: "";
  height: 620px;
  left: -260px;
  pointer-events: none;
  position: absolute;
  top: -240px;
  width: 620px;
}

.partner-inner {
  position: relative;
  z-index: 2;
}

.partner-flag {
  align-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.12em;
  padding: 11px 16px;
  text-transform: uppercase;
}

.partner-flag i {
  background: var(--red);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.partner-statement {
  font-size: clamp(34px, 5.4vw, 88px);
  line-height: 0.96;
  margin: 30px 0 0;
  max-width: 1150px;
}

.partner-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.68;
  margin: 32px 0 0;
  max-width: 820px;
}

.partner-lead strong {
  color: var(--ink);
  font-weight: 800;
}

.partner-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(46px, 5vw, 74px);
}

.partner-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.partner-grid > div {
  border-right: 1px solid var(--line);
  padding: 30px clamp(16px, 2.4vw, 36px) 6px;
}

.partner-grid > div:first-child { padding-left: 0; }
.partner-grid > div:last-child { border-right: 0; }

.partner-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.partner-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 14px 0 0;
}

/* --------------------------------------------------------------------------
   Ecosystem wall — platforms, gateways, couriers, ERPs, channels
   -------------------------------------------------------------------------- */

.stack-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(46px, 6vw, 86px);
}

.stack-group {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 30px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.section.dark .stack-group {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-light);
}

.stack-group:hover {
  border-color: var(--red);
  box-shadow: 0 22px 46px rgba(20, 15, 12, 0.1);
  transform: translateY(-4px);
}

.stack-head {
  align-items: center;
  display: flex;
  gap: 12px;
}

.stack-head span {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex: none;
  font-size: 8.5px;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 0 9px;
}

.stack-head.in span { background: var(--red); }
.stack-head.both span { background: var(--gold); }
.stack-head.global span { background: var(--charcoal); }

.stack-head h3 {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.1;
}

.stack-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stack-tiles li {
  border: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 9px 11px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.section.dark .stack-tiles li { border-color: var(--line-light); }

.stack-tiles li:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.stack-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin: auto 0 0;
  padding-top: 14px;
}

.section.dark .stack-note { border-color: var(--line-light); color: #a29b96; }

/* --------------------------------------------------------------------------
   Growth-share model (the headline commercial message)
   -------------------------------------------------------------------------- */

.growth-band {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) var(--pad-x);
  position: relative;
}

.growth-band::before {
  background: radial-gradient(circle, rgba(201, 35, 45, 0.5), transparent 68%);
  content: "";
  filter: blur(20px);
  height: 620px;
  position: absolute;
  right: -240px;
  top: -240px;
  width: 620px;
}

.growth-band::after {
  color: rgba(255, 255, 255, 0.045);
  content: "%";
  font-family: var(--font-display);
  font-size: min(52vw, 620px);
  font-weight: 700;
  line-height: 0.7;
  pointer-events: none;
  position: absolute;
  right: 3vw;
  top: 8%;
}

.growth-inner {
  position: relative;
  z-index: 2;
}

.growth-flag {
  align-items: center;
  border: 1px solid var(--red);
  color: var(--red-light);
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.12em;
  padding: 11px 16px;
  text-transform: uppercase;
}

.growth-flag i {
  background: var(--red);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.growth-band h2 {
  font-size: clamp(40px, 6.2vw, 100px);
  line-height: 0.94;
  margin-top: 30px;
  max-width: 1180px;
}

.growth-band h2 em { color: var(--red-light); }

.strike {
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-thickness: 4px;
}

.growth-band > .growth-inner > p {
  color: #b6afab;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.68;
  margin: 32px 0 0;
  max-width: 760px;
}

.growth-compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(48px, 6vw, 74px);
}

.growth-card {
  border: 1px solid var(--line-light);
  padding: 32px 30px 36px;
}

.growth-card.is-us {
  background: var(--red);
  border-color: var(--red);
}

.growth-card .gc-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0.6;
  text-transform: uppercase;
}

.growth-card.is-us .gc-tag { opacity: 1; }

.growth-card h3 {
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.06;
  margin: 20px 0 0;
}

.growth-card ul {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.growth-card li {
  border-top: 1px solid var(--line-light);
  display: flex;
  font-size: 13.5px;
  gap: 12px;
  line-height: 1.55;
  padding: 13px 0;
}

.growth-card.is-us li { border-color: rgba(255, 255, 255, 0.3); }

.growth-card li b { flex: none; font-weight: 800; }
.growth-card:not(.is-us) li b { color: #7c7570; }
.growth-card:not(.is-us) li { color: #aaa29e; }

.growth-points {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(46px, 5vw, 70px);
}

.growth-points div {
  border-right: 1px solid var(--line-light);
  padding: 30px clamp(18px, 3vw, 40px) 10px;
}

.growth-points div:first-child { padding-left: 0; }
.growth-points div:last-child { border-right: 0; }

.growth-points strong {
  color: var(--red-light);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.growth-points p {
  color: #a29b96;
  font-size: 13px;
  line-height: 1.6;
  margin: 12px 0 0;
}

/* Model table */
.table-wrap {
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
  overflow-x: auto;
}

.section.dark .table-wrap { border-color: var(--line-light); }

table.model-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.model-table th,
.model-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.section.dark .model-table th,
.section.dark .model-table td { border-color: var(--line-light); }

.model-table thead th {
  background: var(--ink);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section.dark .model-table thead th { background: rgba(255, 255, 255, 0.07); }

.model-table tbody th {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  width: 26%;
}

.model-table td { color: var(--muted); line-height: 1.6; }
.section.dark .model-table td { color: #aaa29e; }
.model-table .accent { color: var(--red); font-weight: 800; }
.section.dark .model-table .accent { color: var(--red-light); }

/* --------------------------------------------------------------------------
   Capability / pillar grids
   -------------------------------------------------------------------------- */

.pillar-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 90px);
}

.pillar-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pillar-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: -0.5px;
  padding: 32px 28px 36px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.section.dark .pillar {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-light);
}

.pillar:hover {
  background: var(--red);
  color: white;
  transform: translateY(-6px);
  z-index: 2;
}

.pillar:hover .pillar-code,
.pillar:hover p,
.pillar:hover li,
.pillar:hover .pillar-more { color: white; }

.pillar:hover li::before,
.pillar:hover .pillar-more { border-color: rgba(255, 255, 255, 0.45); }

.pillar-code {
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin: 0;
  text-transform: uppercase;
}

.section.dark .pillar-code { color: var(--red-light); }

.pillar h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  margin: 8px 0 0;
}

.pillar p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.section.dark .pillar p { color: #a29b96; }

.pillar ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.pillar li {
  display: flex;
  font-size: 12.5px;
  font-weight: 700;
  gap: 9px;
  line-height: 1.5;
  padding: 6px 0;
}

.pillar li::before {
  color: var(--red);
  content: "+";
  flex: none;
  font-weight: 800;
}

.section.dark .pillar li::before { color: var(--red-light); }
.pillar:hover li::before { color: white; }

.pillar-more {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

.section.dark .pillar-more { border-color: var(--line-light); color: var(--red-light); }

/* Row-style capability list */
.row-list {
  border-top: 1px solid var(--line);
  margin-top: clamp(48px, 6vw, 90px);
}

.section.dark .row-list { border-color: var(--line-light); }

.row-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 6vw, 110px);
  grid-template-columns: 180px 1fr;
  padding: 40px 0;
  transition: padding 180ms ease, background 180ms ease;
}

.section.dark .row-item { border-color: var(--line-light); }
.row-item:hover { padding-left: 14px; padding-right: 14px; }

.row-meta { display: flex; gap: 18px; }

.row-meta span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}

.section.dark .row-meta span { color: var(--red-light); }

.row-meta p {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.row-content {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(250px, 1.15fr) minmax(230px, 1fr);
}

.row-content h3 {
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.08;
}

.row-content > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

.section.dark .row-content > p { color: #a29b96; }

.row-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.row-content li {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.035em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.section.dark .row-content li { border-color: var(--line-light); }

.row-link {
  align-self: start;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  grid-column: 1 / -1;
  justify-self: start;
  letter-spacing: 0.06em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Content layout for inner pages
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(40px, 6vw, 100px);
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.95fr);
}

.split.reverse { grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.55fr); }

.prose h2 {
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.03;
}

.prose h3 {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.14;
  margin-top: 42px;
}

.prose p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
  margin: 20px 0 0;
}

.prose > p:first-of-type {
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.7;
}

.section.dark .prose > p:first-of-type { color: white; }

.prose ul, .prose ol {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 20px 0 0;
  padding-left: 20px;
}

.prose li { margin-top: 9px; }
.prose strong { color: var(--ink); }
.section.dark .prose strong { color: white; }

.checklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.checklist li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 22px 1fr;
  padding: 15px 0;
}

.section.dark .checklist li { border-color: var(--line-light); }

.checklist li::before {
  color: var(--red);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.checklist strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.checklist span {
  color: var(--muted);
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 5px;
}

.section.dark .checklist span { color: #a29b96; }

/* Sticky aside */
.aside-card {
  background: var(--paper-deep);
  padding: 30px 28px 34px;
  position: sticky;
  top: 110px;
}

.section.dark .aside-card { background: rgba(255, 255, 255, 0.05); }
.section.white .aside-card { background: var(--paper); }

.aside-card h3 {
  font-size: 22px;
  line-height: 1.12;
  margin: 14px 0 0;
}

.aside-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 14px 0 0;
}

.section.dark .aside-card p { color: #a29b96; }

.aside-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.aside-card li {
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 0;
}

.section.dark .aside-card li { border-color: var(--line-light); }
.aside-card li b { color: var(--red); margin-right: 8px; }

.aside-card .button { margin-top: 24px; min-width: 100%; }

/* Numbered steps */
.step-list {
  border-top: 1px solid var(--line);
  counter-reset: step;
  margin-top: clamp(40px, 5vw, 70px);
}

.section.dark .step-list { border-color: var(--line-light); }

.step-list > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(20px, 4vw, 60px);
  grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1.1fr);
  padding: 30px 0;
}

.section.dark .step-list > div { border-color: var(--line-light); }

.step-list > div::before {
  color: var(--red);
  content: "STEP " counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-top: 5px;
}

.section.dark .step-list > div::before { color: var(--red-light); }

.step-list h3 {
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.14;
}

.step-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.section.dark .step-list p { color: #a29b96; }

/* Metric strip */
.metric-strip {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(40px, 5vw, 66px);
}

.section.dark .metric-strip,
.section.crimson .metric-strip { border-color: rgba(255, 255, 255, 0.35); }

.metric-strip div {
  border-right: 1px solid var(--line);
  padding: 26px clamp(14px, 2vw, 30px);
}

.section.dark .metric-strip div,
.section.crimson .metric-strip div { border-color: rgba(255, 255, 255, 0.35); }

.metric-strip div:first-child { padding-left: 0; }
.metric-strip div:last-child { border-right: 0; }

.metric-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.metric-strip span {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-transform: uppercase;
}

.section.dark .metric-strip span { color: #a29b96; }
.section.crimson .metric-strip span { color: rgba(255, 255, 255, 0.8); }

/* Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.chip-row span,
.chip-row a {
  background: rgba(25, 23, 22, 0.04);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 15px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.section.dark .chip-row span,
.section.dark .chip-row a {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
}

.chip-row a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}

.section.dark .faq { border-color: var(--line-light); }

.faq details {
  border-bottom: 1px solid var(--line);
}

.section.dark .faq details { border-color: var(--line-light); }

.faq summary {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  letter-spacing: -0.025em;
  list-style: none;
  padding: 24px 0;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  color: var(--red);
  content: "+";
  flex: none;
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }

.faq p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 860px;
  padding-right: 40px;
}

.section.dark .faq p { color: #a29b96; }

/* Answer list — always-visible Q&A for search and answer engines */
.answer-list {
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 64px);
}

.section.dark .answer-list { border-color: var(--line-light); }

.answer-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(20px, 4vw, 60px);
  grid-template-columns: minmax(0, 1fr);
  padding: 30px 0;
}

.section.dark .answer-item { border-color: var(--line-light); }

.answer-item h3 {
  font-size: clamp(19px, 1.9vw, 27px);
  line-height: 1.16;
  max-width: 900px;
}

.answer-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  margin: 14px 0 0;
  max-width: 900px;
}

.section.dark .answer-item p { color: #a29b96; }

/* Quote */
.quote-block {
  border-left: 3px solid var(--red);
  margin-top: 36px;
  padding: 6px 0 6px 26px;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  margin: 0;
}

.quote-block cite {
  color: var(--muted);
  display: block;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: 18px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Directory cards (industries / technology / case studies / services index)
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  margin-top: clamp(46px, 6vw, 86px);
}

/* An incomplete final row centres instead of hanging left. */
.card-grid > :last-child:nth-child(3n - 1) { grid-column: auto; }
.card-grid.balance > :last-child:nth-child(3n + 1) { grid-column: 2; }

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.dir-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section.dark .dir-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-light);
}

.dir-card:hover {
  border-color: var(--red);
  box-shadow: 0 22px 46px rgba(20, 15, 12, 0.12);
  transform: translateY(-5px);
}

.dir-card .dc-tag {
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin: 0;
  text-transform: uppercase;
}

.section.dark .dir-card .dc-tag { color: var(--red-light); }

.dir-card h3 {
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.1;
}

.dir-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.section.dark .dir-card p { color: #a29b96; }

.dir-card .dc-go {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: auto;
  padding-top: 15px;
  text-transform: uppercase;
}

.section.dark .dir-card .dc-go { border-color: var(--line-light); color: var(--red-light); }

.dir-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dir-card ul li {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 0;
}

.dir-card ul li::before { color: var(--red); content: "› "; }
.section.dark .dir-card ul li { color: #a29b96; }

/* Case study cards */
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
  box-shadow: 0 26px 54px rgba(20, 15, 12, 0.14);
  transform: translateY(-5px);
}

.case-flag {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  font-size: 9.5px;
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  text-transform: uppercase;
}

.case-flag b { color: var(--red-light); }

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 26px;
}

.case-body h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.06;
}

.case-body p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.case-go {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: auto;
  padding-top: 15px;
  text-transform: uppercase;
}

/* Logo wall */
.logo-wall {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(40px, 5vw, 70px);
}

.logo-wall a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 118px;
  padding: 18px;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.logo-wall a:hover { background: var(--rose); }
.logo-wall a:hover strong { color: var(--red); }
.logo-wall a:nth-child(4n) { border-right: 0; }

/* The open slot that closes the wall. */
.logo-wall .logo-slot {
  background: var(--red);
  border-color: var(--red);
  color: white;
  gap: 4px;
}

.logo-wall .logo-slot:hover { background: var(--ink); border-color: var(--ink); }
.logo-wall .logo-slot:hover strong { color: white; }
.logo-wall .logo-slot span { color: rgba(255, 255, 255, 0.82); }

.logo-wall .logo-slot em {
  align-items: center;
  display: inline-flex;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.07em;
  margin-top: 10px;
  padding: 8px 12px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.logo-wall .logo-slot:hover em { background: white; border-color: white; color: var(--ink); }

.logo-wall a strong {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-wall a span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Markets (India / UAE)
   -------------------------------------------------------------------------- */

.market-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(48px, 6vw, 90px);
}

.market-card {
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  position: relative;
}

.market-card::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 330px;
  opacity: 0.1;
  position: absolute;
  right: -160px;
  top: -160px;
  width: 330px;
}

.india-card { background: var(--paper-deep); }
.uae-card { background: var(--ink); color: white; }

.market-topline {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr auto;
  padding-bottom: 22px;
}

.market-topline span {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 38px;
}

.market-topline p,
.market-topline b {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.market-topline b { opacity: 0.55; }

.market-card h3 {
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  margin: 44px 0 18px;
}

.market-card .market-note {
  font-size: 14px;
  line-height: 1.68;
  margin: 0 0 30px;
  max-width: 440px;
  opacity: 0.72;
}

.market-card ul { list-style: none; margin: 0; padding: 0; }

.market-card li {
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 0;
}

.market-card li::before { color: var(--red); content: "+"; margin-right: 12px; }
.uae-card li::before { color: var(--red-light); }

.market-address {
  border-top: 1px solid currentColor;
  margin-top: 30px;
  padding-top: 24px;
}

.market-address p {
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

.market-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
}

.market-contact a {
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.market-contact a:first-child { color: var(--red); }
.uae-card .market-contact a:first-child { color: var(--red-light); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--red);
  color: white;
  padding: clamp(70px, 9vw, 150px) var(--pad-x);
  position: relative;
}

.cta-kicker {
  align-items: center;
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.cta-kicker span { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; }
.cta-kicker i { background: white; height: 1px; width: 70px; }

.cta-band h2 {
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  margin-top: 30px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.cta-band h2 em {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.cta-band > p {
  font-size: 17px;
  line-height: 1.68;
  margin: 34px 0 0;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}

.cta-phone {
  border-bottom: 1px solid white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 7px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Contact form (static — posts to mail client)
   -------------------------------------------------------------------------- */

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 15px 14px;
  width: 100%;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin: 18px 0 0;
}

/* Checkbox groups (partner registration) */
.choice-set {
  border: 1px solid var(--line);
  padding: 18px 20px 20px;
}

.choice-set legend {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 8px;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 6px;
}

.choice {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 13.5px;
  font-weight: 600;
  gap: 10px;
  padding: 6px 0;
}

.choice input {
  accent-color: var(--red);
  flex: none;
  height: 17px;
  margin: 0;
  width: 17px;
}

.choice:hover span { color: var(--red); }

/* Performance marketing case cards */
.pm-case {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 28px 32px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pm-case:hover {
  border-color: var(--red);
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.12);
  transform: translateY(-5px);
}

.pm-case-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.pm-case-top span {
  background: var(--ink);
  color: white;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.pm-case-top b {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pm-case h3 {
  color: var(--red);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.14;
}

.pm-case p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.pm-case ul {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.pm-case li {
  display: flex;
  font-size: 12.5px;
  font-weight: 600;
  gap: 9px;
  line-height: 1.5;
}

.pm-case li::before { color: var(--red); content: "+"; font-weight: 800; }

.pm-case-go {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

/* Legal pages */
.prose.legal .legal-block { margin-top: 46px; }
.prose.legal .legal-block:first-of-type { margin-top: 30px; }

.prose.legal h2 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.14;
}

.prose.legal p { font-size: 15px; line-height: 1.8; }
.prose.legal ul { font-size: 15px; }

.legal-updated {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px !important;
  padding-bottom: 18px;
}

.legal-note {
  background: var(--paper-deep);
  border-left: 3px solid var(--red);
  font-size: 13.5px !important;
  line-height: 1.7 !important;
  margin-top: 46px !important;
  padding: 20px 22px;
}

/* --------------------------------------------------------------------------
   Industry-wise ecommerce experts band
   -------------------------------------------------------------------------- */

.expert-band {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 6vw, 90px) var(--pad-x);
}

.expert-head { max-width: 860px; }

.expert-head h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.04;
  margin: 16px 0 0;
}

.expert-head > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 720px;
}

.expert-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(32px, 4vw, 50px);
}

.expert-item {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 22px 20px 0;
  transition: background 180ms ease, padding-left 180ms ease;
}

.expert-item:nth-child(4n) { border-right: 0; padding-right: 0; }

.expert-item:hover {
  background: var(--white);
  padding-left: 14px;
}

.expert-item strong {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.expert-item:hover strong { color: var(--red); }

.expert-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.expert-item.is-current { background: var(--white); }
.expert-item.is-current strong { color: var(--red); }
.expert-item.is-current strong::after { content: " — you are here"; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }

.expert-foot {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: clamp(28px, 3vw, 42px);
}

@media (max-width: 1120px) {
  .expert-list { grid-template-columns: repeat(2, 1fr); }
  .expert-item:nth-child(4n) { border-right: 1px solid var(--line); padding-right: 22px; }
  .expert-item:nth-child(2n) { border-right: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  .expert-list { grid-template-columns: 1fr; }
  .expert-item { border-right: 0 !important; padding-right: 0 !important; }
  .expert-foot { align-items: stretch; flex-direction: column; }
  .expert-foot .button { width: 100%; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(52px, 6vw, 80px) var(--pad-x) 34px;
}

.footer-top {
  display: grid;
  gap: clamp(30px, 4vw, 60px);
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(140px, 0.8fr));
}

.footer-brand-col img { width: min(260px, 100%); }

.footer-brand-col p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 320px;
}

.footer-col-title {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-col li { padding: 5px 0; }

.footer-col a {
  font-size: 12.5px;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-col a:hover { color: var(--red); }

/* Regional sites — separates this group site from globosoft.in / .ae */
.footer-regions {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 4vw, 60px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 30px;
}

.footer-regions > p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.footer-regions > p strong { color: var(--ink); }

.footer-regions > div {
  align-content: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.footer-regions a {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.footer-regions a:hover { background: var(--paper); border-color: var(--red); }

.footer-regions a b {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-regions a span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 24px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.footer-bottom a:hover { color: var(--red); }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------------------------------------------------------
   Brand guidelines document (internal page)
   -------------------------------------------------------------------------- */

.brand-block {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 1000px;
}

.brand-block h3 {
  font-size: clamp(19px, 1.8vw, 26px);
  margin: 44px 0 0;
}

.brand-block h3:first-child { margin-top: 0; }

.brand-quote {
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 20px 0 0;
  padding: 4px 0 4px 24px;
}

.brand-list {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 0;
  padding-left: 22px;
}

.brand-list li { margin-top: 10px; }
.brand-list strong { color: var(--ink); }
.section.dark .brand-list { color: #a29b96; }
.section.dark .brand-list strong { color: white; }

.brand-note {
  background: var(--paper-deep);
  border-left: 3px solid var(--red);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 28px 0 0;
  padding: 16px 20px;
}

.brand-note strong { color: var(--ink); }

.brand-table {
  border: 1px solid var(--line);
  border-collapse: collapse;
  margin-top: 22px;
  width: 100%;
}

.brand-table th,
.brand-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.6;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.brand-table th:last-child,
.brand-table td:last-child { border-right: 0; }

.brand-table thead th {
  background: var(--ink);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-table td { color: var(--muted); }
.brand-table td:first-child { color: var(--ink); font-weight: 600; }
.brand-table td.do { color: var(--ink); }
.brand-table td.do::before { color: var(--green); content: "✓ "; font-weight: 800; }
.brand-table td.dont::before { color: var(--red); content: "✕ "; font-weight: 800; }
.brand-table code { font-size: 12px; }

.section.dark .brand-block .brand-table { border-color: var(--line-light); }
.section.dark .brand-block .brand-table th,
.section.dark .brand-block .brand-table td { border-color: var(--line-light); }
.section.dark .brand-block .brand-table td { color: #a29b96; }
.section.dark .brand-block .brand-table td:first-child { color: white; }
.section.dark .brand-block .brand-table thead th { background: rgba(255, 255, 255, 0.08); }

.swatch-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 5vw, 64px);
}

.swatch {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.swatch-chip { height: 96px; width: 100%; }

.swatch > div { padding: 18px 20px 22px; }

.swatch strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.swatch code {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.swatch p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.type-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(40px, 5vw, 64px);
}

.type-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 26px 32px;
}

.type-sample {
  font-size: clamp(46px, 6vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0 0;
}

.logo-demo {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(40px, 5vw, 64px);
}

.logo-demo > div {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  min-height: 200px;
  padding: 34px;
}

.logo-demo img { width: min(300px, 80%); }
.logo-demo-light { background: var(--white); }
.logo-demo-dark { background: var(--ink); }

.logo-demo span {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-demo-light span { color: var(--muted); }
.logo-demo-dark span { color: #a29b96; }

.brand-compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.brand-compare > div { border: 1px solid var(--line); padding: 24px 22px 26px; }
.bc-bad { background: var(--paper-deep); }
.bc-good { background: var(--ink); color: white; }
.bc-good .pillar-code { color: var(--red-light); }

.brand-compare p:last-child {
  font-size: 15px;
  line-height: 1.72;
  margin: 14px 0 0;
}

.bc-bad p:last-child { color: var(--muted); }

.chip-row.muted-chips span {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
}

@media (max-width: 900px) {
  .swatch-grid { grid-template-columns: 1fr 1fr; }
  .type-grid,
  .logo-demo,
  .brand-compare { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .swatch-grid { grid-template-columns: 1fr; }
  .brand-table { display: block; overflow-x: auto; }
}

/* Verified-claim link: any assertion the reader can go and check. */
.verify-link {
  align-items: baseline;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  display: inline;
  gap: 5px;
}

.verify-link span { font-size: 0.8em; margin-left: 4px; }
.verify-link:hover { color: var(--ink); }

.section.dark .verify-link,
.growth-band .verify-link { color: var(--red-light); }
.section.dark .verify-link:hover { color: white; }

.announcement a,
.footer-brand-col a { border-bottom: 1px solid currentColor; }

/* --------------------------------------------------------------------------
   Google rating + proof chips
   -------------------------------------------------------------------------- */

.gr-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: inline-flex;
  gap: 10px;
  padding: 10px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gr-chip:hover {
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.1);
  transform: translateY(-2px);
}

.gr-chip > b {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.gr-chip-shopify > b { background: #5a8c3f; }

.gr-chip span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.gr-chip span strong { font-weight: 800; }
.gr-chip i { color: var(--red); font-size: 11px; font-style: normal; margin-left: 2px; }

.gr-stars {
  color: #f5a623;
  flex: none;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.section.dark .gr-chip,
.page-hero.dark .gr-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-light);
  color: white;
}

/* Standalone rating panel */
.gr-block {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 28px 30px;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.gr-block:hover { border-color: var(--red); box-shadow: 0 22px 46px rgba(26, 26, 26, 0.12); }

.gr-mark {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gr-mark b { color: var(--red); font-size: 13px; }

.gr-score {
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.gr-block .gr-stars { font-size: 19px; }

.gr-count {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.gr-block em {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: 14px;
  padding-top: 14px;
  text-transform: uppercase;
  width: 100%;
}

.hero-proof,
.footer-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof { margin-top: 30px; position: relative; z-index: 2; }

.footer-proof {
  border-top: 1px solid var(--line);
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 28px;
}

/* --------------------------------------------------------------------------
   Why we are the best, evidence grid
   -------------------------------------------------------------------------- */

.best-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(46px, 6vw, 84px);
}

.best-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -0.5px;
  padding: 28px 24px 26px;
  transition: background 180ms ease, transform 180ms ease;
}

.best-card:hover { transform: translateY(-5px); z-index: 2; }

.best-card h3 {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.14;
}

.best-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.best-go {
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 14px;
  text-transform: uppercase;
}

.best-proof {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  margin-top: clamp(40px, 5vw, 64px);
}

.best-proof-copy h3 { font-size: clamp(24px, 2.4vw, 36px); line-height: 1.08; }
.best-proof-copy p { color: var(--muted); font-size: 15px; line-height: 1.72; margin: 16px 0 0; }

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

@media (max-width: 900px) {
  .best-proof { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .best-grid { grid-template-columns: 1fr; }
  .gr-chip { width: 100%; }
}

/* --------------------------------------------------------------------------
   Why Globosoft
   -------------------------------------------------------------------------- */

.why-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(44px, 5vw, 70px);
}

.why-grid article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(16px, 2.4vw, 30px);
  grid-template-columns: minmax(0, 1fr);
  padding: 30px clamp(20px, 3vw, 46px) 30px 0;
}

.why-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.why-grid article:nth-child(even) { padding-left: clamp(20px, 3vw, 46px); padding-right: 0; }

.why-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-top: 3px;
}

.why-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.why-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0 0;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp enquiry button
   -------------------------------------------------------------------------- */

.wa-float {
  align-items: center;
  background: #1f9d54;
  border-radius: 999px;
  bottom: calc(var(--dock-h) + 18px);
  box-shadow: 0 14px 34px rgba(20, 15, 12, 0.28);
  color: white;
  display: inline-flex;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  position: fixed;
  right: 18px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  z-index: 55;
}

.wa-float:hover {
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(20, 15, 12, 0.34);
  transform: translateY(-3px);
}

.wa-float svg {
  fill: currentColor;
  flex: none;
  height: 22px;
  width: 22px;
}

.wa-float span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   One-time lead modal
   -------------------------------------------------------------------------- */

.lead-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  position: fixed;
  z-index: 80;
}

.lead-modal[hidden] { display: none; }

.lead-backdrop {
  background: rgba(26, 26, 26, 0.62);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 260ms ease;
}

.lead-modal.is-open .lead-backdrop { opacity: 1; }

.lead-panel {
  background: var(--white);
  box-shadow: 0 40px 90px rgba(26, 26, 26, 0.34);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-height: calc(100dvh - 32px);
  max-width: 940px;
  opacity: 0;
  overflow: auto;
  position: relative;
  transform: translateY(16px) scale(0.985);
  transition: opacity 320ms cubic-bezier(0.22, 0.7, 0.28, 1),
              transform 320ms cubic-bezier(0.22, 0.7, 0.28, 1);
  width: 100%;
}

.lead-modal.is-open .lead-panel { opacity: 1; transform: none; }

.lead-close {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  padding: 6px 10px;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 3;
}

.lead-close:hover { color: var(--red); }

/* Pitch side */
.lead-pitch {
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  position: relative;
}

.lead-pitch > *:not(.mark-wm) { position: relative; z-index: 2; }

.lead-pitch .mark-wm {
  height: 300px;
  opacity: 0.07;
  right: -110px;
  top: -90px;
  width: 300px;
}

.lead-kicker {
  color: var(--red-light);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.lead-pitch h2 {
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  margin: 16px 0 0;
}

.lead-pitch h2 em { color: var(--red-light); }

.lead-pitch #leadBrief {
  color: #a8a8a8;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 16px 0 0;
}

.lead-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.lead-points li {
  border-top: 1px solid var(--line-light);
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 0;
}

.lead-points li::before { color: var(--red-light); content: "✓"; margin-right: 10px; }

.lead-proof { margin-top: auto; padding-top: 22px; }

.lead-pitch .gr-chip {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  justify-content: flex-start;
}

.lead-pitch .gr-chip > b { background: var(--red); }
.lead-pitch .gr-chip i { color: var(--red-light); margin-left: auto; }
.lead-pitch .gr-chip:hover { border-color: var(--red-light); }
.lead-proof .gr-chip { width: 100%; }

/* Form side */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(28px, 3vw, 42px);
}

.lead-form-head {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.lead-form .field { gap: 6px; }
.lead-form .field label { font-size: 9px; }
.lead-form input,
.lead-form select,
.lead-form textarea { font-size: 13.5px; padding: 11px 12px; }
.lead-form textarea { min-height: 62px; }

.lead-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }

.lead-optional {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.lead-submit { margin-top: 4px; min-width: 100%; padding: 15px 18px; }

.lead-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.lead-note a { border-bottom: 1px solid currentColor; color: var(--red); }

.lead-dismiss {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 0;
  text-decoration: underline;
  text-transform: uppercase;
}

.lead-dismiss:hover { color: var(--ink); }

@media (max-width: 820px) {
  .lead-panel { grid-template-columns: 1fr; }
  .lead-pitch { padding-bottom: 26px; }
  .lead-pitch #leadBrief { display: none; }
  .lead-points { display: none; }
  .lead-proof { margin-top: 18px; padding-top: 0; }
}

@media (max-width: 520px) {
  .lead-row { grid-template-columns: 1fr; }
  .lead-pitch h2 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .lead-panel { transform: none; }
}

/* Exit-intent WhatsApp prompt */
.exit-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  position: fixed;
  z-index: 85;
}

.exit-modal[hidden] { display: none; }
.exit-modal .lead-backdrop { opacity: 0; transition: opacity 260ms ease; }
.exit-modal.is-open .lead-backdrop { opacity: 1; }

.exit-panel {
  background: var(--white);
  box-shadow: 0 40px 90px rgba(26, 26, 26, 0.34);
  max-width: 430px;
  opacity: 0;
  padding: clamp(32px, 4vw, 44px) clamp(26px, 3vw, 38px) clamp(26px, 3vw, 34px);
  position: relative;
  text-align: center;
  transform: translateY(16px) scale(0.985);
  transition: opacity 320ms cubic-bezier(0.22, 0.7, 0.28, 1),
              transform 320ms cubic-bezier(0.22, 0.7, 0.28, 1);
  width: 100%;
}

.exit-modal.is-open .exit-panel { opacity: 1; transform: none; }

.exit-icon {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.exit-icon svg { fill: white; height: 30px; width: 30px; }

.exit-panel .lead-kicker { color: var(--red); }

.exit-panel h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
  margin: 12px 0 0;
}

.exit-panel h2 em { color: var(--red); font-style: normal; }

.exit-panel #exitBrief {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
  margin: 14px 0 0;
}

.exit-go {
  justify-content: center;
  margin-top: 22px;
  min-width: 100%;
}

.exit-number {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 12px 0 0;
}

.exit-panel .lead-dismiss { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .exit-panel { transform: none; }
}

/* --------------------------------------------------------------------------
   Fixed geo dock — half India / half UAE
   -------------------------------------------------------------------------- */

.geo-dock {
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 60;
}

.geo-half {
  position: relative;
}

.geo-bar {
  align-items: center;
  border-top: 2px solid var(--red);
  color: white;
  display: flex;
  gap: 14px;
  height: var(--dock-h);
  padding: 0 clamp(16px, 3vw, 40px);
  transition: background 200ms ease, padding 200ms ease;
}

.geo-in .geo-bar { background: var(--ink); }
.geo-ae .geo-bar { background: #221f1d; border-left: 1px solid rgba(255, 255, 255, 0.14); }

.geo-half:hover .geo-bar,
.geo-half.is-open .geo-bar { background: var(--red); }

.geo-code {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex: none;
  font-size: 10.5px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 34px;
}

.geo-label { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.geo-label strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.geo-label small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.geo-half:hover .geo-label small,
.geo-half.is-open .geo-label small { color: rgba(255, 255, 255, 0.85); }

.geo-go {
  font-size: 15px;
  margin-left: auto;
  transition: transform 200ms ease;
}

.geo-half:hover .geo-go { transform: translate(3px, -3px); }

.geo-hint {
  color: rgba(255, 255, 255, 0.45);
  flex: none;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-left: auto;
  text-transform: uppercase;
}

/* Hover panel */
.geo-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  bottom: 100%;
  box-shadow: 0 -26px 60px rgba(20, 15, 12, 0.22);
  color: var(--ink);
  left: clamp(10px, 2vw, 30px);
  opacity: 0;
  padding: 26px 26px 28px;
  pointer-events: none;
  position: absolute;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  width: min(390px, calc(100vw - 40px));
}

.geo-ae .geo-panel { left: auto; right: clamp(10px, 2vw, 30px); }

.geo-half:hover .geo-panel,
.geo-half:focus-within .geo-panel,
.geo-half.is-open .geo-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.geo-panel .gp-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-bottom: 16px;
}

.geo-panel .gp-top span {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  letter-spacing: 0.07em;
  width: 32px;
}

.geo-panel .gp-top strong {
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  min-width: 0;
}

.geo-panel .gp-top em {
  color: var(--muted);
  flex: 1 0 100%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  order: 3;
  padding-left: 44px;
  text-transform: uppercase;
}

.geo-panel address {
  color: var(--muted);
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.72;
  margin: 18px 0 0;
}

.geo-panel address b { color: var(--ink); display: block; font-size: 14px; }

.geo-panel .gp-lines {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.geo-panel .gp-lines a {
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  font-size: 12.5px;
  font-weight: 700;
  gap: 12px;
  padding: 10px 0;
}

.geo-panel .gp-lines a:hover { color: var(--red); }

.geo-panel .gp-lines i {
  color: var(--muted);
  flex: none;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-top: 3px;
  text-transform: uppercase;
  width: 52px;
}

.geo-panel .gp-visit {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  margin-top: 20px;
  padding: 15px 16px;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.geo-panel .gp-visit:hover { background: var(--ink); }

/* Link covering the whole bar, kept underneath the panel's own links */
.geo-cover {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.geo-bar > * { position: relative; z-index: 2; pointer-events: none; }
.geo-panel { z-index: 3; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .nav-link { font-size: 11px; letter-spacing: 0.04em; }
  .header-cta { font-size: 9.5px; gap: 10px; padding: 14px 14px; }
}

@media (max-width: 1300px) {
  .site-header { grid-template-columns: 1fr auto auto; }

  /* Full-height sheet below the header, so no page content shows through.
     Note: the header uses backdrop-filter, which makes it a containing block
     for fixed-position descendants. So this is absolutely positioned against
     the header and given an explicit viewport-derived height instead. */
  .primary-nav {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    justify-content: flex-start;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 4px var(--pad-x) calc(var(--dock-h) + 32px);
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 45;
  }

  .primary-nav.is-open { display: flex; }

  .nav-item {
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .nav-link {
    font-size: 13px;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
  }

  .nav-link .caret {
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 6px;
  }

  /* Burger becomes a close cross while the sheet is open. */
  .nav-toggle[aria-expanded="true"] i { background: transparent; }
  .nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  .nav-toggle i::before,
  .nav-toggle i::after { transition: transform 180ms ease, top 180ms ease; }

  .mega {
    border: 0;
    box-shadow: none;
    display: none;
    left: auto;
    max-width: 100%;
    opacity: 1;
    padding: 0 0 18px;
    pointer-events: auto;
    position: static;
    transform: none;
    width: 100%;
  }

  .nav-item.is-expanded .mega,
  .nav-item.is-open .mega { display: block; }

  .mega { background: transparent; padding: 0 0 14px 14px; }
  .mega-head { margin-bottom: 2px; }
  .mega a { font-size: 12.5px; padding: 9px 0; }
  .mega a small { display: none; }
  .mega-foot { gap: 12px; margin-top: 12px; padding-top: 12px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-grid.cols-3 { grid-template-columns: 1fr; }
  .mega-head { margin-bottom: 4px; }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav-item-compact { display: block; }
  .nav-item-compact .nav-link { color: var(--red); }

  .hero-system { opacity: 0.98; right: -70px; }

  .pillar-grid,
  .pillar-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

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

  .card-grid,
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

  .lifecycle { grid-template-columns: repeat(2, 1fr); }
  .lifecycle article:nth-child(4n) { border-right: 1px solid var(--line); }
  .lifecycle article:nth-child(2n) { border-right: 0; }

  .arc-rail { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .split,
  .split.reverse { grid-template-columns: 1fr; }

  .aside-card { position: static; }

  .step-list > div { grid-template-columns: 80px 1fr; }
  .step-list > div > p { grid-column: 2; }

  .partner-grid,
  .partner-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }

  .partner-grid > div:nth-child(2n) { border-right: 0; }
  .partner-grid > div:nth-child(odd) { padding-left: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .why-grid article:nth-child(odd) { border-right: 0; }
  .why-grid article { padding: 26px 0 !important; }

  .growth-compare { grid-template-columns: 1fr; }
  .growth-points { grid-template-columns: 1fr; }
  .growth-points div {
    border-bottom: 1px solid var(--line-light);
    border-right: 0;
    padding: 24px 0;
  }
  .growth-points div:last-child { border-bottom: 0; }

  .market-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .logo-wall a:nth-child(4n) { border-right: 1px solid var(--line); }
  .logo-wall a:nth-child(2n) { border-right: 0; }
}

@media (max-width: 1360px) {
  .announcement-partner { display: none; }
}

@media (max-width: 1024px) {
  /* Drop the "since 2010" line and its separator, keep the growth-share message. */
  .announcement p > span:nth-child(5),
  .announcement p > i:nth-child(6) { display: none; }
}

@media (max-width: 860px) {

  :root { --header-h: 74px; }

  .site-header { min-height: 74px; padding: 10px 20px; }
  .brand { width: min(230px, 60vw); }

  .hero { padding-top: 56px; }
  .hero h1 { font-size: 17px; max-width: 100%; }
  .hero-display { font-size: clamp(38px, 11vw, 62px); max-width: 100%; }

  .hero-system {
    margin: 60px 0 0 auto;
    position: relative;
    right: auto;
    top: auto;
    transform: rotate(1.4deg);
    width: min(94%, 480px);
  }

  .hero-stats { grid-template-columns: 1fr 1fr; margin-top: 80px; }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .section-heading { gap: 30px; grid-template-columns: 1fr; }

  .page-hero-meta,
  .metric-strip { grid-template-columns: 1fr 1fr; }

  .page-hero-meta div:nth-child(2),
  .metric-strip div:nth-child(2) { border-right: 0; }

  .page-hero-meta div:nth-child(-n + 2),
  .metric-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  /* Keep the left column flush once the strips wrap to two columns. */
  .page-hero-meta div:nth-child(odd),
  .metric-strip div:nth-child(odd) { padding-left: 0; }

  .row-item { gap: 26px; grid-template-columns: 1fr; }
  .row-content { grid-template-columns: 1fr; }

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

  .geo-label small { display: none; }
  .geo-hint { display: none; }
}

@media (max-width: 640px) {
  :root { --dock-h: 60px; --pad-x: 20px; }

  .hero-intro { font-size: 16px; }
  .hero-display { font-size: 36px; }

  .actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .actions .button { width: 100%; }
  .actions .text-link { align-self: flex-start; }

  .hero-system { margin-top: 48px; width: 100%; }
  .system-footer span:last-child { display: none; }

  .hero-stats strong { font-size: 24px; }
  .hero-stats div { padding: 20px 12px; }
  .hero-stats div:nth-child(odd) { padding-left: 0; }

  .section-heading h2 { font-size: 38px; }
  .growth-band h2 { font-size: 38px; }
  .cta-band h2 { font-size: 40px; }

  .partner-grid,
  .partner-grid.cols-3,
  .stack-grid,
  .pillar-grid,
  .pillar-grid.cols-4,
  .card-grid,
  .card-grid.cols-2,
  .card-grid.cols-4,
  .lifecycle,
  .arc-rail { grid-template-columns: 1fr; }

  .lifecycle article { border-right: 0 !important; }

  .partner-grid > div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 24px 0;
  }

  .partner-grid > div:last-child { border-bottom: 0; }
  .partner-statement { font-size: 34px; }

  .arc-rail::before { bottom: 0; height: auto; left: 6px; right: auto; top: 0; width: 1px; }
  .arc-rail div { display: grid; gap: 14px; grid-template-columns: 14px 1fr; }
  .arc-rail div span,
  .arc-rail div strong,
  .arc-rail div small { grid-column: 2; }

  .step-list > div { grid-template-columns: 1fr; }
  .step-list > div > p { grid-column: 1; }

  .row-item:hover { padding-left: 0; padding-right: 0; }

  .market-card { padding: 26px 22px 32px; }
  .market-card h3 { font-size: 34px; }
  .market-topline { grid-template-columns: 42px 1fr; }
  .market-topline b { display: none; }

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

  .footer-regions,
  .footer-regions > div { grid-template-columns: 1fr; }

  .answer-item { gap: 14px; grid-template-columns: 1fr; }

  .cta-actions { align-items: flex-start; flex-direction: column; }

  .wa-float { padding: 12px; right: 14px; }
  .wa-float span { display: none; }

  .geo-bar { gap: 10px; padding: 0 14px; }
  .geo-panel { left: 8px !important; right: 8px !important; width: calc(100vw - 16px); }
}

/* --------------------------------------------------------------------------
   Motion — entrance and scroll reveals

   Elements are only hidden when JavaScript is present (the `js` class is set
   by an inline script in <head>), so a no-JS visitor sees everything.
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms cubic-bezier(0.22, 0.7, 0.28, 1),
              transform 620ms cubic-bezier(0.22, 0.7, 0.28, 1);
  will-change: opacity, transform;
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Cards lift in from slightly further, headings barely move. */
.js .reveal-card { transform: translateY(22px); }
.js .reveal-soft { transform: translateY(8px); }

/* Hero entrance, staggered by the script. */
.js .hero-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.22, 0.7, 0.28, 1),
              transform 700ms cubic-bezier(0.22, 0.7, 0.28, 1);
}

.js .hero-in.is-in { opacity: 1; transform: none; }

/* The system card owns its own transform (rotation plus pointer parallax),
   so it fades in without the shared entrance touching `transform`. */
.js .hero-fade {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 0.7, 0.28, 1);
}

.js .hero-fade.is-in { opacity: 1; }

/* The little bar chart in the hero card grows once. */
.js .growth-bars i {
  transform: scaleY(0.08);
  transform-origin: bottom;
  transition: transform 720ms cubic-bezier(0.22, 0.9, 0.3, 1);
}

.js .growth-bars.is-in i { transform: scaleY(1); }
.js .growth-bars.is-in i:nth-child(1) { transition-delay: 40ms; }
.js .growth-bars.is-in i:nth-child(2) { transition-delay: 90ms; }
.js .growth-bars.is-in i:nth-child(3) { transition-delay: 140ms; }
.js .growth-bars.is-in i:nth-child(4) { transition-delay: 190ms; }
.js .growth-bars.is-in i:nth-child(5) { transition-delay: 240ms; }
.js .growth-bars.is-in i:nth-child(6) { transition-delay: 290ms; }
.js .growth-bars.is-in i:nth-child(7) { transition-delay: 340ms; }

/* Live-system dot, a slow breath rather than a blink. */
.status-dot { animation: dotBreath 2.8s ease-in-out infinite; }

@keyframes dotBreath {
  0%, 100% { box-shadow: 0 0 0 5px rgba(99, 211, 138, 0.12); }
  50% { box-shadow: 0 0 0 9px rgba(99, 211, 138, 0.05); }
}

/* Arrows drift on hover, a small confirmation the thing is clickable. */
.button span[aria-hidden],
.text-link span[aria-hidden],
.best-go span[aria-hidden],
.dc-go,
.case-go { transition: transform 200ms ease; }

.button:hover span[aria-hidden],
.text-link:hover span[aria-hidden],
.best-go:hover span[aria-hidden] { transform: translateX(4px); display: inline-block; }

.dir-card:hover .dc-go,
.case-card:hover .case-go { transform: translateX(4px); }

/* Section index labels get a growing rule as they arrive. */
.js .section-index.is-in::after {
  animation: ruleGrow 700ms cubic-bezier(0.22, 0.7, 0.28, 1) 120ms both;
}

@keyframes ruleGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Never leave content stranded at opacity 0. */
  .js .reveal,
  .js .hero-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .growth-bars i { transform: scaleY(1) !important; }
  .status-dot { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

@media print {
  .geo-dock, .site-header, .announcement, .cta-band, .wa-float { display: none; }
  body { padding-bottom: 0; }
}
