@font-face {
  font-family: "Roboto";
  src: url("/landing-assets/fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/landing-assets/fonts/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --app-font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #071917;
  --deep: #053d46;
  --teal: #025e73;
  --aqua: #0a7c7d;
  --mint: #d7f6e7;
  --paper: #fffaf2;
  --white: #ffffff;
  --cloud: #f2f8f9;
  --line: #d8e5e7;
  --muted: #5e6d72;
  --orange: #ff7a35;
  --coral: #ef4e5d;
  --yellow: #ffc857;
  --shadow: 0 24px 60px rgba(3, 53, 62, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--app-font-family);
  line-height: 1.5;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

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

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

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

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 229, 231, 0.78);
  backdrop-filter: blur(16px);
}

.site-nav {
  width: min(100% - 40px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark,
.footer-brand img {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name,
.footer-brand span {
  font-size: 1.12rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #24393f;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: var(--cloud);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  color: #24393f;
  font-size: 0.88rem;
  font-weight: 900;
}

.language-switcher select {
  min-height: 42px;
  min-width: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 32px 0 12px;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding-bottom: 56px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 27, 32, 0.88) 0%, rgba(0, 27, 32, 0.74) 46%, rgba(0, 27, 32, 0.58) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  border-radius: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  width: min(100% - 40px, var(--container));
  min-height: 690px;
  margin: 0 auto;
  padding: 104px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 5.6rem;
  line-height: 0.95;
  letter-spacing: 0;
  margin-top: -50px;

}

.hero-lede {
  max-width: 860px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.32rem;
  display: grid;
  gap: 22px;
}

.hero-question,
.hero-answer {
  display: block;
}

.hero-answer {
  margin-top: 0;
  text-align: justify;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 45px;
}

.store-button,
.primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.store-button {
  min-width: 178px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.store-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-button .google-play-icon {
  fill: none;
}

.store-button span {
  display: grid;
  gap: 0;
  line-height: 1.05;
  text-align: left;
}

.store-button small {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.8;
}

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

.store-button-light {
  background: var(--white);
  color: var(--ink);
}

.primary-button {
  min-width: 148px;
  padding: 0 20px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.secondary-button {
  min-width: 148px;
  padding: 0 20px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.store-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 25, 23, 0.16);
}

.signal-strip {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-signal-strip {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  margin: -28px auto 0;
  transform: none;
}

.solution-signal-strip {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

.signal-item {
  min-width: 0;
  min-height: 176px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(3, 53, 62, 0.12);
  color: var(--ink);
  text-align: left;
  overflow-wrap: break-word;
}

.signal-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 122, 53, 0.14);
  color: var(--deep);
}

.signal-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.18;
}

.signal-item p {
  grid-column: 2;
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 96px 0;
}

.section-light {
  width: 100%;
  max-width: none;
  padding: 104px max(40px, calc((100% - var(--container)) / 2));
  background: var(--deep);
  color: var(--white);
}

.section-copy {
  max-width: 780px;
}

.section-copy h2,
.solution-copy h2,
.ecosystem-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.solution-copy p,
.ecosystem-head > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-light .section-copy h2 {
  color: var(--white);
}

.section-light .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.persona-tabs {
  margin-top: 42px;
}

.tab-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-light .tab-controls {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
  border: 1px solid #eeeeee4a !important;
}

.section-light .tab-button {
  width: 100%;
  color: rgba(255, 255, 255, 0.84);
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.section-light .tab-button.is-active {
  background: var(--white);
  color: var(--ink);
}

.tab-panels {
  margin-top: 22px;
}

.persona-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid #f0dcbf;
  border-radius: 8px;
}

.persona-panel h3 {
  max-width: 760px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
  color: black !important;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  min-height: 68px;
  padding: 16px 16px 16px 44px;
  background: var(--white);
  border: 1px solid rgba(255, 122, 53, 0.22);
  border-radius: 8px;
  color: #31464b;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 0, 38% 64%);
}

.persona-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.persona-download-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 2px solid #590909;
  border-radius: 8px;
  background: #ffffff;
  color: black;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.persona-download-badge {
  min-width: 38px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(5, 32, 29, 0.12);
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.persona-download-label {
  display: inline-flex;
  align-items: center;
}

.persona-download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 53, 0.24);
}

.admin-panel-button {
  min-width: 220px;
  gap: 10px;
  border: 2px solid #590909;
  background: #ffffff;
  color: black;
}

.admin-panel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.buyer-access {
  margin-top: 26px;
}

.buyer-access p {
  margin: 0 0 14px;
  color: #31464b;
  font-weight: 900;
}

.buyer-access-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.buyer-access-row .store-button {
  border-color: rgba(7, 25, 23, 0.12);
  box-shadow: 0 12px 24px rgba(3, 53, 62, 0.1);
}

.web-access-button {
  min-width: 230px;
  gap: 10px;
  border: 2px solid #590909;
  border-radius: 8px;
  background: #ffffff;
  color: black;
}

.web-access-label {
  white-space: nowrap;
}

.web-access-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.web-access-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-solution,
.section-ecosystem {
  width: 100%;
  max-width: none;
  min-height: 650px;
  padding: 84px max(40px, calc((100% - var(--container)) / 2));
}

.section-solution {
  background:
    linear-gradient(90deg, rgb(232, 244, 242) 0%, rgba(241, 246, 247, 0.94) 48%, rgba(242, 248, 249, 0.76) 100%),
    url("/landing-assets/contrato.jpg") right max(34px, calc((100% - var(--container)) / 2)) top 100px / min(50vw, 600px) auto no-repeat,
    var(--cloud);
}

.solution-copy {
  max-width: 980px;
}

.solution-copy h2,
.ecosystem-head h2 {
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  line-height: 1.03;
}

.solution-flow {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(88px, 1fr) minmax(220px, 260px) minmax(88px, 1fr) minmax(170px, 230px);
  align-items: center;
  margin-top: 46px;
}

.solution-card {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(3, 53, 62, 0.08);
  text-align: center;
}

.solution-card h3 {
  margin: 0;
  color: #07183a;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-card p {
  margin: 0;
  color: #425b77;
  font-size: 0.88rem;
}

.solution-core {
  min-height: 106px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.solution-core h3 {
  color: var(--white);
}

.solution-core p {
  color: rgba(255, 255, 255, 0.86);
}

.solution-arrow {
  position: relative;
  height: 2px;
  background: #009f9a;
}

.solution-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #009f9a;
  transform: translateY(-50%);
}

.solution-note {
  margin: 42px 0 0;
  color: #53658a;
  font-style: italic;
  text-align: center;
}

.solution-network {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.solution-node {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #06183a;
  text-align: center;
}

.solution-node span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #009f9a;
  border-radius: 50%;
}

.solution-node svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-node strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.solution-callout {
  margin: 34px 0 0;
  padding: 18px 24px;
  background: #dff8f4;
  color: #00927f;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

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

.ecosystem-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 54px;
  align-items: end;
}

.ecosystem-head > p {
  max-width: 500px;
  margin-bottom: 8px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.ecosystem-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 53, 62, 0.08);
}

