:root {
  --ink: #0a1628;
  --navy: #102f55;
  --blue: #1e5d90;
  --green: #2f9d75;
  --gold: #c7a14a;
  --paper: #f5f7f6;
  --mist: #e7edf0;
  --line: #d3dde3;
  --white: #ffffff;
  --muted: #617184;
  --shadow: 0 20px 44px rgba(10, 22, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px;
  background: rgba(10, 22, 40, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 150px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: #b7e1d3;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: transparent;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: calc(100svh - 140px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 15, 30, 0.88) 0%, rgba(6, 15, 30, 0.72) 42%, rgba(6, 15, 30, 0.28) 100%),
    url("assets/datacenter-hero.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #268361;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
}

.button.dataroom-button {
  border-color: rgba(199, 161, 74, 0.42);
  background: rgba(199, 161, 74, 0.16);
  color: #ffe6a8;
}

.button.dataroom-button:hover,
.button.dataroom-button:focus-visible {
  border-color: rgba(255, 230, 168, 0.82);
  background: rgba(199, 161, 74, 0.26);
}

.signal-bar {
  width: min(1120px, calc(100% - 48px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.signal-item {
  min-height: 104px;
  padding: 24px;
  background: var(--white);
}

.signal-item span,
.metric-card span,
.news-card time {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.dataroom-callout {
  width: min(1120px, calc(100% - 48px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(47, 157, 117, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 47, 85, 0.96), rgba(10, 22, 40, 0.96)),
    url("assets/datacenter-hero.jpg") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.dataroom-callout h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.dataroom-callout p:not(.section-label) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.dataroom-callout .button {
  min-width: 190px;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
}

.section p {
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.media-panel {
  margin: 0;
}

.media-panel img,
.dashboard-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.thesis-section {
  width: 100%;
  max-width: none;
  background: var(--white);
}

.thesis-section > * {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.metric-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  min-height: 292px;
  padding: 28px;
}

.feature-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e4f3ee;
  color: var(--green);
  font-weight: 800;
}

.feature-card h3,
.evidence-copy h3,
.journey-list h3,
.news-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.feature-card p,
.news-card p,
.journey-list p {
  margin: 0;
  color: #425267;
  font-size: 15px;
}

.brasil-section {
  padding-bottom: 72px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card {
  min-height: 150px;
  padding: 24px;
  background: #fdfefe;
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 31px;
  line-height: 1.1;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-top: 42px;
}

.dashboard-frame {
  margin: 0;
}

.dashboard-frame img {
  aspect-ratio: 16 / 9;
}

.evidence-copy {
  padding: 8px 0;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.leadership-section {
  padding-top: 86px;
}

.leadership-group + .leadership-group {
  margin-top: 52px;
}

.leadership-group h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.person-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.person-card img {
  width: min(calc(100% - 44px), 220px);
  aspect-ratio: 4 / 5;
  align-self: center;
  margin-top: 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.person-body {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.person-body span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.person-body h4 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.22;
}

.person-caption,
.person-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.person-caption {
  color: #24364b;
  font-weight: 700;
}

.person-description {
  color: #425267;
}

.person-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.person-link:empty {
  display: none;
}

.journey-section {
  padding-top: 80px;
}

.journey-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

.journey-list li {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.journey-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.updates-section {
  width: 100%;
  max-width: none;
  background: #eef3f4;
}

.updates-section > * {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  min-height: 270px;
  padding: 26px;
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 56px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
}

.contact-copy p {
  font-size: 17px;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list address {
  color: #24364b;
  font-style: normal;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd6dd;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 157, 117, 0.18);
  border-color: var(--green);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-note.is-success {
  color: #186c4e;
}

.form-note.is-error {
  color: #a3372a;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 48px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #b7e1d3;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 100px;
}

.legal-shell h1 {
  color: var(--navy);
  font-size: 44px;
}

.legal-shell p,
.legal-shell li {
  color: #34465c;
  font-size: 17px;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(10, 22, 40, 0.98);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .split-section,
  .evidence-layout,
  .dataroom-callout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .dataroom-callout .button {
    width: 100%;
  }

  .signal-bar,
  .dataroom-callout,
  .thesis-grid,
  .metric-grid,
  .people-grid,
  .journey-list,
  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2,
  .contact-copy h2 {
    font-size: 35px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .brand {
    width: 158px;
  }

  .site-nav {
    inset: 70px 0 auto 0;
  }

  .hero {
    min-height: calc(100svh - 130px);
  }

  .hero-inner {
    width: calc(100% - 36px);
    max-width: 360px;
    padding: 52px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-bar,
  .thesis-grid,
  .metric-grid,
  .people-grid,
  .journey-list,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .signal-bar,
  .dataroom-callout,
  .section,
  .thesis-section > *,
  .updates-section > *,
  .contact-section,
  .legal-shell {
    width: calc(100% - 36px);
    max-width: 1120px;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .section h2,
  .contact-copy h2,
  .legal-shell h1 {
    font-size: 30px;
  }

  .feature-card,
  .metric-card,
  .journey-list li,
  .news-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
