:root {
  --ink: #102033;
  --muted: #5a6878;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --line: #dde5ec;
  --blue: #004e84;
  --blue-2: #2976ab;
  --blue-dark: #073a5f;
  --green: #1f9d65;
  --orange: #ff8a3d;
  --red: #b20d10;
  --red-dark: #7d080b;
  --charcoal: #081928;
  --cream: #fff3d8;
  --shadow: 0 24px 70px rgba(7, 28, 46, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, .22), rgba(178, 13, 16, 0) 68%);
  filter: blur(8px);
  opacity: .8;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(7, 58, 95, .78);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .3s ease, height .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(7, 58, 95, .94);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 142px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

.site-header.scrolled .brand img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, .76);
  transition: color .2s ease;
}

.site-header.scrolled .nav a {
  color: rgba(255, 255, 255, .76);
}

.nav a:hover,
.site-header.scrolled .nav a:hover {
  color: var(--orange);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.header-cta {
  padding: 0 16px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(255, 138, 61, .28);
}

.header-cta svg,
.button svg,
.menu-button svg,
.problem-card svg,
.metric svg,
.app-side svg,
.board-head svg,
.hub-tab svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

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

.menu-button {
  display: none;
  place-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #0b1218;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 22, .95) 0%, rgba(5, 14, 22, .83) 42%, rgba(5, 14, 22, .48) 100%),
    radial-gradient(circle at 74% 22%, rgba(255, 138, 61, .32), transparent 27%),
    radial-gradient(circle at 18% 84%, rgba(178, 13, 16, .38), transparent 30%),
    url("assets/fundo-burguer.png");
  background-position: center, center, center, center 70%;
  background-size: cover;
  transform: scale(1.04);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 48px;
  padding: 112px 0 54px;
}

.event-pill,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-pill {
  margin-bottom: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 138, 61, .8);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  60% {
    box-shadow: 0 0 0 10px rgba(255, 138, 61, 0);
  }
}

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

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.6vw, 5rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

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

.button {
  min-height: 52px;
  padding: 0 20px;
  font-size: 14px;
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 15px 36px rgba(255, 138, 61, .26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.hero-proof div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.hero-proof span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.hero-stage {
  position: relative;
  min-width: 680px;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.device {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .35);
}

.device::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 138, 61, .6), transparent 22%, transparent 78%, rgba(41, 118, 171, .55));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.device-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: #071827;
  color: #fff;
}

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

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef6c5b;
}

.window-dots span:nth-child(2) {
  background: var(--orange);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.device-title {
  font-size: 13px;
  font-weight: 800;
}

.device-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  font-weight: 700;
}

.device-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.device-body {
  display: flex;
  min-height: 472px;
  background: #f4f7fb;
}

.app-side {
  width: 144px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.app-side span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 8px;
  border-radius: 6px;
  color: #687483;
  font-size: 11px;
  font-weight: 800;
}

.app-side span.active {
  background: #e6f2fb;
  color: var(--blue);
}

.delivery-board {
  flex: 1;
  min-width: 0;
  padding: 22px;
}

.board-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.board-head small {
  display: block;
  color: #7a8794;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.board-head h2 {
  margin: 3px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.board-head button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.platform-row span {
  padding: 10px 8px;
  border: 1px solid #e0e7ee;
  border-radius: 6px;
  background: #fff;
  color: #647282;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.lane {
  min-height: 280px;
  padding: 10px;
  border-radius: var(--radius);
  background: #e9eef4;
}

.lane h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 9px;
  color: #53606c;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.lane h3 b {
  padding: 2px 6px;
  border-radius: 999px;
  background: #d8e1ea;
}

.ticket {
  position: relative;
  overflow: hidden;
  margin-bottom: 9px;
  padding: 12px;
  border: 1px solid #e4e9ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 25, 40, .06);
}

.ticket::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--red);
}

.ticket strong,
.ticket small,
.ticket em,
.source {
  display: block;
}

.source {
  width: fit-content;
  margin-bottom: 9px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #ffe8e8;
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
}

.source.orange {
  background: #fff0e6;
  color: #c75812;
}

.source.blue {
  background: #e1f0fb;
  color: var(--blue);
}

.source.green {
  background: #def6ea;
  color: var(--green);
}

.ticket strong {
  font-size: 11px;
}

.ticket small {
  margin: 4px 0 8px;
  color: #7a8794;
  font-size: 9px;
}

.ticket em {
  color: #8c98a4;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.ticket-b::before {
  background: var(--orange);
}

.ticket-c::before,
.muted::before {
  background: var(--green);
}

.ticket-d::before {
  background: var(--blue);
}

.muted {
  opacity: .72;
}

.floating-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .23);
}

.floating-metric svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 6px;
  background: #e6f2fb;
  color: var(--blue);
}

.floating-metric span,
.floating-metric strong {
  display: block;
}

.floating-metric span {
  color: #6a7683;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-metric strong {
  font-size: 14px;
}

.metric-one {
  top: 86px;
  right: -24px;
}

.metric-two {
  left: 70px;
  bottom: -28px;
}

.ticker {
  overflow: hidden;
  padding: 12px 0;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 82px max(24px, calc((100% - 1160px) / 2));
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.hub-intro h2,
.trust-copy h2,
.cta-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p,
.hub-intro p,
.trust-copy p,
.cta-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

.problem-section {
  background: var(--soft);
}

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

.problem-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.problem-card:hover {
  border-color: rgba(0, 78, 132, .28);
  box-shadow: 0 18px 44px rgba(7, 28, 46, .11);
  transform: translateY(-6px);
}

.problem-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: var(--radius);
  background: #e6f2fb;
  color: var(--blue);
}

