:root {
  --ink: #0b1714;
  --ink-soft: #40514c;
  --paper: #f5f6f1;
  --paper-strong: #ffffff;
  --paper-tint: #e8eee9;
  --green-950: #041a14;
  --green-900: #06261e;
  --green-800: #0a4033;
  --green-700: #096c55;
  --green-600: #0d8a6a;
  --green-500: #16b982;
  --green-300: #8fe4c1;
  --green-100: #ddf5ea;
  --line: rgba(10, 42, 33, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 90px rgba(6, 32, 24, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --font: "Segoe UI Variable", "Aptos", "Inter", "Segoe UI", sans-serif;
  --display: "Segoe UI Variable Display", "Aptos Display", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.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 {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 249, 245, 0.92);
  box-shadow: 0 10px 35px rgba(4, 26, 20, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(1, 54, 33, 0.22);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--green-700);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a,
.text-link {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  color: #31413c;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg,
.inline-link svg,
.mobile-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: #fff;
  background: var(--green-950);
  box-shadow: 0 10px 28px rgba(5, 28, 21, 0.16);
}

.button-dark:hover {
  background: var(--green-800);
}

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

.button-primary {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 18px 45px rgba(9, 108, 85, 0.24);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 22px 50px rgba(9, 108, 85, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover {
  border-color: rgba(9, 108, 85, 0.36);
  background: #fff;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.play-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 40px;
  background:
    linear-gradient(90deg, rgba(245, 246, 241, 0.98) 0%, rgba(245, 246, 241, 0.91) 48%, rgba(232, 242, 235, 0.88) 100%),
    radial-gradient(circle at 82% 16%, #b8f0d0 0, transparent 35%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -180px;
  top: -240px;
  border: 1px solid rgba(9, 108, 85, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(9, 108, 85, 0.025), 0 0 0 190px rgba(9, 108, 85, 0.02);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  left: 44%;
  bottom: 4%;
  border-radius: 50%;
  background: rgba(66, 215, 154, 0.14);
  filter: blur(100px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.89fr) minmax(620px, 1.11fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding: 32px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--green-700);
}

.eyebrow-light {
  color: var(--green-300);
}

.hero h1,
.section-intro h2,
.platform-heading h2,
.autonomy-copy h2,
.fit-copy h2,
.faq-heading h2,
.cta-text h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 760;
  letter-spacing: -0.057em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--green-700);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
}

.hero-proof svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof span {
  color: #5e6d68;
  font-size: 12px;
  line-height: 1.35;
}

.hero-proof strong {
  color: var(--ink);
  display: block;
  font-size: 13px;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 46px 0 65px;
}

.product-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 2px 14px;
  color: #52625c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot,
.panel-topline i,
.real-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(22, 185, 130, 0.12);
}

.browser-frame {
  position: relative;
  border: 1px solid rgba(5, 34, 26, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-frame-hero {
  transform: perspective(1500px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center left;
}

.browser-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  align-items: center;
  height: 46px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(5, 34, 26, 0.1);
  background: #fbfcfa;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d9d5;
}

.browser-dots i:first-child {
  background: #9bcbb7;
}

.browser-address {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 210px;
  padding: 7px 18px;
  border: 1px solid rgba(5, 34, 26, 0.08);
  border-radius: 99px;
  color: #67756f;
  background: #f3f5f2;
  font-size: 10px;
  text-align: center;
}

.browser-address span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.browser-secure {
  justify-self: end;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 800;
}

.real-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9eeeb;
}

.real-shot img {
  position: absolute;
  left: 0;
  top: -47.3%;
  width: 236.23%;
  max-width: none;
  height: auto;
  transform: translateZ(0);
}

.real-shot-dashboard img {
  top: -86%;
}

.real-shot-revenue img {
  top: -47.3%;
}

.floating-note {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(6, 38, 29, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(5, 33, 25, 0.15);
  backdrop-filter: blur(16px);
}

.floating-note-left {
  left: -26px;
  bottom: 25px;
}

.floating-note-right {
  right: -22px;
  top: 24%;
}

.note-icon,
.outcome-icon,
.operation-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  background: var(--green-800);
}

.note-icon-light {
  color: var(--green-800);
  background: var(--green-100);
}

.note-icon svg,
.outcome-icon svg,
.operation-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note span:last-child {
  display: grid;
  gap: 3px;
}

.floating-note small {
  color: #75827d;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-note strong {
  font-size: 12px;
}

.capability-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #6c7974;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.capability-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-600);
}

.friction-section,
.journey-section,
.fit-section,
.faq-section {
  padding: 128px 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.section-intro h2,
.platform-heading h2,
.autonomy-copy h2,
.fit-copy h2,
.faq-heading h2,
.cta-text h2 {
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.04;
}

.split-intro > p,
.platform-heading > p,
.faq-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.friction-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.friction-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 25px 55px rgba(5, 34, 26, 0.08);
}

.friction-card > svg {
  width: 46px;
  height: 46px;
  margin-top: 48px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #8b9792;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.friction-card h3,
.outcome-card h3 {
  margin: 30px 0 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.friction-card p,
.outcome-card p {
  margin: 0;
  color: #63716c;
  line-height: 1.65;
}

.platform-section,
.autonomy-section {
  position: relative;
  padding: 128px 0;
  color: #fff;
  background: var(--green-950);
  overflow: hidden;
}

.platform-section::before,
.autonomy-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -240px;
  top: -270px;
  border: 1px solid rgba(143, 228, 193, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(143, 228, 193, 0.018), 0 0 0 200px rgba(143, 228, 193, 0.014);
}

.platform-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.platform-heading > p {
  color: rgba(255, 255, 255, 0.65);
}

.product-switcher {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.product-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-dark);
}

.product-tab {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 240px;
  padding: 22px 28px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.product-tab span {
  color: var(--green-300);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.product-tab.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
  padding: 52px;
}

.showcase-kicker {
  color: var(--green-300);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.showcase-copy h3 {
  margin: 16px 0 20px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.showcase-copy > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.showcase-copy.is-hidden {
  display: none;
}

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

.check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--green-300);
  border-bottom: 1.5px solid var(--green-300);
  transform: rotate(-45deg);
}

.showcase-screen {
  position: relative;
}

.showcase-screen .browser-frame {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.showcase-screen .real-shot {
  display: none;
}

.showcase-screen .real-shot.is-active {
  display: block;
  animation: screen-in 0.45s ease both;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.real-badge {
  position: absolute;
  right: 18px;
  bottom: -17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  background: rgba(4, 26, 20, 0.86);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}

.centered-intro {
  max-width: 890px;
  margin-inline: auto;
  text-align: center;
}

.centered-intro .eyebrow {
  justify-content: center;
}

.centered-intro > p {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.journey-flow {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr 70px 1fr;
  align-items: center;
  gap: 10px;
  margin: 76px 0;
}

.journey-step {
  display: grid;
  min-width: 0;
  padding: 24px 18px;
  border-top: 1px solid var(--line);
}

.journey-step span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.journey-step strong {
  margin-top: 20px;
  font-size: 17px;
}

.journey-step small {
  margin-top: 5px;
  color: #74817c;
  font-size: 11px;
}

.journey-flow > svg {
  width: 100%;
  fill: none;
  stroke: rgba(9, 108, 85, 0.34);
  stroke-width: 1;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.outcome-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.outcome-card-main {
  grid-row: 1 / 3;
  min-height: 514px;
  padding: 38px;
  background: var(--paper-tint);
}

.outcome-card-main h3 {
  max-width: 620px;
  margin-top: 52px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
}

.outcome-card-main > p {
  max-width: 580px;
}

.outcome-index {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.conversation-demo {
  display: grid;
  gap: 9px;
  max-width: 590px;
  margin-top: 35px;
  padding: 20px;
  border: 1px solid rgba(9, 108, 85, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
}

.message {
  max-width: 76%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.message-client {
  justify-self: end;
  border-bottom-right-radius: 3px;
  color: #fff;
  background: var(--green-800);
}

.message-company {
  border-bottom-left-radius: 3px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(5, 34, 26, 0.06);
}

.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #78847f;
  font-size: 9px;
}

.typing i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-600);
  animation: typing 1.4s infinite ease-in-out;
}

.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
.typing span { margin-left: 5px; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

.outcome-icon {
  position: absolute;
  right: 28px;
  top: 28px;
  color: var(--green-800);
  background: var(--green-100);
}

.outcome-card:not(.outcome-card-main) h3 {
  margin-top: 62px;
}

.outcome-card-dark {
  color: #fff;
  border-color: var(--green-950);
  background: var(--green-950);
}

.outcome-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.outcome-card-dark .outcome-icon {
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.1);
}

.autonomy-section {
  padding: 120px 0;
  background: #092a22;
}

.autonomy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.autonomy-copy p {
  max-width: 610px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.autonomy-copy h2 em {
  color: var(--green-300);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(143, 228, 193, 0.45);
  color: var(--green-300);
  font-size: 13px;
  font-weight: 750;
}

.autonomy-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 17px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-topline span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-300);
}

.operation-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.operation-icon {
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.09);
}

.operation-row > div {
  display: grid;
  gap: 5px;
}

.operation-row strong {
  font-size: 14px;
}

.operation-row small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(143, 228, 193, 0.22);
  border-radius: 99px;
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.06);
  font-size: 9px;
  font-weight: 800;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.fit-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.fit-list {
  display: grid;
}

.fit-list > div {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.fit-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.fit-list p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.faq-section {
  padding-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  max-width: 560px;
}

.faq-heading > p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 16px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 720;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.faq-item.is-open .faq-answer p {
  padding: 0 52px 26px 0;
}

.final-cta {
  padding: 30px 0 70px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  padding: 72px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 228, 151, 0.25), transparent 33%),
    linear-gradient(135deg, #061d17, #0a4738);
  overflow: hidden;
}

.cta-panel::after {
  content: "RW";
  position: absolute;
  right: -28px;
  top: -70px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 260px;
  font-weight: 900;
  letter-spacing: -0.12em;
}

.cta-text,
.cta-action {
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  max-width: 880px;
}

.cta-text > p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.65;
}

.cta-action {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.button-light {
  color: var(--green-950);
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  color: #fff;
  background: var(--green-500);
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 15px;
}

.cta-action > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.site-footer {
  padding: 52px 0 24px;
  color: #fff;
  background: #050d0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.brand-footer .brand-copy strong {
  font-size: 17px;
}

.site-footer .brand-copy small {
  color: var(--green-300);
}

.footer-grid > div:first-child > p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.reveal-delay,
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }

/* Todo o conteúdo continua visível mesmo se animações ou JavaScript falharem. */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1180px) {
  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(48px, 5vw, 66px);
  }

  .floating-note-right {
    right: 8px;
  }

  .showcase-grid {
    gap: 34px;
    padding: 36px;
  }

  .journey-flow {
    grid-template-columns: repeat(5, 1fr);
  }

  .journey-flow > svg {
    display: none;
  }
}

@media (max-width: 980px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 32px, 760px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    height: 74px;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    gap: 6px;
    width: 43px;
    height: 43px;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 249, 245, 0.98);
    box-shadow: 0 30px 50px rgba(5, 34, 26, 0.1);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after,
  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid,
  .split-intro,
  .platform-heading,
  .showcase-grid,
  .autonomy-grid,
  .fit-grid,
  .faq-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(52px, 8.5vw, 72px);
  }

  .hero-product {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .browser-frame-hero {
    transform: none;
  }

  .capability-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .split-intro,
  .platform-heading,
  .autonomy-grid,
  .fit-grid,
  .faq-grid {
    gap: 36px;
  }

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

  .friction-card {
    min-height: 260px;
  }

  .showcase-grid {
    gap: 45px;
  }

  .journey-flow {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .outcome-card-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fit-copy {
    position: static;
  }

  .cta-panel {
    gap: 42px;
    padding: 52px;
  }

  .cta-action {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 72px;
  }

  .section-shell,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .nav-shell {
    height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .brand img {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    max-width: 185px;
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 105px 0 18px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 0.99;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    margin-top: 25px;
  }

  .hero-product {
    padding: 25px 0 62px;
  }

  .product-caption {
    justify-content: flex-start;
    font-size: 8px;
  }

  .browser-frame {
    border-radius: 12px;
  }

  .browser-bar {
    grid-template-columns: 50px 1fr;
    height: 34px;
    padding: 0 9px;
  }

  .browser-address {
    min-width: 0;
    width: 100%;
    padding: 5px 9px;
    font-size: 7px;
  }

  .browser-secure {
    display: none;
  }

  .browser-dots {
    gap: 4px;
  }

  .browser-dots i {
    width: 5px;
    height: 5px;
  }

  .floating-note {
    min-width: 0;
    padding: 10px;
    border-radius: 10px;
  }

  .floating-note-left {
    left: 7px;
    bottom: 18px;
  }

  .floating-note-right {
    right: 7px;
    top: auto;
    bottom: 18px;
  }

  .floating-note small,
  .floating-note strong {
    font-size: 7px;
  }

  .note-icon {
    width: 28px;
    height: 28px;
  }

  .note-icon svg {
    width: 15px;
    height: 15px;
  }

  .capability-strip {
    gap: 12px;
    padding: 17px 8px;
    font-size: 8px;
  }

  .friction-section,
  .journey-section,
  .fit-section,
  .faq-section,
  .platform-section,
  .autonomy-section {
    padding: 84px 0;
  }

  .section-intro h2,
  .platform-heading h2,
  .autonomy-copy h2,
  .fit-copy h2,
  .faq-heading h2,
  .cta-text h2 {
    font-size: clamp(36px, 11vw, 49px);
    line-height: 1.04;
  }

  .split-intro > p,
  .platform-heading > p,
  .faq-heading > p,
  .centered-intro > p {
    font-size: 15px;
  }

  .friction-grid {
    margin-top: 42px;
  }

  .friction-card {
    min-height: 240px;
    padding: 25px;
  }

  .friction-card > svg {
    margin-top: 30px;
  }

  .product-switcher {
    margin-top: 45px;
    border-radius: 14px;
  }

  .product-tabs {
    overflow-x: auto;
  }

  .product-tab {
    min-width: max-content;
    padding: 17px 20px;
    font-size: 12px;
  }

  .showcase-grid {
    padding: 26px 16px 32px;
  }

  .showcase-copy h3 {
    font-size: 31px;
  }

  .real-badge {
    right: 8px;
    bottom: -15px;
  }

  .journey-flow {
    margin: 48px 0;
  }

  .journey-step {
    min-width: 145px;
  }

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

  .outcome-card-main {
    min-height: 0;
    padding: 25px;
  }

  .outcome-card-main h3 {
    margin-top: 38px;
    font-size: 31px;
  }

  .message {
    max-width: 88%;
    font-size: 10px;
  }

  .operation-row {
    grid-template-columns: auto 1fr;
    padding: 15px 5px;
  }

  .status-pill {
    grid-column: 2;
    width: max-content;
  }

  .fit-list > div {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .fit-list p {
    font-size: 19px;
  }

  .faq-section {
    padding-top: 0;
  }

  .faq-grid {
    padding-top: 74px;
  }

  .faq-item button {
    font-size: 15px;
  }

  .final-cta {
    padding: 0 0 30px;
  }

  .cta-panel {
    gap: 34px;
    padding: 38px 24px;
    border-radius: 20px;
  }

  .cta-text > p {
    font-size: 14px;
  }

  .cta-action,
  .cta-action .button {
    width: 100%;
  }

  .cta-action > span {
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #fff;
    background: rgba(5, 45, 34, 0.94);
    box-shadow: 0 14px 40px rgba(4, 26, 20, 0.28);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
  }

  .mobile-contact svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 380px) {
  .brand-copy small {
    display: none;
  }

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

  .floating-note-right {
    display: none;
  }
}

/* Conversion polish: acabamento editorial para um SaaS B2B premium. */
.site-header {
  padding: 12px 0;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-header .nav-shell {
  height: 68px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(8, 47, 36, 0.11);
  border-radius: 17px;
  background: rgba(250, 251, 247, 0.86);
  box-shadow: 0 14px 45px rgba(4, 28, 21, 0.06);
  backdrop-filter: blur(22px) saturate(1.25);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(250, 251, 247, 0.94);
  box-shadow: 0 16px 48px rgba(4, 28, 21, 0.1);
}

.hero {
  min-height: auto;
  padding: 136px 0 74px;
  background:
    radial-gradient(circle at 78% 15%, rgba(131, 231, 187, 0.22), transparent 29%),
    linear-gradient(112deg, #f8f8f3 0%, #f4f6f0 54%, #e8f1eb 100%);
}

.hero-grid {
  grid-template-columns: minmax(440px, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(44px, 5vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(58px, 5.1vw, 82px);
  letter-spacing: -0.064em;
}

.hero-lead {
  max-width: 640px;
  color: #435650;
}

.hero-actions .button-primary {
  min-width: 300px;
  background: linear-gradient(135deg, #087b5f, #075a47);
  box-shadow: 0 18px 42px rgba(7, 91, 70, 0.23), inset 0 1px rgba(255, 255, 255, 0.18);
}

.hero-assurance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 17px;
  color: #71807a;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-assurance i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-600);
}

.hero-proof {
  padding-top: 26px;
  border-top: 1px solid rgba(9, 73, 56, 0.12);
}

.hero-proof > div {
  max-width: 270px;
}

.hero-product {
  padding-bottom: 24px;
}

.browser-frame-hero {
  border-color: rgba(5, 38, 29, 0.16);
  box-shadow: 0 42px 100px rgba(5, 36, 27, 0.2), 0 8px 26px rgba(5, 36, 27, 0.08);
}

.product-command-bar {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -16px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  background: rgba(4, 31, 24, 0.96);
  box-shadow: 0 24px 52px rgba(2, 29, 21, 0.24);
  backdrop-filter: blur(18px);
}

.product-command-bar > div {
  min-width: 0;
  padding: 16px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.product-command-bar > div:last-child {
  border-right: 0;
}

.product-command-bar span,
.product-command-bar small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-command-bar strong {
  display: block;
  margin: 3px 0 2px;
  font-size: 12px;
}

.floating-note-left {
  bottom: 95px;
}

.capability-strip {
  margin-top: 32px;
  border-color: rgba(8, 68, 52, 0.13);
}

.value-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(4, 44, 33, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(5, 37, 28, 0.07);
  backdrop-filter: blur(16px);
}

.value-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 27px 28px;
  border-right: 1px solid rgba(4, 44, 33, 0.1);
}

.value-band article:last-child {
  border-right: 0;
}

.value-index {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(9, 108, 85, 0.2);
  border-radius: 9px;
  color: var(--green-700);
  background: rgba(222, 246, 236, 0.62);
  font-size: 9px;
  font-weight: 850;
}

.value-band strong {
  display: block;
  margin: 1px 0 7px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.value-band p {
  margin: 0;
  color: #65736e;
  font-size: 12px;
  line-height: 1.5;
}

.trust-section {
  padding: 98px 0;
  background: #f5f6f1;
}

.trust-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 25%, rgba(36, 208, 146, 0.2), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(41, 164, 126, 0.15), transparent 34%),
    linear-gradient(135deg, #031b14, #052c22 70%, #07392c);
  box-shadow: 0 35px 100px rgba(4, 34, 25, 0.18);
  overflow: hidden;
}

.trust-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -230px;
  border: 1px solid rgba(143, 228, 193, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(143, 228, 193, 0.035), 0 0 0 128px rgba(143, 228, 193, 0.025);
}

.trust-number-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  padding: 54px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.trust-label {
  max-width: 230px;
  color: var(--green-300);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-number-topline {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.trust-live-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 7px rgba(143, 228, 193, 0.1);
}

.trust-number {
  display: flex;
  align-items: flex-start;
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: clamp(92px, 9vw, 150px);
  font-weight: 760;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.trust-number sup {
  margin: -3px 0 0 9px;
  color: var(--green-300);
  font-size: 0.38em;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.trust-count {
  min-width: 2.2em;
  font: inherit;
  font-variant-numeric: tabular-nums;
}

.trust-number-block > p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.trust-number-block > p b {
  color: #fff;
  font-weight: 760;
}

.company-matrix {
  display: grid;
  grid-template-columns: repeat(20, 5px);
  gap: 5px;
  width: max-content;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.company-matrix i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
  transform: scale(0.65);
  animation: matrix-in 0.45s ease forwards;
  animation-delay: calc(var(--dot-index) * 5ms);
}

.company-matrix i:nth-child(7n),
.company-matrix i:nth-child(13n),
.company-matrix i:nth-child(29n) {
  background: var(--green-300);
  box-shadow: 0 0 10px rgba(143, 228, 193, 0.5);
}

.matrix-caption {
  max-width: 250px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 9px;
  line-height: 1.45;
}

@keyframes matrix-in {
  to { transform: scale(1); }
}

.trust-content {
  position: relative;
  z-index: 2;
  padding: 58px clamp(40px, 5vw, 78px);
}

.trust-content h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.trust-content h2 em {
  color: var(--green-300);
}

.trust-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.trust-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-outcomes article {
  min-width: 0;
  padding: 26px 22px 0 0;
}

.trust-outcomes article + article {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-outcomes article > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(143, 228, 193, 0.25);
  border-radius: 8px;
  color: var(--green-300);
  font-size: 8px;
  font-weight: 850;
}

.trust-outcomes strong {
  display: block;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.4;
}

.trust-outcomes p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.friction-section {
  background:
    linear-gradient(rgba(7, 44, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 44, 34, 0.035) 1px, transparent 1px),
    #f8f8f4;
  background-size: 56px 56px;
}

.friction-card {
  min-height: 350px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 50px rgba(7, 35, 28, 0.045);
  overflow: hidden;
}

.friction-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-500), transparent 72%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.friction-card:hover::before {
  opacity: 1;
}

.friction-card > svg {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 12px;
  border: 1px solid rgba(9, 108, 85, 0.15);
  border-radius: 14px;
  background: rgba(221, 245, 234, 0.48);
}

.platform-section {
  background:
    radial-gradient(circle at 90% 5%, rgba(25, 168, 123, 0.17), transparent 27%),
    linear-gradient(135deg, #031912, #05271e 54%, #063329);
}

.product-switcher {
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.23);
}

.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 86% 20%, rgba(50, 210, 150, 0.18), transparent 28%),
    linear-gradient(128deg, #041d16, #06372b);
  box-shadow: 0 32px 90px rgba(3, 30, 22, 0.18);
}

.cta-assurance {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  text-align: left;
}

.cta-assurance small {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.cta-assurance small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-300);
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
    gap: 30px;
  }

  .product-command-bar {
    margin-inline: 12px;
  }

  .value-band article {
    padding: 23px 20px;
  }
}

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

  .site-header .nav-shell {
    height: 64px;
  }

  .main-nav {
    inset: 80px 16px auto;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .hero {
    padding-top: 112px;
  }

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

  .hero-product {
    width: 100%;
  }

  .value-band {
    grid-template-columns: 1fr;
  }

  .value-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(4, 44, 33, 0.1);
  }

  .value-band article:last-child {
    border-bottom: 0;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-number-block {
    min-height: auto;
    padding: 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-number-block > p {
    max-width: 500px;
  }
}

@media (max-width: 680px) {
  .site-header .nav-shell {
    height: 58px;
    border-radius: 14px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    padding: 98px 0 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 57px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
  }

  .hero-assurance i {
    display: none;
  }

  .hero-assurance span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 8px 1px 0;
    border-radius: 50%;
    background: var(--green-600);
  }

  .hero-proof {
    padding-top: 20px;
  }

  .hero-product {
    padding-bottom: 8px;
  }

  .floating-note {
    display: none;
  }

  .product-command-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: -7px 8px 0;
  }

  .product-command-bar > div {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .product-command-bar > div:nth-child(2) {
    border-right: 0;
  }

  .product-command-bar > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .capability-strip {
    justify-content: flex-start;
    gap: 14px;
    padding-inline: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capability-strip span {
    flex: 0 0 auto;
  }

  .value-band {
    margin-top: 20px;
    border-radius: 17px;
  }

  .value-band article {
    padding: 21px 18px;
  }

  .friction-card {
    min-height: 265px;
  }

  .trust-section {
    padding: 64px 0;
  }

  .trust-panel {
    border-radius: 20px;
  }

  .trust-number-block,
  .trust-content {
    padding: 34px 24px;
  }

  .trust-number {
    font-size: 104px;
  }

  .trust-content h2 {
    font-size: 38px;
  }

  .trust-outcomes {
    grid-template-columns: 1fr;
  }

  .trust-outcomes article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 21px 0;
  }

  .trust-outcomes article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-outcomes article > span {
    margin: 0;
  }

  .trust-outcomes strong {
    min-height: 0;
  }

  .trust-outcomes p {
    grid-column: 2;
    margin-top: -8px;
  }

  .cta-assurance {
    justify-items: center;
    text-align: center;
  }
}

/* Dark executive system: a linguagem da prova social aplicada ao site inteiro. */
body {
  color: #f4f7f3;
  background: #031711;
}

.site-header .nav-shell,
.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(3, 24, 18, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.brand-copy strong,
.main-nav a,
.text-link {
  color: #f7faf7;
}

.brand-copy small {
  color: var(--green-300);
}

.main-nav a::after {
  background: var(--green-300);
}

.button-dark {
  color: #052119;
  background: linear-gradient(135deg, #a9f1d1, #74dcae);
  box-shadow: 0 12px 35px rgba(74, 214, 156, 0.17);
}

.button-dark:hover {
  color: #02150f;
  background: #c1f8df;
}

.menu-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.menu-button span:not(.sr-only) {
  background: #fff;
}

.hero {
  background:
    radial-gradient(circle at 78% 15%, rgba(49, 211, 151, 0.18), transparent 29%),
    radial-gradient(circle at 17% 95%, rgba(21, 122, 91, 0.12), transparent 28%),
    linear-gradient(120deg, #031710 0%, #041f17 56%, #073126 100%);
}

.hero::before {
  border-color: rgba(143, 228, 193, 0.12);
  box-shadow: 0 0 0 95px rgba(143, 228, 193, 0.018), 0 0 0 190px rgba(143, 228, 193, 0.012);
}

.hero h1,
.section-intro h2,
.fit-copy h2,
.faq-heading h2 {
  color: #f8faf8;
}

.hero h1 em,
.friction-section h2 em,
.journey-section h2 em,
.fit-section h2 em,
.faq-section h2 em {
  color: var(--green-300);
}

.hero-lead,
.split-intro > p,
.centered-intro > p,
.faq-heading > p {
  color: rgba(236, 246, 241, 0.64);
}

.eyebrow,
.eyebrow-dark {
  color: var(--green-300);
}

.button-primary {
  color: #052119;
  background: linear-gradient(135deg, #98ebc5, #55ce9a);
  box-shadow: 0 18px 45px rgba(38, 205, 142, 0.2);
}

.button-primary:hover {
  color: #02150f;
  background: linear-gradient(135deg, #b9f6da, #71dfaF);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover {
  border-color: rgba(143, 228, 193, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.play-icon {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-assurance,
.hero-proof span,
.product-caption {
  color: rgba(236, 246, 241, 0.52);
}

.floating-note,
.floating-note strong {
  color: #0b1714;
}

.hero-proof {
  border-color: rgba(255, 255, 255, 0.11);
}

.hero-proof strong {
  color: #fff;
}

.hero-proof svg {
  stroke: var(--green-300);
}

.capability-strip {
  color: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.11);
}

.capability-strip i {
  background: var(--green-300);
}

.value-band {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.038);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.17);
}

.value-band article {
  border-color: rgba(255, 255, 255, 0.1);
}

.value-index {
  color: var(--green-300);
  border-color: rgba(143, 228, 193, 0.23);
  background: rgba(143, 228, 193, 0.07);
}

.value-band strong {
  color: #fff;
}

.value-band p {
  color: rgba(255, 255, 255, 0.5);
}

.trust-section {
  background: #031710;
}

.trust-panel {
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
}

.friction-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    #061d16;
  background-size: 56px 56px;
}

.friction-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.friction-card:hover {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.friction-card > svg {
  stroke: var(--green-300);
  border-color: rgba(143, 228, 193, 0.18);
  background: rgba(143, 228, 193, 0.07);
}

.friction-card p,
.outcome-card p {
  color: rgba(255, 255, 255, 0.53);
}

.card-number {
  color: rgba(255, 255, 255, 0.36);
}

.platform-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-section {
  color: #fff;
  background:
    radial-gradient(circle at 16% 32%, rgba(28, 142, 106, 0.1), transparent 24%),
    #031710;
}

.journey-step {
  border-color: rgba(255, 255, 255, 0.12);
}

.journey-step span,
.outcome-index,
.fit-list span {
  color: var(--green-300);
}

.journey-step small {
  color: rgba(255, 255, 255, 0.43);
}

.journey-flow > svg {
  stroke: rgba(143, 228, 193, 0.3);
}

.outcome-card,
.outcome-card-main {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.outcome-card-main {
  background: linear-gradient(145deg, rgba(24, 91, 70, 0.3), rgba(255, 255, 255, 0.035));
}

.outcome-card-dark {
  border-color: rgba(143, 228, 193, 0.14);
  background: #092a21;
}

.conversation-demo {
  border-color: rgba(143, 228, 193, 0.14);
  background: rgba(1, 18, 13, 0.46);
}

.message-company {
  color: #0b1714;
}

.typing {
  color: rgba(255, 255, 255, 0.44);
}

.autonomy-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #08271f;
}

.fit-section {
  color: #fff;
  background: #061d16;
}

.fit-list > div,
.fit-list > div:last-child {
  border-color: rgba(255, 255, 255, 0.11);
}

.fit-list p {
  color: rgba(255, 255, 255, 0.8);
}

.faq-section {
  color: #fff;
  background: #041913;
}

.faq-grid,
.accordion,
.faq-item {
  border-color: rgba(255, 255, 255, 0.11);
}

.faq-item button {
  color: #fff;
}

.faq-item button span {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.55);
}

.final-cta {
  background: #041913;
}

.cta-panel {
  border-color: rgba(143, 228, 193, 0.17);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #020b08;
}

@media (max-width: 980px) {
  .main-nav {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(3, 24, 18, 0.98);
  }

  .main-nav a {
    border-color: rgba(255, 255, 255, 0.09);
  }
}

/* Aplicativo mobile: produto instalável apresentado como parte da operação. */
.mobile-app-section {
  position: relative;
  padding: 128px 0;
  background:
    radial-gradient(circle at 82% 48%, rgba(50, 214, 154, 0.13), transparent 25%),
    #031710;
  overflow: hidden;
}

.mobile-app-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
  min-height: 760px;
  padding: clamp(48px, 6vw, 86px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(75, 220, 161, 0.16), transparent 30%),
    linear-gradient(135deg, #061f18, #083126);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.mobile-app-panel::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -210px;
  border: 1px solid rgba(143, 228, 193, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(143, 228, 193, 0.02), 0 0 0 160px rgba(143, 228, 193, 0.014);
}

.mobile-app-copy,
.phone-stage {
  position: relative;
  z-index: 2;
}

.mobile-app-copy h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.mobile-app-copy h2 em {
  color: var(--green-300);
  font-style: normal;
}

.mobile-app-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 17px;
  line-height: 1.65;
}

.mobile-benefits {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-benefits article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-benefits article > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(143, 228, 193, 0.23);
  border-radius: 8px;
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.055);
  font-size: 8px;
  font-weight: 850;
}

.mobile-benefits strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.mobile-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.55;
}

.mobile-app-cta {
  margin-top: 34px;
}

.mobile-app-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 670px;
}

.phone-halo {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(66, 220, 160, 0.13);
  filter: blur(85px);
}

.phone-device {
  position: relative;
  z-index: 3;
  width: 334px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 45px;
  background: linear-gradient(145deg, #14231f, #020906);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 20px;
  background: #030806;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 650px;
  border-radius: 36px;
  color: #0b1714;
  background:
    radial-gradient(circle at 80% 7%, rgba(101, 225, 174, 0.22), transparent 26%),
    #f4f7f3;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 9px;
  font-size: 9px;
  font-weight: 800;
}

.phone-app-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  border-top: 1px solid rgba(6, 55, 42, 0.08);
  border-bottom: 1px solid rgba(6, 55, 42, 0.09);
  background: rgba(255, 255, 255, 0.7);
}

.phone-app-header img {
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(2, 45, 31, 0.18);
}

.phone-app-header > div {
  display: grid;
  gap: 3px;
}

.phone-app-header strong {
  font-size: 11px;
}

.phone-app-header small {
  color: #658078;
  font-size: 7px;
}

.phone-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #fff;
  background: var(--green-800);
  font-size: 8px;
  font-weight: 850;
}

.phone-app-body {
  padding: 24px 17px 14px;
}

.phone-app-kicker {
  color: var(--green-700);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phone-app-body h3 {
  margin: 11px 0 20px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.phone-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.phone-metrics article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(6, 55, 42, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(6, 51, 38, 0.055);
}

.phone-metrics small,
.phone-priority small,
.phone-sale-row small {
  color: #71827c;
  font-size: 7px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.phone-metrics strong {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.phone-metrics span {
  color: var(--green-700);
  font-size: 7px;
  font-weight: 750;
}

.phone-priority {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(9, 108, 85, 0.13);
  border-radius: 14px;
  background: #e7f2ec;
}

.phone-priority > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone-priority > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(22, 185, 130, 0.1);
}

.phone-priority > strong {
  display: block;
  margin-top: 11px;
  font-size: 12px;
}

.phone-priority p {
  margin: 6px 0 0;
  color: #65756f;
  font-size: 8px;
  line-height: 1.5;
}

.phone-sale-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(6, 55, 42, 0.09);
  border-radius: 13px;
  background: #fff;
}

.phone-sale-row > span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #fff;
  background: var(--green-700);
  font-size: 11px;
  font-weight: 850;
}

.phone-sale-row > div {
  display: grid;
  gap: 3px;
}

.phone-sale-row strong {
  font-size: 9px;
}

.phone-sale-row b {
  color: var(--green-700);
  font-size: 7px;
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 17px 14px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #08271f;
}

.phone-nav i {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.23);
}

.phone-nav i:first-child {
  background: var(--green-300);
}

.phone-notification {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  width: 280px;
  padding: 14px;
  border: 1px solid rgba(5, 40, 30, 0.12);
  border-radius: 15px;
  color: #0b1714;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.phone-notification-top {
  right: -12px;
  top: 78px;
}

.phone-notification-bottom {
  left: -16px;
  bottom: 82px;
  grid-template-columns: auto 1fr;
}

.phone-notification-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 11px;
  color: #fff;
  background: var(--green-700);
}

.phone-notification-icon-calendar {
  color: var(--green-800);
  background: var(--green-100);
}

.phone-notification-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-notification > div {
  display: grid;
  gap: 2px;
}

.phone-notification small,
.phone-notification time {
  color: #74827d;
  font-size: 7px;
  font-style: normal;
}

.phone-notification strong {
  font-size: 10px;
}

.phone-notification p {
  margin: 0;
  color: #64736e;
  font-size: 7px;
}

@media (max-width: 1100px) {
  .mobile-app-panel {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 40px;
    padding-inline: 46px;
  }

  .phone-notification {
    width: 240px;
  }
}

@media (max-width: 980px) {
  .mobile-app-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .phone-stage {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .mobile-app-section {
    padding: 64px 0;
  }

  .mobile-app-panel {
    width: 100%;
    min-height: 0;
    padding: 34px 18px 40px;
    border-radius: 20px;
    overflow: hidden;
  }

  .mobile-app-copy,
  .mobile-benefits,
  .mobile-benefits article,
  .mobile-benefits article > div {
    min-width: 0;
  }

  .mobile-app-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 42px);
    overflow-wrap: anywhere;
  }

  .mobile-app-copy > p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .mobile-benefits p {
    overflow-wrap: anywhere;
  }

  .mobile-app-cta {
    width: 100%;
    min-height: 62px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .mobile-app-note {
    max-width: 100%;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .phone-stage {
    left: auto;
    width: 100%;
    min-height: 625px;
    margin: 20px auto 0;
    transform: none;
  }

  .phone-device {
    width: min(300px, 100%);
    padding: 8px;
    border-radius: 39px;
  }

  .phone-screen {
    min-height: 600px;
    border-radius: 31px;
  }

  .phone-app-body h3 {
    font-size: 21px;
  }

  .phone-notification {
    width: min(218px, 68vw);
    padding: 11px;
  }

  .phone-notification-top {
    right: 0;
    top: 66px;
  }

  .phone-notification-bottom {
    left: 0;
    bottom: 48px;
  }
}

@media (max-width: 420px) {
  .phone-stage {
    left: auto;
    width: 100%;
    min-height: 610px;
    margin: 16px auto 0;
    transform: none;
  }

  .phone-notification {
    display: none;
  }

  .phone-device {
    width: min(288px, 100%);
  }
}

/* Hierarquia sem numeração decorativa e efeitos premium da hero. */
.site-header {
  transition: transform 0.32s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(116deg, transparent 48%, rgba(127, 236, 190, 0.055) 58%, transparent 69%);
  transform: translateX(-35%);
  animation: hero-sheen 12s ease-in-out infinite;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-atmosphere span {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(143, 228, 193, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 228, 193, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 60%, transparent);
}

.hero-atmosphere i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 7px rgba(143, 228, 193, 0.06), 0 0 28px rgba(143, 228, 193, 0.65);
  animation: signal-float 8s ease-in-out infinite;
}

.hero-atmosphere i:nth-child(1) {
  left: 57%;
  top: 22%;
}

.hero-atmosphere i:nth-child(2) {
  right: 8%;
  top: 47%;
  animation-delay: -2.5s;
}

.hero-atmosphere i:nth-child(3) {
  left: 48%;
  bottom: 17%;
  animation-delay: -5s;
}

@keyframes hero-sheen {
  0%, 30% { transform: translateX(-45%); opacity: 0; }
  48% { opacity: 1; }
  70%, 100% { transform: translateX(45%); opacity: 0; }
}

@keyframes signal-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
  50% { transform: translate3d(0, -16px, 0); opacity: 1; }
}

@media (min-width: 981px) {
  .browser-frame-hero {
    animation: product-float 7s ease-in-out infinite;
  }

  @keyframes product-float {
    0%, 100% { transform: perspective(1500px) rotateY(-4deg) rotateX(1.5deg) translateY(0); }
    50% { transform: perspective(1500px) rotateY(-3deg) rotateX(1deg) translateY(-8px); }
  }
}

.hero-actions .button-primary {
  position: relative;
  overflow: hidden;
  color: #052119;
  background: linear-gradient(135deg, #a9f1d1, #68d8a7);
  box-shadow: 0 20px 50px rgba(70, 218, 157, 0.2);
}

.hero-actions .button-primary:hover {
  color: #02150f;
  background: linear-gradient(135deg, #c2f8df, #82e5b9);
}

.hero-actions .button-primary::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -45%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  animation: cta-shine 5.5s ease-in-out infinite;
}

@keyframes cta-shine {
  0%, 55% { left: -45%; }
  78%, 100% { left: 125%; }
}

.product-command-bar > div > i {
  display: block;
  width: 18px;
  height: 2px;
  margin-bottom: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-300), rgba(143, 228, 193, 0.12));
}

.value-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(143, 228, 193, 0.22);
  border-radius: 10px;
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.06);
}

.value-icon svg,
.mobile-benefit-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-outcomes article > i {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-300), rgba(143, 228, 193, 0.08));
}

.product-tab > i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(143, 228, 193, 0.42);
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.product-tab.is-active > i {
  background: var(--green-300);
  box-shadow: 0 0 0 5px rgba(143, 228, 193, 0.08);
}

.journey-step i {
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #031710;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 1px rgba(143, 228, 193, 0.5), 0 0 18px rgba(143, 228, 193, 0.3);
}

.mobile-benefit-icon {
  color: var(--green-300);
}

.fit-list > div {
  grid-template-columns: 46px 1fr;
}

.fit-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(143, 228, 193, 0.22);
  border-radius: 50%;
  color: var(--green-300);
  background: rgba(143, 228, 193, 0.05);
  font-size: 12px;
}

@media (max-width: 680px) {
  .hero-atmosphere i {
    display: none;
  }

  .hero-atmosphere span {
    opacity: 0.13;
    background-size: 48px 48px;
  }

  .trust-outcomes article > i {
    width: 24px;
    margin: 8px 0 0;
  }

  .fit-list > div {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero-atmosphere i,
  .browser-frame-hero,
  .hero-actions .button-primary::before {
    animation: none !important;
  }
}

/* Céu tecnológico: profundidade e brilho sem comprometer a leitura. */
.hero,
.trust-section,
.platform-section,
.autonomy-section,
.mobile-app-section,
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero > .section-shell,
.trust-section > .section-shell,
.platform-section > .section-shell,
.autonomy-section > .section-shell,
.mobile-app-section > .section-shell,
.final-cta > .section-shell {
  position: relative;
  z-index: 2;
}

.cosmic-stars {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  contain: strict;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4) 72%, transparent);
}

.cosmic-stars-hero {
  opacity: 0.95;
  mask-image: radial-gradient(circle at 68% 42%, #000 0, rgba(0, 0, 0, 0.88) 48%, transparent 93%);
}

.cosmic-stars .cosmic-star {
  --star-size: 2px;
  --star-alpha: 0.65;
  position: absolute;
  left: var(--star-x);
  top: var(--star-y);
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 999px;
  background: rgba(223, 255, 242, var(--star-alpha));
  box-shadow:
    0 0 calc(var(--star-size) * 2.6) rgba(131, 239, 192, calc(var(--star-alpha) * 0.9)),
    0 0 calc(var(--star-size) * 6) rgba(63, 213, 151, calc(var(--star-alpha) * 0.25));
  animation: cosmic-twinkle var(--star-speed) ease-in-out var(--star-delay) infinite;
  will-change: opacity, transform;
}

.cosmic-stars .cosmic-star.is-flare {
  background: #eafff5;
  box-shadow: 0 0 6px rgba(213, 255, 237, 0.85), 0 0 19px rgba(72, 226, 162, 0.65);
}

.cosmic-stars .cosmic-star.is-flare::before,
.cosmic-stars .cosmic-star.is-flare::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(222, 255, 241, 0.88), transparent);
  transform: translate(-50%, -50%);
}

