/* Akronic Network - design system */
:root {
  --font-sans: "D-DIN", "Barlow", Arial, Verdana, sans-serif;
  --font-display: "D-DIN", "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  --max: 1280px;
  --nav: 72px;
  --radius: 0;
  --radius-sm: 8px;
  --radius-pill: 32px;
  --radius-xs: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f0f0fa;
  --surface: #ffffff;
  --surface-2: #f0f0fa;
  --ink: #000000;
  --ink-soft: #5a5a5f;
  --muted: #5a5a5f;
  --line: #e0e0e8;
  --line-strong: #e0e0e8;
  --accent: #000000;
  --accent-2: #000000;
  --accent-ink: #ffffff;
  --glow: transparent;
  --ok: #000000;
  --ok-bg: rgba(0, 0, 0, 0.06);
  --danger: #000000;
  --warn: #444444;
  --shadow: none;
  --nav-bg: rgba(255, 255, 255, 0.28);
  --nav-glass: rgba(255, 255, 255, 0.58);
  --nav-shadow: rgba(0, 0, 0, 0.08);
  --logo-filter: none;
  --brand-filter: grayscale(1) opacity(0.55);
  --brand-filter-light: grayscale(1) invert(1) opacity(0.55);
  --chart-fill: rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
  --bg: #000000;
  --bg-2: #000000;
  --surface: #000000;
  --surface-2: #0a0a0a;
  --ink: #ffffff;
  --ink-soft: #f0f0fa;
  --muted: #f0f0fa;
  --line: #3a3a3f;
  --line-strong: #3a3a3f;
  --accent: #ffffff;
  --accent-2: #ffffff;
  --accent-ink: #000000;
  --glow: transparent;
  --ok: #ffffff;
  --ok-bg: rgba(255, 255, 255, 0.08);
  --danger: #ffffff;
  --warn: #bbbbbb;
  --shadow: none;
  --nav-bg: rgba(0, 0, 0, 0.18);
  --nav-glass: rgba(8, 8, 10, 0.52);
  --nav-shadow: rgba(0, 0, 0, 0.42);
  --logo-filter: invert(1);
  --brand-filter: grayscale(1) invert(1) opacity(0.55);
  --brand-filter-light: grayscale(1) opacity(0.55);
  --chart-fill: rgba(255, 255, 255, 0.14);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
[data-theme="light"] { color-scheme: light; }
[data-theme="dark"] { color-scheme: dark; }

html, body { min-height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.32px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[x-cloak] { display: none !important; }

body.is-locked { overflow: hidden; }

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

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2 {
  font-family: var(--font-display);
  letter-spacing: 1.6px;
  line-height: 0.95;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.96px;
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

p { margin: 0; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 0;
  z-index: 80;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--ink);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px var(--ok-bg);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 7px transparent; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  height: var(--nav);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header .brand img {
  filter: invert(1);
}

.site-header .nav-link,
.site-header .nav-btn,
.site-header .icon-btn {
  color: #fff;
}

.site-header .btn-primary {
  color: #fff;
  border-color: #fff;
}

.site-header.is-scrolled,
body:has(main > .hash-band:first-child) .site-header,
[data-theme="light"] .site-header {
  background: var(--nav-glass);
  box-shadow: 0 12px 40px var(--nav-shadow);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header.is-scrolled .brand img,
body:has(main > .hash-band:first-child) .site-header .brand img,
[data-theme="light"] .site-header .brand img {
  filter: var(--logo-filter);
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-btn,
.site-header.is-scrolled .icon-btn,
body:has(main > .hash-band:first-child) .site-header .nav-link,
body:has(main > .hash-band:first-child) .site-header .nav-btn,
body:has(main > .hash-band:first-child) .site-header .icon-btn,
[data-theme="light"] .site-header .nav-link,
[data-theme="light"] .site-header .nav-btn,
[data-theme="light"] .site-header .icon-btn {
  color: var(--ink);
}

.site-header.is-scrolled .btn-primary,
body:has(main > .hash-band:first-child) .site-header .btn-primary,
[data-theme="light"] .site-header .btn-primary {
  color: var(--ink);
  border-color: var(--ink);
}

.nav {
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand img {
  height: 28px;
  width: auto;
  filter: var(--logo-filter);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-btn {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  opacity: 0.78;
}

.nav-link:hover,
.nav-btn:hover,
.nav-link.is-active,
.nav-btn.is-active { color: var(--ink); background: none; opacity: 1; }

.nav-dd { position: relative; }

.mega {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(640px, 80vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  z-index: 50;
}

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

.mega a {
  text-decoration: none;
  padding: 18px 16px;
  border-radius: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega a:nth-child(2n) { border-right: 0; }
.mega a:nth-child(n+3) { border-top: 1px solid var(--line); }

.mega a:hover { background: var(--ink); color: var(--bg); }

.mega a:hover span { color: var(--bg); opacity: 0.7; }

.mega i { font-size: 20px; color: inherit; }
.mega strong { font-size: 15px; letter-spacing: 0.08em; }
.mega span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-transform: none; font-family: var(--font-sans); font-weight: 400; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions > .btn { display: none; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.icon-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.icon-btn i { font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 0;
  min-width: 0;
  line-height: 0.94;
  background: transparent;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover,
.btn-primary:hover,
.btn-accent:hover,
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-primary,
.btn-ghost,
.btn-accent {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-full { width: 100%; min-width: 0; }

.menu-btn { display: grid; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 38;
}

.drawer {
  display: none;
  position: fixed;
  inset: var(--nav) 12px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  z-index: 39;
  box-shadow: var(--shadow);
  overflow: auto;
}

.drawer.is-open { display: flex; flex-direction: column; gap: 6px; }

.drawer a, .drawer button.nav-btn {
  width: 100%;
  text-align: left;
  padding: 12px 10px;
}

.hero {
  padding: 28px 0 48px;
  display: grid;
  gap: 24px;
  align-content: start;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  max-width: 22ch;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 1.6px;
  line-height: 0.95;
}

.nowrap { white-space: nowrap; }

.page-home .photo-band.is-hero {
  min-height: 82dvh;
  place-content: center;
  justify-items: center;
  text-align: center;
}
.page-home .photo-band.is-hero .hero {
  justify-items: center;
  justify-self: center;
  text-align: center;
  width: min(var(--max), calc(100% - 48px));
}
.page-home .hero-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
}
.page-home .hero-copy h1 {
  max-width: none;
  width: 100%;
  text-align: center;
}
.page-home .hero-copy .lede {
  margin-inline: auto;
  text-align: center;
}
.page-home .hero-cta {
  justify-content: center;
}

.lede {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 400;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pill {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--muted);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.noc {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.noc-head, .noc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.status {
  color: var(--ok);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric span { color: var(--muted); font-size: 12px; letter-spacing: 0.96px; text-transform: uppercase; }

.loc-picker { margin-bottom: 28px; }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.loc-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 0;
  color: #fff;
  padding: 14px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  font: inherit;
}
.loc-card > *:not(.photo-fill) { position: relative; z-index: 1; }
.loc-card b {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
}
.loc-city {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  margin-top: 4px;
}
.loc-stock {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #fff;
}
.loc-card.is-out .photo-fill::after { background: rgba(0, 0, 0, 0.74); }
.loc-card.is-out .loc-stock { opacity: 0.72; }
.loc-card.is-on .photo-fill::after { background: rgba(0, 0, 0, 0.4); }
.loc-empty {
  border: 1px solid var(--line);
  padding: 28px 22px;
}
.loc-empty h3 { margin-bottom: 8px; }
.loc-empty p { color: var(--muted); max-width: 52ch; }
.loc-empty .btn { margin-top: 18px; }

.pops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pop {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px;
  background: var(--surface-2);
}

.pop.has-photo {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border: 0;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 16px;
  cursor: pointer;
}
.pop.has-photo > *:not(.photo-fill) { position: relative; z-index: 1; }
.pop.has-photo b { color: #fff; }
.pop.has-photo span { color: rgba(255, 255, 255, 0.86); }
.pop.has-photo .photo-fill::after {
  background: rgba(0, 0, 0, 0.14);
}
.place-meta {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  right: auto;
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
  padding: 8px 10px;
  max-width: calc(100% - 24px);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.pop.has-photo .place-meta {
  display: grid;
  justify-items: start;
  gap: 4px;
}
.pop.has-photo .place-meta b,
.loc-card .place-meta b {
  font-size: 16px;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  justify-content: flex-start;
  color: #fff;
  transition: font-size 0.3s var(--ease);
}
.pop.has-photo .place-meta span,
.loc-card .place-meta span {
  justify-content: flex-start;
  font-size: 13px;
  color: #fff;
  transition: font-size 0.3s var(--ease);
}
.pop.has-photo .place-meta .flag,
.loc-card .place-meta .flag {
  width: 18px;
  height: 18px;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.pop.has-photo:is(:hover, :focus, :focus-visible) .place-meta b,
.loc-card:is(:hover, :focus-visible, .is-on) .place-meta b {
  font-size: 20px;
}
.pop.has-photo:is(:hover, :focus, :focus-visible) .place-meta span,
.loc-card:is(:hover, :focus-visible, .is-on) .place-meta span {
  font-size: 14px;
}
.pop.has-photo:is(:hover, :focus, :focus-visible) .place-meta .flag,
.loc-card:is(:hover, :focus-visible, .is-on) .place-meta .flag {
  width: 22px;
  height: 22px;
}
.photo-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.photo-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  transition: background 0.4s var(--ease);
}
.bg-spo { background-image: url("../img/sao-paulo.jpg"); }
.bg-ftz { background-image: url("../img/fortaleza.jpg"); }
.bg-scl { background-image: url("../img/santiago.jpg"); }
.bg-mia { background-image: url("../img/miami.webp"); }

.pop b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.pop span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

img.flag {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: -0.2em;
}

.chart {
  height: 92px;
  border-radius: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.chart svg { width: 100%; height: 100%; display: block; }

.section { padding: 72px 0; }
.section-sm { padding: 36px 0 72px; }

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 62ch;
}

.section-head h2 { font-size: clamp(36px, 5vw, 56px); }
.section-head p { color: var(--ink-soft); }

.grid-3, .grid-2, .grid-4, .grid-6 { display: grid; gap: 14px; }

.card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 0 8px;
  text-decoration: none;
  display: grid;
  gap: 10px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.card:hover { transform: none; border-color: var(--ink); }

.ico {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
}

.card h3 { font-size: 22px; }
.card p, .muted { color: var(--muted); }

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.list i { color: var(--ok); margin-top: 2px; }

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.price {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.05em;
}

.price small { font-size: 16px; color: var(--muted); font-family: var(--font-sans); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 0;
  background: var(--ok-bg);
  color: var(--ok);
}

.featured { border-top: 2px solid var(--ink); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 0; background: var(--surface); }

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

th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: middle;
}

td .btn { padding: 8px 12px; font-size: 13px; }

th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

table.plans td:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  font-family: var(--font-display);
}
table.plans td .muted {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.32px;
  text-transform: none;
}

tr:last-child td { border-bottom: 0; }

.faq { display: grid; gap: 8px; }

.faq-item { border: 1px solid var(--line); border-radius: 0; background: var(--surface); overflow: hidden; }

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq-panel.is-open { grid-template-rows: 1fr; }

.faq-panel > div { overflow: hidden; }

.faq-panel p { padding: 0 18px 16px; color: var(--ink-soft); }

.cta-band {
  background: var(--ink);
  color: var(--bg);
  border: 0;
  box-shadow: none;
  border-radius: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 56px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  gap: 20px;
}

.cta-band .muted { color: color-mix(in srgb, var(--bg) 70%, transparent); }

.cta-band .btn {
  border-color: var(--bg);
  color: var(--bg);
}

.cta-band .btn:hover {
  background: var(--bg);
  color: var(--ink);
}

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px 0 8px;
}

.partners img {
  height: 26px;
  width: auto;
  margin-inline: auto;
  filter: var(--brand-filter);
}
.partners img.is-light {
  filter: var(--brand-filter-light);
}
.partners img.is-decix {
  height: 52px;
}

.hero { overflow: hidden; }
.hero-mesh { display: none; }

.photo-band.is-hero {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 0 0 56px;
}
.photo-band.is-hero .hero { min-height: 0; padding: 0; }

.photo-band.is-ddos { padding: 72px 0; }

.form { display: grid; gap: 14px; }

.stat-xl b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  line-height: 0.9;
  letter-spacing: 1.6px;
  font-weight: 700;
}
.stat-xl em {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-xl span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-top: 4px;
}

.cap-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cap-strip > div { padding: 32px 0; }
.cap-strip > div + div { border-top: 1px solid var(--line); }

.svc-list { border-top: 1px solid var(--line); }
.svc-list a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.svc-list a strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.svc-list a span { color: var(--muted); max-width: 62ch; }

.floods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}
.floods h3 { font-size: 16px; margin-bottom: 10px; }
.floods ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.floods li { margin: 6px 0; }

.photo-band {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.photo-band .wrap { position: relative; z-index: 1; }
.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
}
.photo-band.is-hero::before { background-image: url("../img/hero-dark.jpg"); }
.photo-band.is-ddos::before { background-image: url("../img/ddos-dark.jpg"); }
.photo-band.is-servers::before { background-image: url("../img/servers.jpg"); }
.photo-band.is-city::before { background-image: url("../img/city.jpg"); }
.photo-band.is-sao-paulo::before { background-image: url("../img/sao-paulo.jpg"); }
.photo-band.is-fortaleza::before { background-image: url("../img/fortaleza.jpg"); }
.photo-band.is-santiago::before { background-image: url("../img/santiago.jpg"); }
.photo-band.is-miami::before { background-image: url("../img/miami.webp"); }
.photo-band h1, .photo-band h2, .photo-band .lede, .photo-band p, .photo-band .eyebrow { color: #fff; }
.photo-band .btn {
  border-color: #fff;
  color: #fff;
}
.photo-band .btn:hover {
  background: #f0f0fa;
  color: #000;
  border-color: #f0f0fa;
}
.photo-band .muted { color: #f0f0fa; }
.photo-band .page-hero {
  padding: 40px 0 56px;
  min-height: 0;
  align-content: start;
}

[data-theme="light"] .photo-band {
  background: #fff;
  color: var(--ink);
}
[data-theme="light"] .photo-band::before {
  filter: grayscale(1) brightness(1.55) contrast(0.88);
  opacity: 0.18;
}
[data-theme="light"] .photo-band::after {
  background: rgba(255, 255, 255, 0.78);
}
[data-theme="light"] .photo-band h1,
[data-theme="light"] .photo-band h2 {
  color: var(--ink);
}
[data-theme="light"] .photo-band .lede,
[data-theme="light"] .photo-band p,
[data-theme="light"] .photo-band .eyebrow,
[data-theme="light"] .photo-band .muted {
  color: var(--ink-soft);
}
[data-theme="light"] .photo-band .btn {
  border-color: var(--ink);
  color: var(--ink);
}
[data-theme="light"] .photo-band .btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

[data-theme="light"] .page-home .photo-band.is-hero {
  background: #fff;
  min-height: 82dvh;
  place-content: center;
  justify-items: center;
}
[data-theme="light"] .page-home .photo-band.is-hero::before {
  filter: none;
  opacity: 1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  background-repeat: repeat;
}
[data-theme="light"] .page-home .photo-band.is-hero::after {
  background: linear-gradient(to bottom, transparent 35%, #fff 100%);
}
[data-theme="light"] .page-home .photo-band.is-ddos {
  background: #000;
  color: #fff;
}
[data-theme="light"] .page-home .photo-band.is-ddos::before {
  filter: none;
  opacity: 1;
}
[data-theme="light"] .page-home .photo-band.is-ddos::after {
  background: rgba(0, 0, 0, 0.55);
}
[data-theme="light"] .page-home .photo-band.is-ddos h2,
[data-theme="light"] .page-home .photo-band.is-ddos .lede,
[data-theme="light"] .page-home .photo-band.is-ddos p {
  color: #fff;
}
[data-theme="light"] .page-home .photo-band.is-ddos .btn {
  border-color: #fff;
  color: #fff;
}
[data-theme="light"] .page-home .photo-band.is-ddos .btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
[data-theme="light"] .page-home .partners {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
[data-theme="light"] .page-home .partners img {
  filter: grayscale(1);
  opacity: 0.72;
}
[data-theme="light"] .page-home .partners img.is-light {
  filter: grayscale(1) invert(1);
}

[data-theme="light"] .loc-card {
  background: var(--surface-2);
  border: 0;
  box-shadow: none;
}
[data-theme="light"] .loc-card .photo-fill {
  filter: none;
  opacity: 1;
}
[data-theme="light"] .loc-card .photo-fill::after {
  background: rgba(0, 0, 0, 0.28);
}
[data-theme="light"] .loc-card.is-out .photo-fill {
  opacity: 1;
  filter: grayscale(0.35) brightness(0.92);
}
[data-theme="light"] .loc-card.is-out .photo-fill::after {
  background: rgba(0, 0, 0, 0.42);
}
[data-theme="light"] .loc-card b,
[data-theme="light"] .loc-stock {
  color: #fff;
}
[data-theme="light"] .loc-city {
  color: rgba(255, 255, 255, 0.86);
}
[data-theme="light"] .loc-card.is-on .photo-fill {
  opacity: 1;
}
[data-theme="light"] .loc-card.is-on .photo-fill::after {
  background: rgba(0, 0, 0, 0.28);
}
[data-theme="light"] .pop.has-photo .photo-fill {
  filter: none;
  opacity: 1;
}
[data-theme="light"] .pop.has-photo .photo-fill::after {
  background: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .pop.has-photo b {
  color: #fff;
}
[data-theme="light"] .pop.has-photo span {
  color: rgba(255, 255, 255, 0.86);
}
.hash-band {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hash-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hash-band .wrap { position: relative; z-index: 1; }
.hash-band .page-hero {
  padding: 40px 0 56px;
  min-height: 52dvh;
}
.price-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 16px 0 18px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav);
  z-index: 6;
  background: var(--bg);
}
.price-jump a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  color: var(--muted);
}
.price-jump a:hover { color: var(--ink); }
.price-block {
  scroll-margin-top: calc(var(--nav) + 56px);
  padding-bottom: 56px;
}
.price-block + .price-block {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.price-block .section-head { margin-bottom: 22px; }
.price-block .muted a { color: inherit; }
.price-block .muted a:hover { color: var(--ink); }
main > .hash-band:first-child {
  padding-top: var(--nav);
}
main > .hash-band:first-child .page-hero {
  padding-top: 36px;
}
main > .photo-band:first-child {
  padding-top: var(--nav);
}
main > .photo-band:first-child .hero,
main > .photo-band:first-child .page-hero {
  padding-top: 36px;
}

.compare td { vertical-align: top; }
.compare td:first-child { font-weight: 700; text-transform: uppercase; letter-spacing: 0.96px; font-family: var(--font-display); }

label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--glow);
}

.note {
  padding: 14px 16px;
  border-radius: 0;
  background: var(--ok-bg);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  margin-top: 20px;
}

.foot-grid { display: grid; gap: 28px; }

.foot-grid h4 { font-size: 14px; margin-bottom: 10px; }

.foot-grid a { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--muted); padding: 4px 0; font-size: 14.5px; }
.foot-grid a:hover { color: var(--ink); }

.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display: grid; gap: 6px; }
.legal a { color: inherit; text-decoration: none; }
.legal a:hover { color: var(--ink); }

.contact-links { display: grid; gap: 8px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.contact-links a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible, .icon-btn:focus-visible { outline-offset: 2px; }

.page-hero { padding: 48px 0 32px; min-height: 52dvh; display: grid; align-content: end; }
.page-hero h1 { font-size: clamp(40px, 6.5vw, 72px); margin: 14px 0 16px; font-weight: 700; max-width: 22ch; letter-spacing: 1.6px; }
.page-hero p { color: var(--ink-soft); max-width: 58ch; font-size: 16px; line-height: 1.7; letter-spacing: 0.32px; }

.spec { display: grid; gap: 6px; font-size: 14.5px; }
.spec b { font-family: var(--font-sans); font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: 0.96px; text-transform: uppercase; }

.link-row { display: flex; flex-wrap: wrap; gap: 10px; }

.map {
  min-height: 280px;
  position: relative;
  background: var(--surface-2);
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--accent); }

.node {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 10px;
  font-size: 12px;
  box-shadow: var(--shadow);
}

.node b {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  letter-spacing: 1.17px;
}

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .nav-actions > .btn { display: inline-flex; }
  .hero { align-items: start; padding: 40px 0 56px; }
  .page-home .hero { align-items: center; justify-items: center; }
  .photo-band.is-hero { padding-bottom: 72px; }
  .loc-grid { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .cta-band { grid-template-columns: 1.4fr auto; align-items: center; }
  .form-layout { grid-template-columns: 1fr 0.85fr; }
  .drawer { display: none !important; }
  .backdrop { display: none !important; }
  .cap-strip { grid-template-columns: 1fr 1fr; }
  .cap-strip > div + div { border-top: 0; border-left: 1px solid var(--line); padding-left: 32px; }
  .cap-strip > div:first-child { padding-right: 32px; }
  .svc-list a { grid-template-columns: 0.7fr 1.3fr; align-items: baseline; gap: 24px; }
  .floods { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
  .partners { grid-template-columns: repeat(7, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