.problem-card:nth-child(2) svg {
  background: #fff0e6;
  color: #b44700;
}

.problem-card:nth-child(3) svg {
  background: #def6ea;
  color: var(--green);
}

.problem-card:nth-child(4) svg {
  background: #ffe8e8;
  color: var(--red);
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hub-section {
  background: #fff;
}

.hub-intro {
  max-width: 790px;
  margin-bottom: 30px;
}

.hub-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.hub-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.hub-tab {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #667484;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: .25s ease;
}

.hub-tab.active,
.hub-tab:hover {
  border-color: rgba(0, 78, 132, .28);
  background: var(--blue);
  color: #fff;
}

.hub-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hub-copy {
  padding: 42px;
}

.hub-copy > span {
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #e6f2fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hub-copy h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.hub-copy p {
  color: var(--muted);
}

.hub-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hub-copy li {
  display: flex;
  gap: 10px;
  color: #34465a;
  font-size: 14px;
  font-weight: 800;
}

.hub-copy li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hub-visual {
  position: relative;
  display: grid;
  place-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 138, 61, .16), transparent 36%),
    linear-gradient(135deg, #e5f2fa, #fff0e6);
}

.integration-orbit {
  position: relative;
  width: min(470px, 80vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(0, 78, 132, .22);
  border-radius: 50%;
}

.center-node,
.node {
  position: absolute;
  display: grid;
  place-content: center;
  border-radius: var(--radius);
  box-shadow: 0 15px 42px rgba(7, 28, 46, .16);
  font-weight: 900;
  text-align: center;
}

.center-node {
  inset: 50% auto auto 50%;
  width: 150px;
  height: 86px;
  background: var(--blue-dark);
  color: #fff;
  transform: translate(-50%, -50%);
}

.node {
  min-width: 82px;
  height: 44px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
}

.node-a {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.node-b {
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

.node-c {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

.node-d {
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
}

.section-head.light p {
  color: rgba(255, 255, 255, .68);
}

.trust-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, #f4f8fb 48%, #f4f8fb 100%);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 42px max(24px, calc((100% - 1180px) / 2));
  border: 1px solid rgba(221, 229, 236, .85);
  border-radius: var(--radius);
  pointer-events: none;
}

.trust-copy,
.trust-metrics {
  position: relative;
  z-index: 1;
}

.trust-copy {
  max-width: 560px;
}

.video-section {
  background: var(--soft);
}

.feature-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #061522;
  box-shadow: 0 18px 44px rgba(7, 28, 46, .12);
  max-width: 920px;
  aspect-ratio: 16 / 9;
}

.feature-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(7, 28, 46, .1);
}

.metric {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(244, 248, 251, .96));
}

.metric svg {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 138, 61, .12);
  color: var(--orange);
}

.metric strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 76px max(24px, calc((100% - 1080px) / 2));
  background: var(--blue-dark);
  color: #fff;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 138, 61, .22), transparent 28%),
    linear-gradient(115deg, #073a5f 0%, #081928 100%);
  opacity: 1;
}

.cta-copy,
.lead-card {
  position: relative;
  z-index: 1;
}

.cta-copy p {
  color: rgba(255, 255, 255, .76);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy .button {
  margin-top: 8px;
}

.lead-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
}

.hero-form {
  width: 100%;
  align-self: center;
  background: rgba(255, 255, 255, .98);
}

.form-head h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.form-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.form-head p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.lead-card form,
.lead-card div,
.lead-card input,
.lead-card select,
.lead-card textarea,
.lead-card button,
.lead-card iframe {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.lead-card textarea {
  min-height: 96px;
  padding-top: 12px;
}

.lead-card input:focus,
.lead-card select:focus,
.lead-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 78, 132, .12);
}

.lead-card button,
.lead-card input[type="submit"] {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 15px 36px rgba(255, 138, 61, .26);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100% - 1160px) / 2));
  background: #061522;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

.footer div {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

@media (max-width: 1060px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .nav.open {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(7, 58, 95, .12);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.open a {
    padding: 16px;
    color: var(--ink);
  }

  .hero-shell,
  .hub-panel,
  .trust-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .trust-section {
    background:
      linear-gradient(180deg, #fff 0%, #fff 46%, #f4f8fb 46%, #f4f8fb 100%);
  }

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

  .hub-layout {
    grid-template-columns: 1fr;
  }

  .hub-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 126px;
  }

  .hero-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.45rem);
    line-height: 1.04;
  }

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

  .hero-proof,
  .problem-grid,
  .platform-row,
  .kanban,
  .trust-metrics,
  .hub-tabs {
    grid-template-columns: 1fr;
  }

  .hub-tabs {
    gap: 8px;
  }

  .hub-tab {
    height: 58px;
  }

  .device-body {
    min-height: auto;
  }

  .app-side,
  .floating-metric {
    display: none;
  }

  .delivery-board,
  .hub-copy {
    padding: 20px;
  }

  .board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lane {
    min-height: auto;
  }

  .section,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-head h2,
  .hub-intro h2,
  .trust-copy h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .footer {
    flex-direction: column;
  }
}

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

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

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