.cosmic-stars .cosmic-star.is-flare::before {
  width: calc(var(--star-size) * 7);
  height: 1px;
}

.cosmic-stars .cosmic-star.is-flare::after {
  width: 1px;
  height: calc(var(--star-size) * 7);
  background: linear-gradient(180deg, transparent, rgba(222, 255, 241, 0.88), transparent);
}

.cosmic-stars::before,
.cosmic-stars::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 1px;
  border-radius: 50%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 228, 0.12), rgba(229, 255, 243, 0.92));
  filter: drop-shadow(0 0 6px rgba(112, 235, 183, 0.65));
  transform: rotate(-24deg);
  animation: shooting-star 13s cubic-bezier(0.22, 0.68, 0.28, 1) infinite;
}

.cosmic-stars::before {
  left: -190px;
  top: 19%;
}

.cosmic-stars::after {
  left: 28%;
  top: -120px;
  animation-delay: -7s;
  animation-duration: 17s;
}

@keyframes cosmic-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.72); }
  42% { opacity: var(--star-alpha); transform: scale(1); }
  55% { opacity: 1; transform: scale(1.38); }
  72% { opacity: 0.38; transform: scale(0.88); }
}

@keyframes shooting-star {
  0%, 70% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-24deg); }
  73% { opacity: 0.85; }
  82% { opacity: 0; transform: translate3d(105vw, 48vh, 0) rotate(-24deg); }
  100% { opacity: 0; transform: translate3d(105vw, 48vh, 0) rotate(-24deg); }
}

@media (max-width: 680px) {
  .cosmic-stars {
    opacity: 0.82;
    mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.45) 78%, transparent);
  }

  .cosmic-stars-hero {
    opacity: 0.92;
    mask-image: radial-gradient(circle at 70% 32%, #000, rgba(0, 0, 0, 0.75) 58%, transparent 100%);
  }

  .cosmic-stars .cosmic-star:nth-child(n + 34) {
    display: none;
  }

  .cosmic-stars::after {
    display: none;
  }

  .cosmic-stars::before {
    width: 105px;
    animation-duration: 16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cosmic-stars .cosmic-star,
  .cosmic-stars::before,
  .cosmic-stars::after {
    animation: none !important;
  }

  .cosmic-stars .cosmic-star {
    opacity: 0.58;
  }
}
