:root {
  --db-coral: #e85c2a;
  --db-coral-dark: #bd3f18;
  --db-coral-soft: #fff0ea;
  --db-ink: #111827;
  --db-ink-soft: #243042;
  --db-muted: #64748b;
  --db-bg: #f7f5f1;
  --db-card: #ffffff;
  --db-border: #e7e2dc;
  --db-dark: #111827;
  --db-dark-2: #1b2433;
  --db-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --db-shadow-soft: 0 16px 45px rgba(17, 24, 39, 0.08);
  --db-radius: 28px;
  --db-shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--db-ink);
  background: var(--db-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
textarea,
input {
  font: inherit;
}

html[data-lang="pt"] body [data-lang="en"],
html[data-lang="en"] body [data-lang="pt"] {
  display: none;
}

html[data-lang="pt"] body [data-lang="en"],
html[data-lang="en"] body [data-lang="pt"] {
  display: none !important;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(231, 226, 220, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand__name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--db-ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--db-coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.nav-toggle {
  border: 1px solid var(--db-border);
  background: #fff;
  color: var(--db-ink);
  cursor: pointer;
}

.language-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--db-ink);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--db-coral);
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 92, 42, 0.28);
}

.btn--primary:hover {
  background: var(--db-coral-dark);
}

.btn--secondary {
  border-color: rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--db-ink);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.btn--on-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 72px;
  background: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 28%, rgba(232, 92, 42, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.56) 100%),
    linear-gradient(180deg, rgba(247, 245, 241, 0.08), var(--db-bg));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  align-items: center;
  gap: 64px;
}

.hero__copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--db-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--db-ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero__lead {
  max-width: 660px;
  color: var(--db-ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.hero__actions--center {
  justify-content: center;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(232, 92, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--db-ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--db-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--db-shadow);
  backdrop-filter: blur(16px);
}

.hero-card__mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 34px;
}

.hero-card__label {
  margin-bottom: 10px;
  color: var(--db-coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 26px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-card__grid span {
  padding: 14px 12px;
  border: 1px solid var(--db-border);
  border-radius: 16px;
  background: #fff;
  color: var(--db-muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 104px 0;
  background: var(--db-bg);
}

.section--white {
  background: #fff;
}

.section--dark,
.section--labs-preview {
  background: var(--db-dark);
  color: #fff;
}

.section--split {
  background: linear-gradient(180deg, #fff 0%, var(--db-bg) 100%);
}

.section-heading {
  max-width: 690px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--sticky {
  position: sticky;
  top: 120px;
}

.section-heading h2,
.cta-panel h2,
.labs-preview h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p,
.cta-panel p,
.labs-preview p,
.ecosystem p {
  color: var(--db-muted);
  font-size: 18px;
  line-height: 1.65;
}

.section--dark .section-heading p,
.section--labs-preview p {
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 40px;
  padding: 34px;
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  background: #fff;
  box-shadow: var(--db-shadow-soft);
}

.ecosystem__logo {
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  padding: 24px;
  border-radius: 26px;
  background: var(--db-bg);
}

.ecosystem h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.solutions-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-card,
.sector-card,
.step-card,
.lab-card,
.snapshot-card {
  border: 1px solid var(--db-border);
  border-radius: 24px;
  background: var(--db-card);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.sector-card:hover,
.lab-card:hover,
.snapshot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 92, 42, 0.26);
  box-shadow: var(--db-shadow-soft);
}

.feature-card {
  min-height: 230px;
  padding: 30px;
}

.feature-card__icon {
  display: inline-grid;
  min-width: 48px;
  height: 34px;
  place-items: center;
  margin-bottom: 44px;
  padding-inline: 11px;
  border-radius: 999px;
  background: var(--db-coral-soft);
  color: var(--db-coral-dark);
  font-size: 11px;
  font-weight: 950;
}

.feature-card h3,
.sector-card strong,
.step-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--db-ink);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.feature-card p,
.sector-card p,
.step-card p {
  color: var(--db-muted);
  line-height: 1.6;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
}

.split-layout--middle {
  align-items: center;
}

.section-image {
  width: 100%;
  margin-top: 38px;
  border-radius: 26px;
  box-shadow: var(--db-shadow-soft);
}

.section-image--dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.timeline {
  display: grid;
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 26px 28px 26px 96px;
  overflow: hidden;
}

.step-card > span:first-child {
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(232, 92, 42, 0.22);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.step-card > p:first-of-type {
  margin-bottom: 9px;
  color: var(--db-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-card--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--db-dark);
}

.step-card--dark h3,
.step-card--dark > span:first-child {
  color: #fff;
}

.sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-card {
  padding: 26px;
}

.sector-card::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--db-coral);
  content: "";
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.assurance-grid > span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
}

.labs-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.section--cta {
  background: #fff;
}

.cta-panel {
  max-width: 860px;
  padding: 64px;
  border: 1px solid var(--db-border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(232, 92, 42, 0.08), transparent 42%),
    #fff;
  text-align: center;
  box-shadow: var(--db-shadow-soft);
}

.site-footer {
  padding: 58px 0 40px;
  border-top: 1px solid var(--db-border);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--db-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--db-ink-soft);
  line-height: 1.75;
}

.footer-copy {
  width: min(var(--db-shell), calc(100% - 48px));
  margin: 34px auto 0;
  color: var(--db-muted);
  font-size: 13px;
}

.labs-hero {
  min-height: 680px;
  background:
    radial-gradient(circle at 78% 20%, rgba(232, 92, 42, 0.28), transparent 30%),
    linear-gradient(135deg, #111827 0%, #182131 58%, #261610 100%);
  color: #fff;
}

.labs-hero .hero__media::after {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.74));
}

.labs-hero h1,
.labs-hero .hero__lead {
  color: #fff;
}

.lab-grid,
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.lab-card,
.snapshot-card {
  padding: 26px;
}

.lab-card h3,
.snapshot-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lab-card p,
.snapshot-card p {
  color: var(--db-muted);
  line-height: 1.6;
}

.snapshot-card .status {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--db-coral-soft);
  color: var(--db-coral-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

  .brand__name {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--db-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--db-shadow-soft);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .header-actions {
    justify-content: end;
  }

  .header-actions .btn {
    display: none;
  }

  .hero__content,
  .split-layout,
  .labs-preview {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .section-heading--sticky {
    position: static;
  }

  .sector-grid,
  .lab-grid,
  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, var(--db-shell));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 10px;
  }

  .brand__logo,
  .language-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 52px;
  }

  .hero__content {
    gap: 30px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .proof-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-strip span,
  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .cta-panel h2,
  .labs-preview h2 {
    font-size: 34px;
  }

  .section-heading p,
  .cta-panel p,
  .labs-preview p,
  .ecosystem p {
    font-size: 16px;
  }

  .ecosystem,
  .solutions-grid,
  .sector-grid,
  .lab-grid,
  .snapshot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem {
    padding: 24px;
  }

  .ecosystem__logo {
    width: 112px;
    height: 112px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card__icon {
    margin-bottom: 28px;
  }

  .step-card {
    padding: 24px;
  }

  .step-card > span:first-child {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

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

  .cta-panel {
    padding: 36px 22px;
    border-radius: 28px;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}