.ecosystem-card:nth-child(1),
.ecosystem-card:nth-child(2),
.ecosystem-card:nth-child(3) {
  background: var(--paper);
}

.ecosystem-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.18;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
}

.ecosystem-card-wide {
  grid-column: span 2;
}

.site-footer {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 36px 0 46px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 440px;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 4.6rem;
  }

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

  .solution-flow {
    grid-template-columns: minmax(150px, 200px) minmax(46px, 1fr) minmax(210px, 240px) minmax(46px, 1fr) minmax(150px, 200px);
  }

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

}

@media (max-width: 820px) {
  .site-nav {
    position: relative;
    width: min(100% - 28px, var(--container));
    min-height: 68px;
    justify-content: flex-start;
    gap: 8px;
  }

  .brand {
    order: 1;
  }

  .language-switcher {
    position: static;
    order: 3;
    margin-left: 0;
    z-index: 72;
  }

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

  .language-switcher select {
    min-width: 92px;
  }

  .nav-toggle {
    position: static;
    order: 2;
    z-index: 70;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-left: 8px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(3, 53, 62, 0.14);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-inner {
    width: min(100% - 28px, var(--container));
    min-height: auto;
    padding: 82px 0 30px;
  }

  .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-lede {
    max-width: 360px;
    font-size: 1.08rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    align-items: stretch;
  }

  .store-button,
  .primary-button,
  .secondary-button,
  .persona-download-button {
    width: 100%;
  }

  .signal-strip.hero-signal-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin: -12px auto 28px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-item {
    min-height: auto;
    padding: 20px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .section-solution,
  .section-ecosystem {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .section-light {
    width: 100%;
    padding-right: max(28px, calc((100% - var(--container)) / 2));
    padding-left: max(28px, calc((100% - var(--container)) / 2));
  }

  .section-solution {
    background:
      linear-gradient(180deg, rgba(242, 248, 249, 0.9) 0%, rgba(242, 248, 249, 0.98) 280px, rgba(242, 248, 249, 1) 100%),
      url("/landing-assets/contrato.jpg") center 26px / min(88vw, 420px) auto no-repeat,
      var(--cloud);
  }

  .section-copy h2,
  .solution-copy h2,
  .ecosystem-head h2 {
    font-size: 2.25rem;
  }

  .persona-panel {
    padding: 22px;
  }

  .persona-panel h3 {
    font-size: 1.55rem;
  }

  .solution-flow {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 36px;
  }

  .solution-card {
    width: min(100%, 360px);
  }

  .solution-arrow {
    width: 2px;
    height: 42px;
  }

  .solution-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -6px;
    border-top: 10px solid #009f9a;
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
    transform: translateX(-50%);
  }

  .solution-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-head,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card-wide {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    transform: none;
    margin-top: 0;
  }

  .signal-strip.hero-signal-strip {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .signal-item {
    grid-template-columns: auto 1fr;
  }

  .signal-item p {
    grid-column: 1 / -1;
  }

  .tab-controls {
    width: 100%;
    display: grid;
  }

  .section-light .tab-controls {
    grid-template-columns: 1fr;
  }

  .tab-button {
    width: 100%;
  }

  .solution-network,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card,
  .signal-item {
    min-height: auto;
  }
}
