:root {
  --navy-950: #070d1c;
  --navy-900: #0b1224;
  --navy-850: #101a32;
  --navy-800: #16213c;
  --slate-950: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --blue: #2563eb;
  --blue-500: #3b82f6;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --green: #10b981;
  --orange: #f97316;
  --white: #fff;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 35px rgb(15 23 42 / 8%);
  --shadow: 0 24px 80px rgb(15 23 42 / 14%);
  --container: 1180px;
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--slate-950);
  line-height: 1.55;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button,
input,
select,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--slate-950);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgb(37 99 235 / 28%);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-name {
  color: var(--white);
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: #60a5fa;
}

.desktop-nav {
  display: flex;
  margin-inline: auto;
  align-items: center;
  gap: clamp(12px, 1.55vw, 26px);
  white-space: nowrap;
}

.desktop-nav a,
.login-link {
  color: #cbd5e1;
  font-size: clamp(0.73rem, 0.76vw, 0.87rem);
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--white);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.15;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-small {
  min-height: 41px;
  padding: 0 17px;
  font-size: 0.82rem;
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
}

.button-large svg {
  width: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 12px 30px rgb(37 99 235 / 25%);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 17px 38px rgb(37 99 235 / 34%);
}

.button-ghost {
  border-color: rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 6%);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgb(255 255 255 / 32%);
  background: rgb(255 255 255 / 10%);
}

.button-outline {
  border-color: var(--slate-300);
  background: var(--white);
  color: var(--slate-800);
}

.button-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue);
}

.button-white {
  background: var(--white);
  color: var(--slate-950);
  box-shadow: 0 14px 35px rgb(0 0 0 / 18%);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 785px;
  overflow: hidden;
  padding: 158px 0 98px;
  background:
    radial-gradient(circle at 47% 4%, rgb(59 130 246 / 12%), transparent 32%),
    linear-gradient(145deg, #080e1e 0%, #0b1328 56%, #101b35 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
  background-size: 62px 62px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  left: -180px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgb(37 99 235 / 20%), transparent 68%);
}

.hero-glow-two {
  right: -170px;
  bottom: -150px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgb(79 70 229 / 18%), transparent 69%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: 68px;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-500);
}

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

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero h1 em {
  display: block;
  background: linear-gradient(105deg, #60a5fa, #818cf8 55%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: #b8c4d8;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.hero-trust {
  display: flex;
  margin: 27px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 22px;
  color: #a8b5ca;
  font-size: 0.78rem;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgb(96 165 250 / 28%);
  border-radius: 999px;
  background: rgb(37 99 235 / 12%);
  color: #60a5fa;
  font-size: 0.65rem;
}

.product-window {
  width: 690px;
  max-width: none;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 20px;
  background: #f7f9fc;
  box-shadow:
    0 42px 95px rgb(0 0 0 / 39%),
    0 0 0 1px rgb(255 255 255 / 3%) inset;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center left;
}

/* Hero com capturas reais do produto: o visitante reconhece o aplicativo
   imediatamente, sem confundir uma ilustração com uma tela disponível. */
.real-product-preview {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 30px 28px 22px;
  background:
    radial-gradient(circle at 18% 8%, rgb(96 165 250 / 16%), transparent 32%),
    linear-gradient(145deg, #f8fbff 0%, #e8eef8 100%);
}

.real-preview-heading span,
.real-preview-heading strong {
  display: block;
}

.real-preview-heading span {
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.real-preview-heading strong {
  margin-top: 5px;
  color: #0f172a;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.real-preview-screens {
  position: relative;
  height: 344px;
  margin-top: 24px;
}

.real-screen {
  position: absolute;
  bottom: 0;
  width: 170px;
  margin: 0;
  overflow: hidden;
  border: 7px solid #101a32;
  border-radius: 24px;
  background: #101a32;
  box-shadow: 0 24px 40px rgb(15 23 42 / 24%);
}

.real-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 560 / 1211;
  object-fit: cover;
  object-position: top;
}

.real-screen figcaption {
  padding: 8px 5px 9px;
  background: #101a32;
  color: #dbeafe;
  font-size: 0.58rem;
  font-weight: 750;
  text-align: center;
}

.real-screen-back {
  left: 38px;
  transform: rotate(-9deg) scale(0.88);
}

.real-screen-main {
  left: 50%;
  z-index: 2;
  width: 205px;
  transform: translateX(-50%);
}

.real-screen-front {
  right: 38px;
  transform: rotate(9deg) scale(0.88);
}

.real-preview-note {
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  margin: 0;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 650;
  text-align: center;
}

.real-preview-note span {
  color: #22c55e;
  font-size: 0.8rem;
}

.dashboard-shell {
  display: none;
}

.window-topbar {
  display: grid;
  height: 43px;
  align-items: center;
  border-bottom: 1px solid #dce3ee;
  background: #fff;
  grid-template-columns: 90px 1fr 60px;
}

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

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.window-dots i:first-child {
  background: #fb7185;
}

.window-dots i:nth-child(2) {
  background: #fbbf24;
}

.window-dots i:last-child {
  background: #34d399;
}

.window-address {
  justify-self: center;
  width: 210px;
  padding: 5px 12px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 0.58rem;
  text-align: center;
}

.window-address span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.window-avatar {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  font-size: 0.5rem;
  font-weight: 700;
}

.dashboard-shell {
  display: none;
  min-height: 470px;
  background: #f6f8fc;
  grid-template-columns: 52px 1fr;
}

.mock-sidebar {
  display: flex;
  align-items: center;
  border-right: 1px solid #e5eaf2;
  background: #fff;
  flex-direction: column;
  gap: 21px;
}

.mock-logo {
  display: grid;
  width: 27px;
  height: 27px;
  margin: 14px 0 18px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.mock-logo img {
  width: 100%;
}

.mock-sidebar > i {
  width: 15px;
  height: 15px;
  border: 3px solid #cbd5e1;
  border-radius: 4px;
}

.mock-sidebar > i:nth-last-child(2) {
  border-radius: 50%;
}

.mock-sidebar > i.active {
  border-color: #2563eb;
  box-shadow: 0 0 0 7px #eff6ff;
}

.mock-content {
  padding: 22px 24px 25px;
  color: #0f172a;
}

.mock-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mock-heading span {
  display: block;
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 0.55rem;
}

.mock-heading strong {
  font-size: 0.84rem;
}

.mock-heading > b {
  display: flex;
  padding: 5px 8px;
  align-items: center;
  gap: 5px;
  border: 1px solid #d1fae5;
  border-radius: 6px;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.48rem;
}

.mock-heading > b i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgb(16 185 129 / 15%);
}

.mock-stats {
  display: grid;
  margin-top: 17px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-stats article {
  padding: 12px;
  border: 1px solid #e4e9f1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 14px rgb(15 23 42 / 3%);
}

.mock-stats span,
.mock-stats small {
  display: block;
  color: #94a3b8;
  font-size: 0.5rem;
}

.mock-stats strong {
  display: inline-block;
  margin: 5px 5px 0 0;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.mock-stats small {
  display: inline;
}

.mock-main-grid {
  display: grid;
  margin-top: 11px;
  grid-template-columns: 1.55fr 0.8fr;
  gap: 10px;
}

.map-card,
.quota-card {
  overflow: hidden;
  border: 1px solid #e4e9f1;
  border-radius: 11px;
  background: #fff;
}

.card-title {
  display: flex;
  padding: 12px 13px 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.58rem;
}

.card-title span {
  color: #94a3b8;
  font-size: 0.48rem;
}

.territory-map {
  width: 100%;
  height: 230px;
  background: #f4f7fb;
}

.territory-map .road {
  fill: none;
  stroke: #dce4ef;
  stroke-width: 8;
}

.territory-map .road.thin {
  stroke-width: 5;
}

.territory-map .sector {
  stroke: #fff;
  stroke-width: 4;
}

.territory-map .one {
  fill: #dbeafe;
}

.territory-map .two {
  fill: #e0e7ff;
}

.territory-map .three {
  fill: #dcfce7;
}

.territory-map .four {
  fill: #dbeafe;
}

.territory-map .pin circle:first-child {
  fill: #2563eb;
}

.territory-map .pin circle:last-child {
  fill: #fff;
}

.territory-map .pin.light circle:first-child {
  fill: #10b981;
}

.territory-map .current-location circle:first-child {
  fill: rgb(37 99 235 / 18%);
  stroke: rgb(37 99 235 / 28%);
}

.territory-map .current-location circle:last-child {
  fill: #2563eb;
  stroke: #fff;
  stroke-width: 3;
}

.map-legend {
  display: flex;
  padding: 7px 13px 10px;
  gap: 13px;
  color: #64748b;
  font-size: 0.45rem;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

.map-legend .done {
  background: #10b981;
}

.quota-card {
  padding-bottom: 11px;
}

.quota-ring {
  display: grid;
  width: 91px;
  height: 91px;
  margin: 8px auto 14px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#2563eb 0 71%, #e7edf5 71% 100%);
}

.quota-ring::before {
  position: absolute;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #fff;
  content: '';
}

.quota-ring span {
  position: relative;
  z-index: 1;
  color: #94a3b8;
  font-size: 0.43rem;
  text-align: center;
}

.quota-ring strong {
  display: block;
  color: #0f172a;
  font-size: 1.12rem;
  line-height: 1;
}

.quota-row {
  display: grid;
  padding: 5px 13px;
  align-items: center;
  color: #64748b;
  font-size: 0.47rem;
  grid-template-columns: 1fr 18px;
}

.quota-row b {
  color: #334155;
  text-align: right;
}

.quota-row > i {
  grid-column: 1 / -1;
  height: 3px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7edf5;
}

.quota-row em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #3b82f6;
}

.field-tip {
  display: flex;
  margin: 8px 11px 0;
  padding: 8px;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  background: #eff6ff;
}

.field-tip > span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 6px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 0.65rem;
}

.field-tip p,
.field-tip strong {
  margin: 0;
}

.field-tip strong {
  display: block;
  color: #1e3a8a;
  font-size: 0.44rem;
}

.field-tip p {
  color: #64748b;
  font-size: 0.4rem;
}

.proof-strip {
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}

.proof-grid {
  display: grid;
  padding-block: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  margin: 0;
  padding: 3px 28px;
  border-right: 1px solid var(--slate-200);
}

.proof-grid p:first-child {
  padding-left: 0;
}

.proof-grid p:last-child {
  border: 0;
}

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

.proof-grid strong {
  color: var(--slate-800);
  font-size: 0.86rem;
}

.proof-grid span {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 0.7rem;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--slate-50);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 54px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.field-copy h2,
.security-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.section-heading > p:last-child,
.section-lead {
  margin: 19px auto 0;
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.72;
}

.field-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 50%, rgb(37 99 235 / 14%), transparent 32%),
    linear-gradient(135deg, #0b1224, #111d38);
  color: var(--white);
}

.field-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
}

.phone-stage {
  position: relative;
  min-height: 640px;
}

.phone-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(96 165 250 / 16%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 530px;
  height: 530px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-color: rgb(96 165 250 / 10%);
}

.phone {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 292px;
  height: 594px;
  padding: 9px;
  border: 2px solid #3b4963;
  border-radius: 42px;
  background: #080d18;
  box-shadow: 0 35px 75px rgb(0 0 0 / 45%);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 50%;
  width: 88px;
  height: 22px;
  border-radius: 99px;
  background: #070b13;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: #f7f9fc;
  color: #0f172a;
}

.real-field-screen {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  object-fit: cover;
  object-position: top;
}

.phone > .phone-screen {
  display: none;
}

.mobile-top {
  display: flex;
  height: 64px;
  padding: 22px 15px 8px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e5eaf1;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.mobile-top img {
  width: 22px;
  border-radius: 6px;
}

.mobile-top i {
  margin-left: auto;
  color: #64748b;
  font-size: 0.56rem;
  font-style: normal;
}

.mobile-sector {
  margin: 13px;
  padding: 15px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1d4ed8, #4f46e5);
  color: #fff;
  box-shadow: 0 12px 25px rgb(37 99 235 / 20%);
}

.mobile-sector small {
  display: block;
  color: #bfdbfe;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-sector strong {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
}

.mobile-sector span {
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 5px;
  color: #dbeafe;
  font-size: 0.52rem;
}

.mobile-sector span i {
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 14%);
}

.mobile-progress {
  margin: 5px 15px 14px;
}

.mobile-progress span {
  display: flex;
  align-items: baseline;
  color: #64748b;
  font-size: 0.56rem;
}

.mobile-progress b {
  margin-right: 3px;
  color: #0f172a;
  font-size: 0.86rem;
}

.mobile-progress > i {
  display: block;
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #e2e8f0;
}

.mobile-progress em {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: #2563eb;
}

.mobile-card {
  margin: 0 13px;
  padding: 17px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 25px rgb(15 23 42 / 6%);
}

.mobile-card small {
  display: block;
  color: #2563eb;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mobile-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
}

.mobile-card p {
  margin: 3px 0 12px;
  color: #64748b;
  font-size: 0.55rem;
}

.mobile-card button {
  display: flex;
  width: 100%;
  height: 38px;
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 9px;
  background: #2563eb;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
}

.mobile-queue {
  display: flex;
  margin: 12px 14px;
  padding: 11px;
  align-items: center;
  gap: 9px;
  border: 1px solid #d1fae5;
  border-radius: 11px;
  background: #ecfdf5;
}

.mobile-queue > i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
}

.mobile-queue p,
.mobile-queue strong,
.mobile-queue span {
  display: block;
  margin: 0;
}

.mobile-queue strong {
  color: #065f46;
  font-size: 0.54rem;
}

.mobile-queue span {
  color: #6b7280;
  font-size: 0.45rem;
}

.floating-status {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 210px;
  padding: 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 14px;
  background: rgb(20 31 56 / 91%);
  box-shadow: 0 20px 45px rgb(0 0 0 / 28%);
  backdrop-filter: blur(15px);
}

.floating-status > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgb(59 130 246 / 15%);
  color: #60a5fa;
  font-weight: 700;
}

.floating-status p,
.floating-status strong,
.floating-status small {
  display: block;
  margin: 0;
}

.floating-status strong {
  color: #fff;
  font-size: 0.7rem;
}

.floating-status small {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 0.55rem;
}

.status-one {
  top: 135px;
  left: 2%;
}

.status-two {
  right: 0;
  bottom: 130px;
}

.field-copy h2,
.security-copy h2,
.contact-copy h2 {
  color: #fff;
}

.field-copy .section-lead {
  margin-inline: 0;
  color: #aebbd0;
}

.check-list {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  padding: 18px 0;
  align-items: start;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  grid-template-columns: 44px 1fr;
  gap: 13px;
}

.check-list li > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgb(96 165 250 / 23%);
  border-radius: 10px;
  background: rgb(37 99 235 / 11%);
  color: #60a5fa;
  font-size: 0.64rem;
  font-weight: 700;
}

.check-list p,
.check-list strong,
.check-list small {
  display: block;
  margin: 0;
}

.check-list strong {
  font-size: 0.93rem;
}

.check-list small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.55;
}

.field-links {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 22px;
}

.field-links .button {
  padding-inline: 20px;
}

.field-links > a:last-child {
  color: #bfdbfe;
  font-size: 0.75rem;
  font-weight: 650;
}

.digital-disk-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgb(59 130 246 / 14%), transparent 30%),
    linear-gradient(145deg, #f8fbff, #eef4ff);
}

.digital-disk-section::before {
  position: absolute;
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(37 99 235 / 10%);
  border-radius: 50%;
  content: '';
}

.digital-disk-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
}

.digital-disk-copy h2 {
  max-width: 610px;
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.digital-disk-copy .section-lead {
  max-width: 610px;
  margin-inline: 0;
}

.digital-disk-steps {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.digital-disk-steps li {
  display: grid;
  padding: 14px 16px;
  align-items: start;
  border: 1px solid rgb(37 99 235 / 11%);
  border-radius: 14px;
  background: rgb(255 255 255 / 72%);
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.digital-disk-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.64rem;
  font-weight: 700;
}

.digital-disk-steps p,
.digital-disk-steps strong,
.digital-disk-steps small {
  display: block;
  margin: 0;
}

.digital-disk-steps strong {
  color: var(--slate-800);
  font-size: 0.87rem;
  font-weight: 650;
}

.digital-disk-steps small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 0.72rem;
  line-height: 1.55;
}

.digital-disk-highlight {
  margin: 20px 0 0;
  padding-left: 15px;
  border-left: 3px solid #2563eb;
  color: var(--slate-600);
  font-size: 0.78rem;
}

.digital-disk-highlight strong {
  color: var(--slate-950);
  font-weight: 650;
}

.digital-disk-demo {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  overflow: hidden;
  padding: 34px 38px 30px;
  border: 1px solid rgb(96 165 250 / 18%);
  border-radius: 30px;
  background: linear-gradient(145deg, #0b1224, #142544);
  box-shadow: 0 35px 80px rgb(15 23 42 / 23%);
  color: #fff;
}

.digital-disk-demo::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(59 130 246 / 28%), transparent 68%);
  content: '';
}

.digital-disk-demo-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.digital-disk-demo-heading span {
  color: #93c5fd;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.digital-disk-demo-heading strong {
  color: #dbeafe;
  font-size: 0.75rem;
  font-weight: 600;
}

.digital-disk {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 28px auto 24px;
  border: 1px solid rgb(147 197 253 / 24%);
  border-radius: 50%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgb(37 99 235 / 18%) 0 28%, transparent 29%),
    radial-gradient(circle, #1c3158, #0e1a31 68%);
  box-shadow:
    0 24px 55px rgb(0 0 0 / 30%),
    0 0 0 16px rgb(59 130 246 / 4%);
}

.digital-disk::before,
.digital-disk::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(147 197 253 / 11%);
  border-radius: 50%;
  content: '';
}

.digital-disk::after {
  inset: 28%;
}

.digital-disk-center,
.digital-disk-option {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.digital-disk-center {
  top: 50%;
  left: 50%;
  width: 27%;
  border: 1px solid rgb(147 197 253 / 20%);
  border-radius: 50%;
  aspect-ratio: 1;
  background: rgb(7 13 28 / 78%);
  color: #93c5fd;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  transform: translate(-50%, -50%);
}

.digital-disk-option {
  width: 32%;
  min-height: 54px;
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 15px;
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 10px 22px rgb(0 0 0 / 18%);
  color: #e2e8f0;
  font-size: clamp(0.68rem, 1.3vw, 0.8rem);
  font-weight: 600;
}

.digital-disk-option.is-selected {
  border-color: #93c5fd;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 12px 28px rgb(37 99 235 / 32%);
  color: #fff;
}

.digital-disk-option.option-one {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.digital-disk-option.option-two {
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

.digital-disk-option.option-three {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.digital-disk-option.option-four {
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}

.digital-disk-confirmation {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px 15px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 13px;
  background: rgb(255 255 255 / 7%);
  grid-template-columns: 30px 1fr;
}

.digital-disk-confirmation > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  grid-row: 1 / 3;
}

.digital-disk-confirmation strong,
.digital-disk-confirmation small {
  display: block;
}

.digital-disk-confirmation strong {
  font-size: 0.73rem;
  font-weight: 650;
}

.digital-disk-confirmation small {
  color: #94a3b8;
  font-size: 0.59rem;
}

.business-model-section {
  background: #f8fafc;
}

.business-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.business-model-grid article {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.model-number {
  position: absolute;
  top: 21px;
  right: 24px;
  color: #dbe4ef;
  font-size: 1.3rem;
  font-weight: 700;
}

.model-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: 700;
}

.business-model-grid h3 {
  margin: 20px 0 7px;
  font-size: 1.08rem;
}

.business-model-grid p {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.63;
}

.simulator {
  margin-top: 27px;
  padding: 36px;
  border: 1px solid #dfe6f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.simulator-heading {
  display: flex;
  margin-bottom: 29px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.simulator-heading span,
.comparison-title span {
  color: #2563eb;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.simulator-heading h3,
.comparison-title h3 {
  margin: 4px 0 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.simulator-heading > p,
.comparison-title > p {
  max-width: 390px;
  margin: 0;
  color: #64748b;
  font-size: 0.77rem;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.simulator-controls {
  padding: 26px;
  border: 1px solid #e5eaf2;
  border-radius: 17px;
  background: #f8fafc;
}

.simulator-controls > label {
  display: flex;
  margin: 3px 0 11px;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 650;
}

.simulator-controls > label:not(:first-child) {
  margin-top: 27px;
}

.simulator-controls output {
  min-width: 54px;
  padding: 4px 8px;
  border: 1px solid #dbe5f1;
  border-radius: 7px;
  background: #fff;
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.simulator-controls input[type='range'] {
  width: 100%;
  height: 5px;
  border-radius: 99px;
  accent-color: #2563eb;
  cursor: pointer;
}

.range-labels {
  display: flex;
  margin-top: 5px;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.57rem;
}

.simulator-controls fieldset {
  display: flex;
  margin: 25px 0 0;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 9px;
}

.simulator-controls legend {
  width: 100%;
  margin-bottom: 10px;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 650;
}

.toggle-option {
  display: flex;
  padding: 8px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid #dce4ef;
  border-radius: 9px;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 650;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
}

.toggle-option > span {
  width: 15px;
  height: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
}

.toggle-option:has(input:checked) {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.toggle-option input:checked + span {
  display: grid;
  place-items: center;
  border-color: #2563eb;
  background: #2563eb;
}

.toggle-option input:checked + span::after {
  color: #fff;
  content: '✓';
  font-size: 0.58rem;
}

.simulator-result {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 17px;
  background: linear-gradient(145deg, #0f1a32, #152545);
  color: #fff;
}

.simulator-result::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(59 130 246 / 25%), transparent 68%);
  content: '';
}

.result-kicker {
  color: #93c5fd;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simulator-result h4 {
  margin: 3px 0 5px;
  font-size: 2.15rem;
  letter-spacing: -0.05em;
}

.simulator-result > p {
  margin: 0;
  color: #aebbd0;
  font-size: 0.75rem;
}

.result-price {
  margin: 22px 0 14px;
  padding: 16px 0;
  border-block: 1px solid rgb(255 255 255 / 10%);
}

.result-price small,
.result-price strong {
  display: block;
}

.result-price small {
  color: #94a3b8;
  font-size: 0.6rem;
}

.result-price strong {
  margin-top: 2px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.simulator-result ul {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0;
  color: #cbd5e1;
  font-size: 0.66rem;
  list-style: none;
}

.simulator-result li {
  margin: 7px 0;
}

.simulator-result li::before {
  margin-right: 7px;
  color: #60a5fa;
  content: '✓';
  font-weight: 700;
}

.simulator-result .button {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: 14px;
  font-size: 0.75rem;
}

.estimate-note {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: #7f8ca4;
  font-size: 0.5rem;
  text-align: center;
}

.pricing-section {
  background: radial-gradient(circle at 50% 0, rgb(37 99 235 / 11%), transparent 28%), #0b1224;
  color: #fff;
}

.pricing-section .simulator {
  color: var(--slate-950);
}

.pricing-heading h2 {
  color: #fff;
}

.pricing-heading > p:last-child {
  color: #9eacc3;
}

.pricing-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.pricing-card {
  position: relative;
  padding: 31px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 21px;
  background: #111b31;
  box-shadow: 0 22px 45px rgb(0 0 0 / 16%);
}

.pricing-card.featured {
  margin-top: -13px;
  padding-top: 44px;
  border-color: rgb(96 165 250 / 58%);
  background: linear-gradient(160deg, #172645, #111b31 58%);
  box-shadow:
    0 28px 65px rgb(0 0 0 / 25%),
    0 0 0 1px rgb(59 130 246 / 18%) inset;
}

.recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 17px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.plan-medal {
  display: block;
  width: 43px;
  height: 43px;
  border: 5px solid #9a6845;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0c09a, #a95f31);
  box-shadow: 0 6px 16px rgb(0 0 0 / 20%);
}

.plan-medal.prata {
  border-color: #9ca3af;
  background: radial-gradient(circle at 35% 30%, #fff, #94a3b8);
}

.plan-medal.ouro {
  border-color: #c98c16;
  background: radial-gradient(circle at 35% 30%, #fff1a8, #e9a90e);
}

.plan-top small {
  display: block;
  color: #64748b;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.plan-top h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.plan-description {
  min-height: 68px;
  margin: 18px 0 0;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.55;
}

.plan-price {
  margin-top: 20px;
}

.plan-price > span {
  display: block;
  color: #64748b;
  font-size: 0.58rem;
}

.plan-price strong {
  margin-right: 4px;
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.plan-price small {
  color: #94a3b8;
  font-size: 0.65rem;
}

.plan-capacity {
  display: grid;
  margin: 18px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.plan-capacity p {
  margin: 0;
  padding: 11px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 10px;
  background: rgb(255 255 255 / 3%);
}

.plan-capacity p > span {
  margin-right: 5px;
  color: #60a5fa;
  font-size: 0.7rem;
}

.plan-capacity strong {
  font-size: 0.79rem;
}

.plan-capacity small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 0.5rem;
}

.pricing-card > .button {
  width: 100%;
  padding-inline: 15px;
  font-size: 0.75rem;
}

.pricing-card .button-outline {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 4%);
  color: #fff;
}

.plan-divider {
  height: 1px;
  margin: 25px 0 20px;
  background: rgb(255 255 255 / 9%);
}

.feature-title {
  font-size: 0.7rem;
}

.plan-features {
  margin: 14px 0 0;
  padding: 0;
  color: #cbd5e1;
  font-size: 0.67rem;
  list-style: none;
}

.plan-features li {
  display: grid;
  margin: 10px 0;
  align-items: start;
  grid-template-columns: 20px 1fr;
}

.plan-features li > span {
  color: #60a5fa;
  font-weight: 700;
}

.plan-features .not-included {
  color: #56637a;
}

.plan-features .not-included > span {
  color: #475569;
}

.additional-note {
  margin: 18px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: rgb(255 255 255 / 3%);
  color: #6e7b92;
  font-size: 0.54rem;
  line-height: 1.5;
}

.comparison-wrap {
  margin-top: 31px;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
  background: rgb(255 255 255 / 3%);
}

.comparison-title {
  display: flex;
  margin-bottom: 23px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.comparison-title h3 {
  color: #fff;
}

.comparison-title > p {
  color: #718097;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison-wrap table {
  width: 100%;
  min-width: 670px;
  border-collapse: collapse;
  font-size: 0.7rem;
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 13px 16px;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  text-align: center;
}

.comparison-wrap th:first-child,
.comparison-wrap td:first-child {
  width: 46%;
  color: #cbd5e1;
  text-align: left;
}

.comparison-wrap th {
  color: #94a3b8;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-wrap .yes {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgb(37 99 235 / 17%);
  color: #60a5fa;
  font-weight: 700;
}

.comparison-wrap .no {
  color: #475569;
}

.workflow-section {
  background: #fff;
}

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

.workflow::before {
  position: absolute;
  z-index: 0;
  top: 39px;
  right: 11%;
  left: 11%;
  border-top: 1px dashed #cbd5e1;
  content: '';
}

.workflow li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow li > span {
  position: absolute;
  top: -7px;
  left: calc(50% + 24px);
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  box-shadow: 0 5px 12px rgb(37 99 235 / 25%);
}

.workflow-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid #dbe5f1;
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: 0 12px 25px rgb(15 23 42 / 5%);
  color: #2563eb;
  font-size: 1.65rem;
  font-weight: 700;
}

.workflow h3 {
  margin: 18px 0 6px;
  font-size: 1rem;
}

.workflow p {
  max-width: 220px;
  margin: 0 auto;
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.55;
}

.security-section {
  overflow: hidden;
  background: linear-gradient(135deg, #0d162b, #111e38);
  color: #fff;
}

.security-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 85px;
}

.security-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: #9facc2;
}

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

.security-points p {
  display: grid;
  margin: 0;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 12px;
  background: rgb(255 255 255 / 3%);
  grid-template-columns: 27px 1fr;
}

.security-points p > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgb(16 185 129 / 14%);
  color: #34d399;
  font-size: 0.55rem;
}

.security-points strong,
.security-points small {
  display: block;
}

.security-points strong {
  font-size: 0.75rem;
}

.security-points small {
  margin-top: 3px;
  color: #78869d;
  font-size: 0.58rem;
  grid-column: 2;
}

.security-copy > a {
  display: inline-block;
  margin-top: 25px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 650;
}

.security-visual {
  position: relative;
  min-height: 450px;
}

.shield {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgb(96 165 250 / 24%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(37 99 235 / 26%), rgb(37 99 235 / 5%) 70%);
  box-shadow: 0 0 80px rgb(37 99 235 / 18%);
  transform: translate(-50%, -50%);
}

.shield svg {
  width: 74px;
  fill: rgb(37 99 235 / 22%);
  stroke: #60a5fa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.security-card {
  position: absolute;
  z-index: 3;
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 13px;
  background: rgb(21 34 61 / 88%);
  box-shadow: 0 20px 45px rgb(0 0 0 / 22%);
  backdrop-filter: blur(10px);
}

.security-card > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgb(16 185 129 / 12%);
  color: #34d399;
  font-weight: 700;
}

.security-card p,
.security-card strong,
.security-card small {
  display: block;
  margin: 0;
}

.security-card strong {
  font-size: 0.69rem;
}

.security-card small {
  color: #7f8da4;
  font-size: 0.55rem;
}

.security-card-one {
  top: 69px;
  left: 0;
}

.security-card-two {
  right: -2%;
  bottom: 76px;
}

.security-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 370px;
  border: 1px dashed rgb(96 165 250 / 13%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.security-lines::after {
  position: absolute;
  inset: 48px;
  border: 1px solid rgb(96 165 250 / 8%);
  border-radius: 50%;
  content: '';
}

.faq-section {
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1fr;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading > p:not(.eyebrow) {
  margin: 17px 0 25px;
  color: #64748b;
  font-size: 0.86rem;
}

.faq-heading .button {
  padding-inline: 18px;
  font-size: 0.75rem;
}

.faq-list details {
  border-bottom: 1px solid #dfe6ef;
}

.faq-list summary {
  display: flex;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  color: #1e293b;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: 15px;
  place-items: center;
  flex: none;
  border: 1px solid #dbe4ef;
  border-radius: 50%;
  background: #fff;
  color: #2563eb;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 48px 21px 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.67;
}

.professionals-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgb(37 99 235 / 9%), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.professionals-section::before {
  position: absolute;
  top: 34px;
  right: max(20px, calc((100vw - var(--container)) / 2));
  width: 190px;
  height: 190px;
  border: 1px dashed rgb(37 99 235 / 15%);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.professionals-intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 56px;
}

.professionals-intro .section-heading {
  margin-bottom: 42px;
}

.professionals-intro h2 {
  font-weight: 700;
}

.professionals-note {
  margin: 0 0 48px;
  padding: 20px 22px;
  border: 1px solid #dbe7f7;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 84%);
  color: var(--slate-600);
  font-size: 0.82rem;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.professionals-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 22px;
}

.professional-card {
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 17px 46px rgb(15 23 42 / 7%);
  container: professional-card / inline-size;
}

.professional-card-layout {
  display: grid;
  min-height: 100%;
}

.professional-card-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e6eef9, #dbeafe);
}

.professional-card-body {
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
}

.professional-card-header {
  min-width: 0;
}

.professional-card-media .professional-photo,
.professional-card-media .professional-photo-fallback,
.professional-dialog-media .professional-photo,
.professional-dialog-media .professional-photo-fallback {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #e7effc;
  box-shadow: none;
}

.professional-photo {
  object-fit: cover;
  object-position: center top;
}

.professional-photo-fallback {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: clamp(2.4rem, 9cqi, 5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.professional-kicker {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.professional-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--slate-950);
  font-size: clamp(1.35rem, 5cqi, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.professional-location {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 0.74rem;
}

.professional-recommendation-badges {
  display: flex;
  margin: 9px 0 0;
  flex-wrap: wrap;
  gap: 6px;
}

.professional-recommendation-badge,
.professional-reciprocal-badge {
  display: inline-flex;
  padding: 5px 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
}

.professional-reciprocal-badge {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.professional-summary {
  display: -webkit-box;
  margin: 22px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.84rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.professional-meta {
  display: grid;
  margin: 22px 0 0;
  gap: 14px;
}

.professional-meta div {
  min-width: 0;
}

.professional-meta dt {
  margin-bottom: 4px;
  color: var(--slate-800);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.professional-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.55;
}

.professional-specialties {
  display: flex;
  margin: 19px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.professional-specialties li {
  padding: 6px 9px;
  border: 1px solid #dce6f3;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--slate-700);
  font-size: 0.66rem;
  line-height: 1.2;
}

.professional-card .button {
  width: 100%;
  margin-top: 25px;
  padding: 0 18px;
  font-size: 0.76rem;
  font-weight: 700;
}

@container professional-card (min-width: 760px) {
  .professional-card-layout {
    grid-template-columns: minmax(280px, 32%) minmax(0, 1fr);
  }

  .professional-card-media {
    min-height: 520px;
    aspect-ratio: auto;
  }

  .professional-card-media .professional-photo,
  .professional-card-media .professional-photo-fallback {
    position: absolute;
    inset: 0;
  }

  .professional-card-body {
    padding: clamp(32px, 4cqi, 48px);
    justify-content: center;
  }

  .professional-card .professional-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professional-card .button {
    width: fit-content;
    min-width: 210px;
  }
}

.professionals-status,
.professionals-empty {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #dfe7f1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--slate-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.professionals-status span {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 3px solid #dbeafe;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: professionals-spin 0.8s linear infinite;
}

.professionals-status p,
.professionals-empty {
  font-size: 0.82rem;
}

.professionals-status p {
  margin: 0;
}

.professionals-status.is-error span {
  display: none;
}

.professional-contact-empty {
  margin: 27px 0 0;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
  color: var(--slate-500);
  font-size: 0.78rem;
}

@keyframes professionals-spin {
  to {
    transform: rotate(360deg);
  }
}

.professional-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: min(820px, calc(100dvh - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--slate-950);
  box-shadow: 0 32px 110px rgb(7 13 28 / 45%);
}

.professional-dialog::backdrop {
  background: rgb(7 13 28 / 72%);
  backdrop-filter: blur(5px);
}

.professional-dialog-shell {
  position: relative;
  max-height: min(820px, calc(100dvh - 32px));
  padding: 0;
  overflow-y: auto;
}

.professional-dialog-close {
  position: absolute;
  z-index: 1;
  top: 17px;
  right: 17px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #dce5ef;
  border-radius: 50%;
  background: #fff;
  color: var(--slate-700);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.professional-dialog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 32%) minmax(0, 1fr);
  min-height: 540px;
}

.professional-dialog-media {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #e6eef9, #dbeafe);
}

.professional-dialog-body {
  min-width: 0;
  padding: 44px 42px 38px;
}

.professional-dialog-profile {
  padding-right: 50px;
}

.professional-dialog h3 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.professional-dialog-summary {
  margin: 26px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.professional-testimonial {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #eff6ff;
  color: var(--slate-700);
}

.professional-testimonial p {
  margin: 0;
  line-height: 1.65;
}

.professional-testimonial footer {
  margin-top: 10px;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.professional-dialog .professional-meta {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.professional-contact-list {
  display: flex;
  margin: 27px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 10px;
}

.professional-contact-list a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfdbea;
  border-radius: 11px;
  color: var(--slate-800);
  font-size: 0.76rem;
  font-weight: 700;
}

.professional-contact-list a:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 560px) {
  .professional-card-body {
    padding: 24px;
  }

  .professionals-note {
    margin-bottom: 34px;
  }

  .professional-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .professional-dialog-shell {
    max-height: calc(100dvh - 20px);
  }

  .professional-dialog-layout {
    display: block;
    min-height: 0;
  }

  .professional-dialog-media {
    aspect-ratio: 4 / 3;
  }

  .professional-dialog-body {
    padding: 30px 20px 24px;
  }

  .professional-dialog-profile {
    padding-right: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .professionals-status span {
    border-color: var(--blue);
    animation: none;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: #0b1224;
  color: #fff;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 55px 55px;
  content: '';
  mask-image: linear-gradient(90deg, transparent, black, transparent);
}

.contact-glow {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(37 99 235 / 18%), transparent 68%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #9aa8bd;
  line-height: 1.68;
}

.contact-copy > ul {
  margin: 26px 0 0;
  padding: 0;
  color: #cbd5e1;
  font-size: 0.8rem;
  list-style: none;
}

.contact-copy > ul li {
  margin: 10px 0;
}

.contact-copy > ul span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  background: rgb(37 99 235 / 16%);
  color: #60a5fa;
  font-size: 0.55rem;
  font-weight: 700;
}

.contact-note {
  display: grid;
  margin-top: 31px;
  padding: 15px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 12px;
  background: rgb(255 255 255 / 3%);
  grid-template-columns: 29px 1fr;
  gap: 10px;
}

.contact-note > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgb(96 165 250 / 12%);
  color: #93c5fd;
  font-size: 0.67rem;
  font-weight: 700;
}

.contact-note p,
.contact-note strong,
.contact-note small {
  display: block;
  margin: 0;
}

.contact-note strong {
  font-size: 0.66rem;
}

.contact-note small {
  margin-top: 3px;
  color: #77859c;
  font-size: 0.56rem;
  line-height: 1.5;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 32px 75px rgb(0 0 0 / 29%);
  color: #0f172a;
}

.form-heading {
  margin-bottom: 21px;
}

.form-heading span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 0.72rem;
}

.form-success,
.form-error {
  display: flex;
  margin-bottom: 19px;
  padding: 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid #a7f3d0;
  border-radius: 11px;
  background: #ecfdf5;
  color: #065f46;
}

.form-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.form-success > span,
.form-error > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.form-error > span {
  background: #dc2626;
}

.form-success p,
.form-success strong,
.form-success small,
.form-error p,
.form-error strong,
.form-error small {
  display: block;
  margin: 0;
}

.form-success strong,
.form-error strong {
  font-size: 0.72rem;
}

.form-success small,
.form-error small {
  margin-top: 2px;
  font-size: 0.59rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.form-row-three {
  grid-template-columns: 1.1fr 0.45fr 1.15fr;
}

.contact-form label:not(.consent, .honeypot) {
  display: block;
  margin-bottom: 13px;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 650;
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #dbe3ed;
  border-radius: 9px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.74rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  min-height: 85px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #60a5fa;
  background: #fff;
  box-shadow: 0 0 0 3px rgb(59 130 246 / 10%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a6b1c0;
}

.consent {
  display: grid;
  margin: 9px 0;
  align-items: start;
  color: #64748b;
  font-size: 0.6rem;
  line-height: 1.5;
  grid-template-columns: 17px 1fr;
  gap: 8px;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: #2563eb;
}

.consent a {
  color: #2563eb;
  font-weight: 650;
  text-decoration: underline;
}

.consent.optional {
  color: #94a3b8;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button-submit {
  width: 100%;
  margin-top: 13px;
  border: 0;
}

.button-submit span {
  margin-left: auto;
}

.form-footnote {
  display: block;
  margin-top: 9px;
  color: #94a3b8;
  font-size: 0.53rem;
  text-align: center;
}

.form-footnote a {
  color: #0f766e;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form-footnote a:hover {
  text-decoration-thickness: 2px;
}

.site-footer {
  padding: 55px 0 20px;
  background: #070d1c;
  color: #fff;
}

.footer-main {
  display: grid;
  padding-bottom: 43px;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 45px;
}

.footer-brand p {
  max-width: 260px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 0.72rem;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-main > div > strong {
  margin-bottom: 5px;
  color: #cbd5e1;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-main > div > a {
  color: #64748b;
  font-size: 0.67rem;
  transition: color 0.2s ease;
}

.footer-main > div > a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: #536078;
  font-size: 0.58rem;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 13px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .login-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .product-window {
    width: 620px;
  }

  .field-grid,
  .security-grid {
    gap: 55px;
  }

  .status-one {
    left: -3%;
  }

  .status-two {
    right: -4%;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu > summary {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 11px;
    align-items: stretch;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu > summary span {
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .mobile-menu nav {
    position: absolute;
    top: 66px;
    right: 20px;
    display: flex;
    width: min(300px, calc(100vw - 40px));
    padding: 15px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 14px;
    background: #111b31;
    box-shadow: 0 25px 55px rgb(0 0 0 / 40%);
    flex-direction: column;
  }

  .mobile-menu nav > a:not(.button) {
    padding: 10px 8px;
    color: #cbd5e1;
    font-size: 0.78rem;
  }

  .mobile-menu nav .button {
    margin-top: 8px;
    padding-inline: 14px;
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 700px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .product-window {
    width: min(760px, 100%);
    margin: 14px auto 0;
    transform: none;
  }

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

  .proof-grid p:nth-child(2) {
    border-right: 0;
  }

  .proof-grid p:nth-child(n + 3) {
    margin-top: 20px;
  }

  .proof-grid p:nth-child(3) {
    padding-left: 0;
  }

  .field-grid,
  .digital-disk-grid,
  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field-copy,
  .digital-disk-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .digital-disk-demo {
    margin-inline: auto;
  }

  .phone-stage {
    order: 2;
  }

  .field-copy {
    order: 1;
  }

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

  .pricing-card,
  .pricing-card.featured {
    max-width: 670px;
    margin: 0 auto;
  }

  .plan-description {
    min-height: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-heading {
    position: static;
    max-width: 690px;
  }

  .contact-copy {
    max-width: 730px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 68px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-lead {
    font-size: 0.97rem;
  }

  .dashboard-shell {
    grid-template-columns: 42px 1fr;
  }

  .real-product-preview {
    min-height: 410px;
    padding: 24px 18px 18px;
  }

  .real-preview-screens {
    height: 292px;
    margin-top: 20px;
  }

  .real-screen {
    width: 132px;
    border-width: 5px;
    border-radius: 18px;
  }

  .real-screen-main {
    width: 160px;
  }

  .real-screen-back {
    left: 8px;
  }

  .real-screen-front {
    right: 8px;
  }

  .real-screen figcaption {
    padding: 6px 3px 7px;
    font-size: 0.5rem;
  }

  .real-preview-note {
    right: 18px;
    bottom: 15px;
    left: 18px;
    font-size: 0.54rem;
  }

  .mock-content {
    padding: 17px;
  }

  .mock-main-grid {
    grid-template-columns: 1fr;
  }

  .quota-card {
    display: none;
  }

  .territory-map {
    height: 210px;
  }

  .business-model-grid {
    grid-template-columns: 1fr;
  }

  .digital-disk-grid {
    gap: 48px;
  }

  .simulator {
    padding: 24px;
  }

  .simulator-heading,
  .comparison-title {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .workflow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .workflow::before {
    display: none;
  }

  .security-visual {
    min-height: 390px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.22rem;
  }

  .header-inner {
    min-height: 69px;
  }

  .hero-copy .eyebrow {
    font-size: 0.62rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 10px 15px;
  }

  .window-topbar {
    grid-template-columns: 50px 1fr 40px;
  }

  .window-dots {
    padding-left: 10px;
    gap: 3px;
  }

  .window-dots i {
    width: 6px;
    height: 6px;
  }

  .window-address {
    width: 150px;
  }

  .dashboard-shell {
    min-height: 350px;
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 13px;
  }

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

  .mock-stats article:last-child {
    display: none;
  }

  .territory-map {
    height: 180px;
  }

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

  .proof-grid p,
  .proof-grid p:first-child,
  .proof-grid p:nth-child(3) {
    margin: 0;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .proof-grid p:last-child {
    border: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .field-copy h2,
  .digital-disk-copy h2,
  .security-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .phone-stage {
    min-height: 620px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .phone {
    width: 270px;
    height: 554px;
  }

  .floating-status {
    min-width: 175px;
    padding: 10px;
  }

  .status-one {
    top: 112px;
    left: -8px;
  }

  .status-two {
    right: -8px;
    bottom: 95px;
  }

  .field-links {
    align-items: stretch;
    flex-direction: column;
  }

  .digital-disk-demo {
    padding: 24px 19px;
    border-radius: 22px;
  }

  .digital-disk-demo-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .digital-disk {
    width: min(100%, 330px);
    margin-top: 24px;
  }

  .digital-disk-option {
    width: 35%;
    min-height: 46px;
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 0.64rem;
  }

  .digital-disk-center {
    width: 24%;
    font-size: 0.48rem;
  }

  .simulator,
  .comparison-wrap {
    padding: 19px;
  }

  .simulator-controls,
  .simulator-result {
    padding: 20px;
  }

  .pricing-card {
    padding: 25px;
  }

  .pricing-card.featured {
    padding-top: 42px;
  }

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

  .workflow p {
    max-width: 280px;
  }

  .security-points {
    grid-template-columns: 1fr;
  }

  .security-visual {
    min-height: 350px;
    transform: scale(0.88);
  }

  .security-card-one {
    left: -8%;
  }

  .security-card-two {
    right: -9%;
  }

  .contact-form {
    padding: 23px;
  }

  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Experiência comercial 2026

   Esta camada moderniza a apresentação sem alterar os contratos de conteúdo,
   formulário, planos ou integrações. Os movimentos são decorativos e têm uma
   alternativa integral em prefers-reduced-motion.
   -------------------------------------------------------------------------- */

:root {
  --navy-950: #050b16;
  --navy-900: #07111f;
  --navy-850: #0b1729;
  --navy-800: #10213a;
  --blue: #246bfd;
  --blue-500: #4c8dff;
  --indigo: #6857ff;
  --violet: #8b5cf6;
  --cyan: #4fe3ff;
  --mint: #59efc1;
  --surface: #f5f8fc;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 14px 42px rgb(8 22 45 / 8%);
  --shadow: 0 32px 90px rgb(8 22 45 / 16%);
  --container: 1240px;
}

body {
  background: var(--surface);
  color: #10213a;
}

::selection {
  background: rgb(76 141 255 / 24%);
  color: #07111f;
}

.container {
  width: min(calc(100% - 48px), var(--container));
}

.site-header {
  position: fixed;
  z-index: 90;
  border-bottom-color: rgb(255 255 255 / 10%);
  background: rgb(5 11 22 / 22%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 2%);
  backdrop-filter: blur(14px) saturate(130%);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgb(255 255 255 / 8%);
  background: rgb(5 11 22 / 88%);
  box-shadow: 0 18px 45px rgb(0 0 0 / 20%);
}

.header-aura {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72vw, 860px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #4fe3ff, #7c6cff, transparent);
  opacity: 0.72;
  transform: translateX(-50%);
}

.header-inner {
  min-height: 82px;
}

.brand-mark {
  border-radius: 13px;
  box-shadow:
    0 10px 30px rgb(36 107 253 / 34%),
    0 0 0 1px rgb(255 255 255 / 9%);
  transition: transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-4deg);
}

.brand-name {
  font-size: 1.42rem;
  font-weight: 760;
}

.brand-name span {
  color: #70d8ff;
}

.desktop-nav {
  padding: 7px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
  gap: 2px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 11px;
  border-radius: 999px;
  color: #aebdd2;
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgb(255 255 255 / 8%);
  color: #fff;
}

.header-actions {
  gap: 13px;
}

.button {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
}

.button::before {
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -70%;
  width: 50%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 24%), transparent);
  content: '';
  transform: rotate(18deg);
  transition: left 0.55s ease;
}

.button:hover::before {
  left: 125%;
}

.button-primary {
  background: linear-gradient(120deg, #1f6bff, #6558ff 65%, #7b5cff);
  box-shadow:
    0 14px 36px rgb(36 107 253 / 28%),
    0 1px 0 rgb(255 255 255 / 24%) inset;
}

.button-primary:hover {
  box-shadow:
    0 20px 45px rgb(36 107 253 / 38%),
    0 1px 0 rgb(255 255 255 / 26%) inset;
}

.button-ghost {
  border-color: rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: 910px;
  padding: 176px 0 118px;
  background:
    radial-gradient(circle at 66% 22%, rgb(75 105 255 / 22%), transparent 27%),
    radial-gradient(circle at 14% 48%, rgb(42 194 255 / 11%), transparent 32%),
    linear-gradient(145deg, #040912 0%, #07111f 49%, #0a1830 100%);
}

.hero::before {
  background-image:
    linear-gradient(rgb(126 183 255 / 4.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(126 183 255 / 4.5%) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  position: absolute;
  top: 6%;
  right: 9%;
  width: 42vw;
  max-width: 670px;
  border: 1px solid rgb(103 152 255 / 10%);
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 70px rgb(71 121 255 / 2.5%),
    0 0 0 140px rgb(71 121 255 / 1.6%);
  content: '';
  pointer-events: none;
  animation: portal-orbit 12s ease-in-out infinite alternate;
}

.hero-glow-one {
  background: radial-gradient(circle, rgb(45 199 255 / 18%), transparent 68%);
  animation: portal-drift 9s ease-in-out infinite alternate;
}

.hero-glow-two {
  background: radial-gradient(circle, rgb(101 88 255 / 24%), transparent 69%);
  animation: portal-drift 12s ease-in-out -3s infinite alternate-reverse;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(570px, 1.1fr);
  gap: clamp(52px, 6vw, 92px);
}

.eyebrow {
  margin-bottom: 22px;
  color: #8ce8ff;
  font-size: 0.7rem;
  letter-spacing: 0.19em;
}

.eyebrow > span {
  width: 32px;
  background: linear-gradient(90deg, #4fe3ff, #7b72ff);
  box-shadow: 0 0 18px rgb(79 227 255 / 44%);
}

.eyebrow-dark {
  color: #275fda;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.25rem, 5.25vw, 5.45rem);
  font-weight: 760;
  letter-spacing: -0.069em;
  line-height: 0.96;
}

.hero h1 em {
  padding-bottom: 0.08em;
  background: linear-gradient(100deg, #54dbff 5%, #74a7ff 43%, #9e7dff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 12px 34px rgb(71 126 255 / 18%));
}

.hero-lead {
  max-width: 610px;
  color: #aabbd2;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 36px;
}

.hero-trust {
  margin-top: 28px;
  color: #8fa2bd;
}

.hero-trust span {
  border-color: rgb(79 227 255 / 26%);
  background: rgb(79 227 255 / 9%);
  color: #69e6ff;
}

.hero-metrics {
  display: grid;
  max-width: 590px;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
}

.hero-metrics div {
  display: grid;
  padding: 0 18px;
  border-left: 1px solid rgb(255 255 255 / 10%);
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  color: #62dcff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-metrics dd {
  margin: 0;
  color: #7f93ae;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.45;
}

.product-window {
  position: relative;
  width: min(710px, 100%);
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  border-color: rgb(156 199 255 / 17%);
  border-radius: 28px;
  background: rgb(12 24 44 / 72%);
  box-shadow:
    0 55px 120px rgb(0 0 0 / 52%),
    0 0 0 1px rgb(112 178 255 / 6%) inset,
    0 0 95px rgb(59 98 255 / 13%);
  transform: perspective(1500px) rotateY(-4deg) rotateX(1.5deg);
}

.product-window-halo {
  position: absolute;
  z-index: -1;
  inset: -34px;
  border: 1px solid rgb(100 171 255 / 9%);
  border-radius: 48px;
  background: linear-gradient(145deg, rgb(79 227 255 / 3%), rgb(104 87 255 / 4%));
  pointer-events: none;
}

.window-topbar {
  overflow: hidden;
  border-bottom-color: rgb(167 204 255 / 10%);
  border-radius: 27px 27px 0 0;
  background: rgb(8 19 35 / 92%);
}

.window-address {
  background: rgb(255 255 255 / 6%);
  color: #778ba8;
}

.window-avatar {
  background: linear-gradient(135deg, #193f79, #342e80);
  color: #9cddff;
}

.real-product-preview {
  min-height: 505px;
  overflow: hidden;
  border-radius: 0 0 27px 27px;
  background:
    linear-gradient(rgb(76 141 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(76 141 255 / 6%) 1px, transparent 1px),
    radial-gradient(circle at 50% 34%, rgb(102 90 255 / 18%), transparent 44%),
    linear-gradient(145deg, #0a1729 0%, #0d1d35 100%);
  background-size:
    36px 36px,
    36px 36px,
    auto,
    auto;
}

.real-preview-heading span {
  color: #7890ad;
}

.real-preview-heading strong {
  color: #edf7ff;
  font-size: 1.15rem;
}

.preview-live {
  position: absolute;
  z-index: 6;
  top: 28px;
  right: 28px;
  display: flex;
  padding: 7px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgb(89 239 193 / 18%);
  border-radius: 999px;
  background: rgb(8 25 35 / 70%);
  color: #8bffd9;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}

.preview-live i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  background: rgb(89 239 193 / 12%);
  color: #59efc1;
  font-size: 0.6rem;
  font-style: normal;
}

.real-preview-screens {
  height: 372px;
  margin-top: 21px;
}

.real-screen {
  border-color: #07101e;
  background: #07101e;
  box-shadow:
    0 30px 60px rgb(0 0 0 / 46%),
    0 0 0 1px rgb(164 206 255 / 10%);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.4s ease;
}

.real-screen figcaption {
  background: #07101e;
  color: #8da5c2;
}

.real-screen-main {
  width: 218px;
  animation: portal-phone-float 5s ease-in-out infinite;
}

.product-window:hover .real-screen-back {
  transform: translateX(-9px) rotate(-11deg) scale(0.9);
}

.product-window:hover .real-screen-front {
  transform: translateX(9px) rotate(11deg) scale(0.9);
}

.real-preview-note {
  color: #66809f;
}

.preview-float {
  position: absolute;
  z-index: 5;
  border: 1px solid rgb(163 204 255 / 14%);
  border-radius: 14px;
  background: rgb(8 20 37 / 86%);
  box-shadow: 0 22px 50px rgb(0 0 0 / 35%);
  backdrop-filter: blur(15px);
}

.preview-float-progress {
  top: 116px;
  left: -27px;
  width: 118px;
  padding: 13px;
  animation: portal-float-card 5.4s ease-in-out -1s infinite;
}

.preview-float-progress span {
  display: block;
  color: #748ba8;
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.preview-float-progress strong {
  display: block;
  margin: 3px 0 8px;
  color: #f4f9ff;
  font-size: 0.7rem;
  letter-spacing: -0.01em;
}

.preview-float-progress > i {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgb(255 255 255 / 8%);
}

.preview-float-progress em {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4fe3ff, #6857ff);
}

.preview-float-sync {
  right: -36px;
  bottom: 74px;
  display: flex;
  min-width: 190px;
  padding: 13px 15px;
  align-items: center;
  gap: 10px;
  animation: portal-float-card 5.9s ease-in-out -2.4s infinite reverse;
}

.preview-float-sync > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: rgb(89 239 193 / 12%);
  color: #59efc1;
  font-size: 0.72rem;
  font-style: normal;
}

.preview-float-sync span,
.preview-float-sync strong,
.preview-float-sync small {
  display: block;
}

.preview-float-sync strong {
  color: #e9f6ff;
  font-size: 0.64rem;
}

.preview-float-sync small {
  margin-top: 2px;
  color: #7087a3;
  font-size: 0.5rem;
}

.proof-strip {
  position: relative;
  z-index: 3;
  border: 0;
  background: #07111f;
}

.proof-grid {
  padding-block: 0;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 22px;
  background: linear-gradient(120deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%));
  box-shadow: 0 24px 65px rgb(0 0 0 / 22%);
  transform: translateY(-34px);
}

.proof-grid p {
  display: grid;
  min-height: 100px;
  padding: 24px;
  align-content: center;
  border-right-color: rgb(255 255 255 / 8%);
  grid-template-columns: 36px 1fr;
}

.proof-grid p:first-child {
  padding-left: 24px;
}

.proof-grid p > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgb(90 217 255 / 15%);
  border-radius: 9px;
  background: rgb(79 227 255 / 7%);
  color: #62dcff;
  font-size: 0.8rem;
  font-style: normal;
  grid-row: span 2;
}

.proof-grid strong {
  color: #edf6ff;
  font-size: 0.8rem;
}

.proof-grid span {
  color: #71849f;
  font-size: 0.65rem;
}

.experience-rail {
  position: relative;
  z-index: 2;
  padding: 14px 0 70px;
  background: #07111f;
  color: #fff;
}

.experience-rail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.experience-rail p {
  margin: 0;
  color: #71849f;
  font-size: 0.72rem;
  font-weight: 650;
}

.experience-rail p span {
  color: #dff5ff;
}

.experience-rail ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.experience-rail li {
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
  color: #91a3bc;
  font-size: 0.61rem;
  font-weight: 650;
}

.experience-rail li b {
  margin-right: 5px;
  color: #4fdcff;
  font-size: 0.52rem;
}

.section {
  padding: 128px 0;
}

.section-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgb(85 157 255 / 9%), transparent 26%),
    linear-gradient(180deg, #f5f8fc, #fff 38%, #f5f8fc);
}

.section-light::before {
  position: absolute;
  top: 90px;
  right: -150px;
  width: 360px;
  border: 1px dashed rgb(53 108 213 / 11%);
  border-radius: 50%;
  aspect-ratio: 1;
  content: '';
}

.section-heading {
  margin-bottom: 66px;
}

.section-heading h2,
.field-copy h2,
.digital-disk-copy h2,
.security-copy h2,
.faq-heading h2,
.contact-copy h2 {
  color: #0b1b31;
  font-size: clamp(2.45rem, 4.2vw, 3.8rem);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.section-heading > p:last-child,
.section-lead {
  color: #64748b;
  font-size: 1.02rem;
}

.outcome-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgb(48 90 151 / 10%);
  border-radius: 22px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 15px 45px rgb(15 35 63 / 5%);
  grid-template-columns: repeat(3, 1fr);
}

.outcome-ribbon p {
  margin: 0;
  padding: 17px 23px;
  border-right: 1px solid rgb(48 90 151 / 10%);
}

.outcome-ribbon p:last-child {
  border-right: 0;
}

.outcome-ribbon span,
.outcome-ribbon strong {
  display: block;
}

.outcome-ribbon span {
  color: #2865df;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-ribbon strong {
  margin-top: 4px;
  color: #233650;
  font-size: 0.74rem;
}

.field-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 45%, rgb(35 154 255 / 18%), transparent 31%),
    radial-gradient(circle at 87% 12%, rgb(104 87 255 / 16%), transparent 30%),
    linear-gradient(135deg, #050c18, #09172b 56%, #0d1d36);
}

.field-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: '';
  mask-image: radial-gradient(circle at 25% 50%, black, transparent 70%);
}

.field-grid {
  position: relative;
  z-index: 1;
}

.phone-orbit {
  border-color: rgb(79 227 255 / 14%);
  box-shadow: 0 0 80px rgb(36 107 253 / 8%) inset;
  animation: portal-centered-orbit 10s ease-in-out infinite alternate;
}

.orbit-two {
  border-style: dashed;
  animation-direction: alternate-reverse;
  animation-duration: 13s;
}

.phone {
  box-shadow:
    0 42px 95px rgb(0 0 0 / 54%),
    0 0 0 1px rgb(255 255 255 / 10%);
  animation: portal-phone-stage 6s ease-in-out infinite;
}

.floating-status {
  border-color: rgb(136 199 255 / 14%);
  background: rgb(8 24 44 / 82%);
}

.status-one {
  animation: portal-float-card 5.5s ease-in-out infinite;
}

.status-two {
  animation: portal-float-card 6.2s ease-in-out -2s infinite reverse;
}

.field-copy h2,
.security-copy h2,
.contact-copy h2 {
  color: #f5faff;
}

.check-list li {
  border-bottom-color: rgb(255 255 255 / 8%);
  transition:
    padding-left 0.3s ease,
    border-color 0.3s ease;
}

.check-list li:hover {
  padding-left: 8px;
  border-bottom-color: rgb(99 196 255 / 22%);
}

.digital-disk-section {
  background:
    radial-gradient(circle at 86% 22%, rgb(101 88 255 / 13%), transparent 27%),
    radial-gradient(circle at 12% 72%, rgb(55 197 255 / 9%), transparent 24%),
    linear-gradient(145deg, #f7faff, #edf3fd);
}

.digital-disk-demo {
  border-color: rgb(121 183 255 / 17%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 14%, rgb(79 227 255 / 8%), transparent 28%),
    linear-gradient(145deg, #06101f, #102546);
  box-shadow:
    0 42px 95px rgb(15 35 63 / 27%),
    0 1px 0 rgb(255 255 255 / 8%) inset;
}

.digital-disk {
  border-color: rgb(134 205 255 / 25%);
  background:
    radial-gradient(circle at center, rgb(36 107 253 / 23%) 0 28%, transparent 29%),
    radial-gradient(circle, #17345d, #09172c 68%);
  box-shadow:
    0 28px 65px rgb(0 0 0 / 40%),
    0 0 0 16px rgb(79 227 255 / 3%);
  animation: portal-disc-breathe 5s ease-in-out infinite;
}

.digital-disk-option.is-selected {
  background: linear-gradient(135deg, #1d7aff, #6757ff);
}

.business-model-section {
  background: #fff;
}

.business-model-grid article {
  border-color: rgb(39 78 132 / 10%);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgb(15 35 63 / 6%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.business-model-grid article:hover {
  box-shadow: 0 25px 65px rgb(15 35 63 / 11%);
  transform: translateY(-6px);
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -5%, rgb(58 123 255 / 22%), transparent 28%),
    radial-gradient(circle at 90% 62%, rgb(104 87 255 / 11%), transparent 31%), #050c18;
}

.pricing-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 70px 70px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.pricing-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-heading h2 {
  color: #fff;
}

.pricing-heading > p:last-child {
  color: #aabbd2;
}

.pricing-card {
  border-color: rgb(150 196 255 / 11%);
  border-radius: 26px;
  background: linear-gradient(155deg, rgb(22 42 72 / 92%), rgb(10 23 42 / 94%));
  box-shadow:
    0 28px 70px rgb(0 0 0 / 22%),
    0 1px 0 rgb(255 255 255 / 5%) inset;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.pricing-card:hover {
  border-color: rgb(110 180 255 / 28%);
  box-shadow:
    0 38px 85px rgb(0 0 0 / 34%),
    0 1px 0 rgb(255 255 255 / 8%) inset;
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: rgb(87 177 255 / 58%);
  background:
    radial-gradient(circle at 50% 0, rgb(82 111 255 / 22%), transparent 34%),
    linear-gradient(155deg, #142c4d, #0b1a31 64%);
}

.recommended-badge {
  background: linear-gradient(110deg, #1977ff, #6857ff);
}

.comparison-wrap,
.simulator {
  border-color: rgb(142 190 255 / 10%);
  border-radius: 26px;
  backdrop-filter: blur(18px);
}

.comparison-wrap {
  background: rgb(255 255 255 / 3.5%);
}

.simulator {
  background: rgb(250 252 255 / 97%);
  box-shadow: 0 35px 90px rgb(0 0 0 / 24%);
}

.simulator-result {
  border: 1px solid rgb(127 190 255 / 12%);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgb(82 111 255 / 24%), transparent 28%),
    linear-gradient(145deg, #071425, #132b4d);
}

.range-labels,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.workflow-section {
  background: radial-gradient(circle at 50% 0, rgb(76 141 255 / 7%), transparent 32%), #fff;
}

.workflow-icon {
  border-color: rgb(36 107 253 / 14%);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f3f7fd);
  box-shadow:
    0 18px 38px rgb(16 41 77 / 8%),
    0 1px 0 #fff inset;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.workflow li:hover .workflow-icon {
  box-shadow: 0 25px 55px rgb(36 107 253 / 16%);
  transform: translateY(-7px) rotate(-2deg);
}

.workflow::before {
  border-top-color: rgb(36 107 253 / 20%);
}

.security-section {
  position: relative;
  background:
    radial-gradient(circle at 74% 50%, rgb(36 107 253 / 20%), transparent 32%),
    linear-gradient(135deg, #050c18, #0a172b 58%, #10213b);
}

.shield {
  border-color: rgb(93 211 255 / 20%);
  background: radial-gradient(circle, rgb(36 107 253 / 30%), rgb(36 107 253 / 4%) 70%);
  box-shadow:
    0 0 110px rgb(36 107 253 / 22%),
    0 0 0 28px rgb(79 227 255 / 2%);
  animation: portal-shield 4.5s ease-in-out infinite;
}

.security-lines {
  border-color: rgb(79 227 255 / 13%);
  animation: portal-security-ring 22s linear infinite;
}

.security-card {
  background: rgb(8 24 45 / 85%);
}

.security-card-one {
  animation: portal-float-card 5.7s ease-in-out infinite;
}

.security-card-two {
  animation: portal-float-card 6.4s ease-in-out -2s infinite reverse;
}

.faq-section {
  background: radial-gradient(circle at 10% 14%, rgb(76 141 255 / 7%), transparent 25%), #f5f8fc;
}

.faq-list details {
  margin-bottom: 10px;
  padding: 0 20px;
  border: 1px solid rgb(37 76 129 / 9%);
  border-radius: 17px;
  background: rgb(255 255 255 / 74%);
  box-shadow: 0 8px 28px rgb(15 35 63 / 3%);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.faq-list details[open] {
  border-color: rgb(36 107 253 / 17%);
  background: #fff;
  box-shadow: 0 15px 38px rgb(15 35 63 / 7%);
}

.professionals-section {
  background:
    radial-gradient(circle at 92% 12%, rgb(104 87 255 / 9%), transparent 27%),
    linear-gradient(180deg, #fff, #f4f8fd);
}

.professional-card {
  border-color: rgb(37 76 129 / 10%);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgb(15 35 63 / 8%);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.4s ease;
}

.professional-card:hover {
  box-shadow: 0 32px 78px rgb(15 35 63 / 13%);
  transform: translateY(-7px);
}

.contact-section {
  padding: 128px 0;
  background:
    radial-gradient(circle at 12% 24%, rgb(47 181 255 / 13%), transparent 28%),
    radial-gradient(circle at 90% 76%, rgb(104 87 255 / 18%), transparent 31%), #050c18;
}

.contact-form {
  border-color: rgb(255 255 255 / 14%);
  border-radius: 28px;
  background: rgb(255 255 255 / 97%);
  box-shadow:
    0 45px 110px rgb(0 0 0 / 38%),
    0 1px 0 #fff inset;
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
  border-color: #d9e3f0;
  border-radius: 12px;
  background: #f5f8fc;
}

.site-footer {
  background: #030811;
}

.site-footer .brand-mark {
  box-shadow: 0 10px 26px rgb(36 107 253 / 18%);
}

section[id] {
  scroll-margin-top: 96px;
}

.button-small {
  min-height: 44px;
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.mobile-menu > summary {
  width: 44px;
  min-width: 44px;
  height: 44px;
}

.comparison-scroll {
  overscroll-behavior-inline: contain;
  scrollbar-color: #4c8dff rgb(255 255 255 / 8%);
}

.comparison-scroll:focus-visible {
  border-radius: 10px;
  outline: 3px solid #60a5fa;
  outline-offset: 5px;
}

/* Texto funcional permanece confortável em telas reais e não depende de zoom. */
.plan-description,
.plan-features,
.additional-note,
.comparison-wrap table,
.simulator-heading > p,
.comparison-title > p,
.simulator-controls > label,
.simulator-result > p,
.simulator-result ul,
.estimate-note {
  font-size: 0.78rem;
}

.plan-top small,
.plan-price > span,
.feature-title,
.simulator-heading span,
.comparison-title span,
.simulator-controls legend,
.pricing-card > .button,
.simulator-result .button {
  font-size: 0.75rem;
}

.recommended-badge,
.professional-recommendation-badge,
.professional-reciprocal-badge {
  font-size: 0.7rem;
}

.plan-capacity strong,
.plan-capacity small,
.plan-price small {
  font-size: 0.74rem;
}

.contact-form label:not(.consent, .honeypot),
.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
  font-size: 0.81rem;
}

.consent,
.form-footnote,
.form-heading p,
.form-success small,
.form-error small {
  font-size: 0.72rem;
}

.consent.optional,
.form-footnote {
  color: #64748b;
}

.form-success strong,
.form-error strong {
  font-size: 0.82rem;
}

.contact-note strong,
.contact-note small {
  font-size: 0.72rem;
}

.footer-brand p,
.footer-main > div > strong,
.footer-main > div > a {
  font-size: 0.76rem;
}

.footer-brand p,
.footer-main > div > a {
  color: #94a3b8;
}

.footer-bottom {
  color: #8ea0ba;
  font-size: 0.68rem;
}

.plan-features .not-included,
.plan-features .not-included > span,
.comparison-wrap .no {
  color: #8ea0ba;
}

.real-preview-note {
  color: #91a6c0;
}

.pricing-card > .button,
.professional-card .button,
.professional-contact-list a,
.faq-heading .button,
.field-links .button,
.field-links > a,
.contact-form input:not([type='checkbox']),
.contact-form select {
  min-height: 44px;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready .reveal-item.reveal-from-left {
  transform: translateX(-32px);
}

.motion-ready .reveal-item.reveal-from-right {
  transform: translateX(32px);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes portal-drift {
  from {
    transform: translate3d(-2%, -2%, 0) scale(0.96);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.05);
  }
}

@keyframes portal-orbit {
  from {
    transform: rotate(-2deg) scale(0.97);
  }
  to {
    transform: rotate(3deg) scale(1.03);
  }
}

@keyframes portal-centered-orbit {
  from {
    transform: translate(-50%, -50%) rotate(-2deg) scale(0.97);
  }
  to {
    transform: translate(-50%, -50%) rotate(3deg) scale(1.03);
  }
}

@keyframes portal-phone-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes portal-phone-stage {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px)) rotate(-1deg);
  }
}

@keyframes portal-float-card {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes portal-chart-rise {
  from {
    opacity: 0;
    transform: scaleY(0.16);
  }
}

@keyframes portal-disc-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
}

@keyframes portal-shield {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@keyframes portal-security-ring {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 1341px) {
  .container {
    width: min(calc(100% - clamp(64px, 7vw, 224px)), 1920px);
  }

  .faq-list,
  .contact-form {
    width: 100%;
    max-width: 880px;
    justify-self: end;
  }

  .product-window {
    justify-self: end;
  }
}

@media (max-width: 1340px) {
  .hero-grid {
    gap: 48px;
  }

  .product-window {
    width: min(650px, 100%);
  }

  .product-window-halo {
    inset: -20px;
  }

  .preview-float-progress {
    left: 12px;
  }

  .preview-float-sync {
    right: 12px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    padding: 5px;
  }

  .desktop-nav a {
    padding-inline: 8px;
  }

  .product-window {
    width: 650px;
  }
}

@media (min-width: 1021px) {
  .real-screen-main {
    width: 170px;
  }
}

@media (min-width: 1021px) and (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(24px, 3vw, 40px);
  }

  .product-window {
    width: 100%;
    transform: none;
  }

  .real-preview-heading {
    max-width: calc(100% - 190px);
  }
}

@media (max-width: 1020px) {
  .site-header {
    background: rgb(5 11 22 / 74%);
  }

  .mobile-menu nav {
    top: 70px;
    border-color: rgb(134 191 255 / 14%);
    border-radius: 18px;
    background: rgb(7 18 34 / 96%);
    backdrop-filter: blur(20px);
  }

  .hero {
    padding-top: 148px;
  }

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

  .hero-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-metrics {
    margin-inline: auto;
    text-align: left;
  }

  .product-window {
    width: min(740px, calc(100% - 48px));
    margin: 14px auto 0;
    transform: none;
  }

  .experience-rail-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .proof-grid {
    transform: translateY(-20px);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

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

  .hero {
    padding: 132px 0 82px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-metrics {
    max-width: 100%;
  }

  .product-window {
    width: calc(100% - 20px);
  }

  .preview-float-progress {
    left: -14px;
  }

  .preview-float-sync {
    right: -16px;
  }

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

  .proof-grid p:nth-child(2) {
    border-right: 0;
  }

  .proof-grid p:nth-child(n + 3) {
    margin-top: 0;
    border-top: 1px solid rgb(255 255 255 / 8%);
  }

  .proof-grid p:nth-child(3) {
    padding-left: 24px;
  }

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

  .outcome-ribbon p {
    border-right: 0;
    border-bottom: 1px solid rgb(48 90 151 / 10%);
  }

  .outcome-ribbon p:last-child {
    border-bottom: 0;
  }

  .contact-form input:not([type='checkbox']),
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form label:not(.consent, .honeypot) {
    font-size: 0.84rem;
  }

  .consent,
  .form-footnote {
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.8rem);
  }

  .hero-lead {
    font-size: 0.93rem;
  }

  .hero-metrics {
    margin-top: 29px;
  }

  .hero-metrics div {
    padding-inline: 9px;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero-metrics dd {
    font-size: 0.57rem;
  }

  .product-window {
    width: 100%;
    border-radius: 22px;
  }

  .product-window-halo {
    inset: -12px;
    border-radius: 30px;
  }

  .window-topbar {
    border-radius: 21px 21px 0 0;
  }

  .real-product-preview {
    min-height: 430px;
    border-radius: 0 0 21px 21px;
  }

  .preview-live {
    top: 20px;
    right: 17px;
  }

  .real-preview-heading {
    max-width: 165px;
  }

  .real-preview-heading strong {
    font-size: 0.88rem;
  }

  .real-preview-screens {
    height: 302px;
  }

  .real-screen-main {
    width: 164px;
  }

  .preview-float-progress {
    top: 122px;
    left: -8px;
    width: 96px;
    padding: 10px;
  }

  .preview-float-sync {
    right: -8px;
    bottom: 56px;
    min-width: 158px;
    padding: 10px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .proof-grid p,
  .proof-grid p:first-child,
  .proof-grid p:nth-child(3) {
    min-height: 82px;
    padding: 18px 20px;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
  }

  .experience-rail {
    padding-bottom: 55px;
  }

  .experience-rail ol {
    gap: 6px;
  }

  .experience-rail li {
    padding: 7px 9px;
  }

  .section-heading h2,
  .field-copy h2,
  .digital-disk-copy h2,
  .security-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

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

  .field-grid,
  .digital-disk-grid,
  .security-grid,
  .contact-grid {
    gap: 46px;
  }

  .phone-stage {
    min-height: 570px;
  }

  .pricing-card,
  .contact-form {
    padding: 23px;
  }

  .contact-form {
    border-radius: 22px;
  }
}

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

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.reveal-from-left,
  .motion-ready .reveal-item.reveal-from-right {
    opacity: 1;
    transform: none;
  }
}

/* Product intelligence — territorial context, quotas and result segments */
.product-insights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-areas:
    'map quota'
    'map results';
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 22px;
}

.insight-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(28px, 2.4vw, 44px);
  border: 1px solid rgb(45 84 136 / 12%);
  border-radius: 30px;
  background: rgb(255 255 255 / 91%);
  box-shadow:
    0 24px 65px rgb(15 35 63 / 9%),
    0 1px 0 #fff inset;
  backdrop-filter: blur(18px);
}

.insight-card::before {
  position: absolute;
  z-index: -1;
  width: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(72 116 255 / 10%), transparent 70%);
  content: '';
  pointer-events: none;
  aspect-ratio: 1;
}

.insight-card-map {
  min-height: 820px;
  background:
    radial-gradient(circle at 91% 4%, rgb(90 79 255 / 12%), transparent 29%), rgb(255 255 255 / 92%);
  grid-area: map;
}

.insight-card-map::before {
  top: 32%;
  left: -150px;
}

.insight-card-quota {
  background:
    radial-gradient(circle at 100% 0, rgb(48 126 255 / 10%), transparent 31%),
    rgb(255 255 255 / 92%);
  grid-area: quota;
}

.insight-card-quota::before {
  right: -150px;
  bottom: -155px;
}

.insight-card-results {
  background:
    radial-gradient(circle at 100% 0, rgb(38 190 166 / 9%), transparent 32%), rgb(255 255 255 / 92%);
  grid-area: results;
}

.insight-card-results::before {
  right: -145px;
  bottom: -145px;
  background: radial-gradient(circle, rgb(34 191 165 / 10%), transparent 70%);
}

.insight-card-heading {
  position: relative;
  z-index: 2;
}

.insight-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 17px;
  box-shadow: 0 13px 30px rgb(31 62 105 / 11%);
}

.insight-icon svg {
  width: 25px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.insight-icon-violet {
  background: linear-gradient(145deg, #eeeaff, #e2dcff);
  color: #6552e9;
}

.insight-icon-blue {
  background: linear-gradient(145deg, #e6f1ff, #d9e9ff);
  color: #2368dc;
}

.insight-icon-orange {
  background: linear-gradient(145deg, #e5faf5, #d5f4ec);
  color: #088f7c;
}

.insight-kicker {
  display: block;
  margin-bottom: 9px;
  color: #3465cf;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-card h3 {
  max-width: 620px;
  margin: 0;
  color: #0c1c32;
  font-size: clamp(1.45rem, 1.8vw, 1.82rem);
  font-weight: 770;
  letter-spacing: -0.043em;
  line-height: 1.14;
}

.insight-card-heading > p {
  max-width: 660px;
  margin: 13px 0 0;
  color: #5e7089;
  font-size: 0.91rem;
  line-height: 1.68;
}

.territory-map-figure,
.quota-chart-figure,
.segmentation-chart-figure {
  position: relative;
  z-index: 2;
  margin: 30px 0 0;
}

.territory-map-toolbar {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #50647f;
  font-size: 0.78rem;
}

.territory-map-toolbar span,
.territory-map-toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.territory-map-toolbar span {
  font-weight: 760;
}

.territory-map-toolbar span i {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #3d7af2;
  box-shadow: 0 0 0 3px rgb(61 122 242 / 15%);
}

.territory-map-toolbar strong {
  color: #2d64cf;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.territory-map-canvas {
  position: relative;
  display: grid;
  height: clamp(360px, 35vw, 520px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(129 195 255 / 20%);
  border-radius: 25px;
  background:
    radial-gradient(circle at 78% 18%, rgb(39 101 220 / 35%), transparent 33%),
    radial-gradient(circle at 18% 80%, rgb(11 157 164 / 20%), transparent 31%),
    linear-gradient(145deg, #071528, #0a1c35 58%, #0b213d);
  box-shadow:
    0 24px 50px rgb(8 25 49 / 25%),
    0 1px 0 rgb(255 255 255 / 10%) inset;
}

.territory-map-canvas::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgb(255 255 255 / 8%), transparent 34%);
  content: '';
  pointer-events: none;
}

.territory-plan-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 2vw, 24px);
  object-fit: contain;
  opacity: 1;
  transform: none;
  transition:
    opacity 0.72s ease,
    transform 1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.territory-area {
  stroke: rgb(219 244 255 / 82%);
  stroke-width: 2.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgb(0 7 20 / 26%));
}

.territory-area-one {
  fill: url('#territory-area-blue');
}

.territory-area-two {
  fill: #574bd4;
}

.territory-area-three {
  fill: url('#territory-area-cyan');
}

.territory-route {
  fill: none;
  stroke: rgb(220 249 255 / 74%);
  stroke-dasharray: 7 9;
  stroke-linecap: round;
  stroke-width: 4;
}

.territory-team-point circle:first-child {
  fill: #f8fbff;
  stroke: #286be5;
  stroke-width: 5;
}

.territory-team-point circle:last-child {
  fill: #286be5;
}

.territory-team-point-alt circle:first-child {
  stroke: #08a0a7;
}

.territory-team-point-alt circle:last-child {
  fill: #08a0a7;
}

.territory-current-point circle:first-child {
  fill: #66e9ff;
  stroke: rgb(255 255 255 / 90%);
  stroke-width: 4;
}

.territory-current-point circle:last-child {
  fill: #07334b;
}

.territory-plan-progress {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid rgb(190 225 255 / 20%);
  border-radius: 15px;
  background: rgb(7 21 40 / 78%);
  box-shadow: 0 12px 28px rgb(0 7 20 / 22%);
  backdrop-filter: blur(12px);
}

.territory-plan-progress strong,
.territory-plan-progress small {
  display: block;
}

.territory-plan-progress strong {
  color: #e9fbff;
  font-size: 1.15rem;
  line-height: 1;
}

.territory-plan-progress small {
  margin-top: 4px;
  color: #8eb7ce;
  font-size: 0.68rem;
}

.territory-map-summary {
  position: relative;
  display: grid;
  min-width: 0;
  margin-top: 12px;
  padding: 14px 16px;
  align-items: center;
  border: 1px solid #dce7f3;
  border-radius: 15px;
  background: #f5f8fc;
  box-shadow: 0 10px 25px rgb(27 61 104 / 6%) inset;
  color: #18314f;
  grid-template-columns: minmax(0, 1fr) auto;
  transition:
    opacity 0.65s ease 0.3s,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1) 0.2s;
}

.territory-map-summary small {
  color: #3569d2;
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.territory-map-summary strong {
  margin-top: 3px;
  font-size: 0.82rem;
  grid-column: 1;
}

.territory-map-summary span {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: #536a85;
  font-size: 0.76rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.territory-map-summary span i {
  width: 10px;
  height: 10px;
  border: 1px solid #28747d;
  border-radius: 3px;
  background:
    linear-gradient(#28747d 1px, transparent 1px),
    linear-gradient(90deg, #28747d 1px, transparent 1px);
  background-size: 3px 3px;
}

.territory-map-compass {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(190 225 255 / 20%);
  border-radius: 50%;
  background: rgb(7 21 40 / 66%);
  color: #d9f8ff;
  font-size: 0.75rem;
  font-weight: 830;
  box-shadow: 0 8px 18px rgb(0 7 20 / 19%);
}

.territory-map-compass::before {
  position: absolute;
  top: 7px;
  border-right: 4px solid transparent;
  border-bottom: 7px solid #52d9f0;
  border-left: 4px solid transparent;
  content: '';
  transform: translateY(-6px);
}

.territory-map-figure > figcaption {
  display: flex;
  margin-top: 13px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #53667f;
  font-size: 0.76rem;
}

.territory-map-figure > figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 690;
}

.territory-map-figure > figcaption i {
  display: inline-block;
  width: 17px;
  height: 9px;
  border-radius: 3px;
}

.territory-map-figure .legend-urban {
  border: 1px solid #3155d8;
  background: linear-gradient(135deg, #4f7cff, #3155d8);
}

.territory-map-figure .legend-rural {
  border: 1px solid #087a91;
  background: linear-gradient(135deg, #19b9c5, #087a91);
}

.territory-map-figure > figcaption em {
  margin-left: auto;
  color: #566a83;
  font-style: normal;
}

.insight-demo-badge {
  display: inline-flex;
  min-height: 32px;
  padding: 6px 10px;
  align-items: center;
  border: 1px solid #d6e3f4;
  border-radius: 999px;
  background: #f8fbff;
  color: #60748e;
  font-size: 0.75rem;
  font-weight: 770;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quota-chart-figure {
  padding: 19px;
  border: 1px solid #e0e9f4;
  border-radius: 21px;
  background: linear-gradient(rgb(65 112 184 / 5%) 1px, transparent 1px), #f8fbff;
  background-size: 100% 30px;
  box-shadow: 0 12px 32px rgb(26 58 99 / 5%) inset;
}

.quota-chart-layout {
  display: grid;
  margin-top: 17px;
  align-items: center;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 29px);
}

.quota-ring {
  position: relative;
  width: 132px;
  max-width: 100%;
  aspect-ratio: 1;
}

.quota-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.quota-ring circle {
  fill: none;
  stroke-width: 10;
}

.quota-ring-track {
  stroke: #e1eaf5;
}

.quota-ring-value {
  stroke: #3978ed;
  stroke-dasharray: 72 100;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  filter: drop-shadow(0 6px 8px rgb(57 120 237 / 22%));
  transition:
    stroke-dashoffset 1.15s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.45s ease;
}

.quota-ring > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.quota-ring strong,
.quota-ring small {
  display: block;
}

.quota-ring strong {
  color: #0d2340;
  font-size: 1.75rem;
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1;
}

.quota-ring small {
  margin-top: 5px;
  color: #596d85;
  font-size: 0.75rem;
  font-weight: 680;
}

.quota-bars {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.quota-bars li > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.quota-bars strong {
  color: #203650;
  font-size: 0.78rem;
}

.quota-bars small {
  color: #566a83;
  font-size: 0.75rem;
}

.quota-bars li > i {
  display: block;
  height: 8px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3ebf5;
}

.quota-bars li > i > b {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3778ed, #66a2ff);
  box-shadow: 0 3px 8px rgb(55 120 237 / 24%);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.2, 0.75, 0.2, 1) 0.12s;
}

.quota-value-82 {
  transform: scaleX(0.82);
}

.quota-value-68 {
  transform: scaleX(0.68);
  transition-delay: 0.22s !important;
}

.quota-value-74 {
  transform: scaleX(0.74);
  transition-delay: 0.32s !important;
}

.quota-chart-figure > figcaption {
  display: flex;
  margin-top: 16px;
  padding-top: 13px;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #e2eaf3;
  color: #596d85;
  font-size: 0.75rem;
}

.quota-chart-figure > figcaption i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25ad91;
  box-shadow: 0 0 0 4px rgb(37 173 145 / 12%);
}

.segmentation-chart-figure {
  padding: 19px;
  border: 1px solid #e0e9f1;
  border-radius: 21px;
  background: #f8fbfd;
  box-shadow: 0 12px 32px rgb(26 58 99 / 5%) inset;
}

.segmentation-chart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.segmentation-chart-topline strong {
  color: #203650;
  font-size: 0.78rem;
}

.segmentation-chart-topline span {
  color: #566a82;
  font-size: 0.75rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.segmentation-chart {
  margin-top: 16px;
}

.insight-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.segmentation-scale {
  display: flex;
  margin-left: 104px;
  justify-content: space-between;
  color: #5f7188;
  font-size: 0.75rem;
}

.segmentation-chart ol {
  display: grid;
  margin: 8px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.segmentation-chart li {
  display: grid;
  align-items: center;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
}

.segmentation-chart li > strong {
  color: #506279;
  font-size: 0.75rem;
  font-weight: 700;
}

.segmentation-stack {
  position: relative;
  display: flex;
  height: 24px;
  overflow: hidden;
  border: 3px solid #edf2f7;
  border-radius: 9px;
  background: #e4ebf3;
  box-shadow: 0 4px 10px rgb(27 63 102 / 8%);
}

.segmentation-stack i {
  display: grid;
  height: 100%;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
  text-shadow: 0 1px 2px rgb(8 24 47 / 32%);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) 0.18s;
}

.segmentation-stack i + i {
  box-shadow: -1px 0 0 rgb(255 255 255 / 55%);
}

.segmentation-stack i span {
  transform: scaleX(1);
}

.segment-a {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

.segment-b {
  background: linear-gradient(90deg, #5b21b6, #6d28d9);
  transition-delay: 0.28s !important;
}

.segment-c {
  background: linear-gradient(90deg, #0b6b61, #0f766e);
  transition-delay: 0.38s !important;
}

.segment-46 {
  width: 46%;
}

.segment-34 {
  width: 34%;
}

.segment-20 {
  width: 20%;
}

.segment-49 {
  width: 49%;
}

.segment-32 {
  width: 32%;
}

.segment-19 {
  width: 19%;
}

.segment-39 {
  width: 39%;
}

.segment-40 {
  width: 40%;
}

.segment-21 {
  width: 21%;
}

.segmentation-legend {
  display: flex;
  margin-top: 16px;
  padding-top: 13px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 15px;
  border-top: 1px solid #e1e9f1;
  color: #596d85;
  font-size: 0.75rem;
}

.segmentation-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.segmentation-legend i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.segmentation-legend .legend-a {
  background: #1d4ed8;
}

.segmentation-legend .legend-b {
  background: #5b21b6;
}

.segmentation-legend .legend-c {
  background: #0b6b61;
}

.motion-ready .insight-card:not(.is-chart-visible) .territory-plan-visual,
.motion-ready .insight-card:not(.is-chart-visible) .territory-map-summary {
  opacity: 0;
  transform: translateY(14px) scale(0.975);
}

.motion-ready .insight-card:not(.is-chart-visible) .quota-ring-value {
  opacity: 0.2;
  stroke-dashoffset: 72;
}

.motion-ready .insight-card:not(.is-chart-visible) .quota-bars li > i > b,
.motion-ready .insight-card:not(.is-chart-visible) .segmentation-stack i {
  transform: scaleX(0);
}

@media (max-width: 1020px) {
  .product-insights {
    grid-template-areas:
      'map'
      'quota'
      'results';
    grid-template-columns: minmax(0, 1fr);
  }

  .insight-card-map {
    min-height: 0;
  }

  .territory-map-canvas {
    height: clamp(370px, 55vw, 510px);
  }
}

@media (max-width: 780px) {
  .product-insights {
    gap: 16px;
  }

  .insight-card {
    padding: 25px;
    border-radius: 24px;
  }

  .insight-card h3 {
    font-size: 1.5rem;
  }

  .territory-map-canvas {
    height: clamp(350px, 61vw, 430px);
    border-radius: 20px;
  }

  .territory-map-figure > figcaption em {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .insight-card {
    padding: 21px;
    border-radius: 22px;
  }

  .insight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 19px;
    border-radius: 15px;
  }

  .insight-card h3 {
    font-size: 1.38rem;
  }

  .insight-card-heading > p {
    font-size: 0.86rem;
  }

  .territory-map-figure,
  .quota-chart-figure,
  .segmentation-chart-figure {
    margin-top: 24px;
  }

  .territory-map-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .territory-map-canvas {
    height: 340px;
  }

  .territory-plan-visual {
    padding: 8px;
  }

  .territory-map-summary {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .territory-map-summary span {
    margin-top: 8px;
    justify-self: start;
    grid-column: 1;
    grid-row: auto;
  }

  .territory-map-compass {
    top: 13px;
    right: 13px;
  }

  .territory-plan-progress {
    top: 12px;
    right: 12px;
    min-width: 124px;
    padding: 10px 12px;
  }

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

  .quota-ring {
    width: 124px;
    margin-inline: auto;
  }

  .segmentation-scale {
    margin-left: 84px;
  }

  .segmentation-chart li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .segmentation-chart li > strong {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .territory-plan-visual,
  .territory-map-summary,
  .quota-ring-value,
  .quota-bars li > i > b,
  .segmentation-stack i {
    transition: none !important;
  }
}

/* End product intelligence */

/* Analytics dashboard — progressive, accessible and intentionally demonstrative */
.insight-context-note {
  display: inline-flex;
  width: fit-content;
  max-width: min(680px, 100%);
  margin: 18px auto 0 !important;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #d8e3f2;
  border-radius: 999px;
  background: rgb(255 255 255 / 84%);
  color: #4f627a !important;
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
  box-shadow: 0 9px 24px rgb(20 47 82 / 6%);
}

.insight-context-note > span {
  color: #3d67d8;
  font-size: 1rem;
}

.insight-context-note strong {
  color: #203a5d;
}

.product-insights {
  margin-top: clamp(34px, 4vw, 54px);
  align-items: start;
  grid-template-areas:
    'map map'
    'quota results';
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.insight-card {
  isolation: isolate;
  padding: clamp(24px, 2.1vw, 38px);
  border-color: #dce6f2;
  border-radius: 26px;
  background: linear-gradient(145deg, rgb(255 255 255 / 98%), rgb(248 251 255 / 96%)), #fff;
  box-shadow:
    0 26px 76px rgb(13 37 69 / 10%),
    0 1px 0 #fff inset;
  backdrop-filter: blur(14px);
}

.insight-card::before {
  z-index: -1;
  width: 320px;
  background: radial-gradient(circle, rgb(72 103 225 / 9%), transparent 70%);
}

.insight-card-map {
  min-height: 0;
  background:
    radial-gradient(circle at 90% 3%, rgb(83 91 232 / 10%), transparent 25%),
    linear-gradient(145deg, #fff, #f8faff 76%);
}

.insight-card-quota,
.insight-card-results {
  background:
    radial-gradient(circle at 96% 1%, rgb(35 105 221 / 8%), transparent 27%),
    linear-gradient(145deg, #fff, #f8fbff 78%);
}

.insight-card-results {
  background:
    radial-gradient(circle at 96% 1%, rgb(12 139 124 / 8%), transparent 27%),
    linear-gradient(145deg, #fff, #f8fcfb 78%);
}

.insight-card-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 15px;
}

.insight-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgb(82 106 179 / 10%);
  border-radius: 14px;
  grid-column: 1;
  grid-row: 1 / span 3;
  box-shadow: 0 12px 25px rgb(31 62 105 / 10%);
}

.insight-icon svg {
  width: 22px;
}

.insight-kicker,
.insight-card h3,
.insight-card-heading > p {
  grid-column: 2;
}

.insight-kicker {
  margin: 1px 0 6px;
  color: #3764ca;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.insight-card h3 {
  max-width: 660px;
  font-size: clamp(1.35rem, 1.65vw, 1.7rem);
  letter-spacing: -0.038em;
  line-height: 1.15;
}

.insight-card-heading > p {
  max-width: 700px;
  margin-top: 10px;
  color: #5c6f87;
  font-size: 0.86rem;
  line-height: 1.62;
}

.analytics-toolbar {
  display: flex;
  min-width: 0;
  margin-top: 26px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #dde6f2;
  border-radius: 13px;
  background: #f8fafe;
  box-shadow: 0 1px 0 #fff inset;
}

.analytics-toolbar p,
.analytics-visual-heading p {
  display: flex;
  min-width: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 9px;
}

.analytics-toolbar p span {
  color: #65758c;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.analytics-toolbar p strong {
  color: #163252;
  font-size: 0.8rem;
}

.analytics-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: #4c627c;
  font-size: 0.74rem;
  white-space: nowrap;
}

.analytics-status i {
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #15957f;
  box-shadow: 0 0 0 3px rgb(21 149 127 / 14%);
}

.analytics-kpis {
  display: grid;
  margin: 14px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.analytics-kpis > div {
  min-width: 0;
  padding: 14px 15px 13px;
  border: 1px solid #e0e8f2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 22px rgb(17 48 86 / 5%);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.analytics-kpis dt {
  overflow: hidden;
  color: #687a91;
  font-size: 0.69rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-kpis dd {
  margin: 7px 0 0;
  color: #102d4e;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.analytics-kpis small {
  display: block;
  margin-top: 5px;
  color: #697b91;
  font-size: 0.68rem;
}

.territory-dashboard-grid {
  display: grid;
  margin-top: 12px;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 12px;
}

.analytics-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 17px;
  border: 1px solid #dde7f2;
  border-radius: 17px;
  background: #fff;
  box-shadow:
    0 12px 34px rgb(18 51 91 / 6%),
    0 1px 0 #fff inset;
}

.territory-map-figure,
.trend-chart-figure {
  display: flex;
  flex-direction: column;
}

.analytics-visual-heading {
  display: flex;
  min-width: 0;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analytics-visual-heading p {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.analytics-visual-heading strong {
  color: #183652;
  font-size: 0.8rem;
}

.analytics-visual-heading p span {
  color: #6d7c91;
  font-size: 0.68rem;
}

.analytics-chip,
.insight-demo-badge,
.trend-change {
  display: inline-flex;
  min-height: 29px;
  padding: 5px 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e1ef;
  border-radius: 999px;
  background: #f7f9fd;
  color: #506985;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.territory-map-heading .analytics-chip {
  font-size: 0.69rem;
}

.territory-map-heading p span {
  font-size: 0.69rem;
}

.trend-change {
  border-color: #cce9e1;
  background: #f0fbf7;
  color: #087b69;
}

.trend-change i {
  margin-right: 4px;
  font-style: normal;
}

.territory-map-workspace {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.territory-map-canvas {
  position: relative;
  isolation: isolate;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #ccd9e8;
  border-radius: 15px;
  background:
    radial-gradient(circle at 24% 17%, rgb(255 255 255 / 92%), transparent 34%),
    linear-gradient(145deg, #f2f6fb, #e7eef7 58%, #eef4f9);
  box-shadow:
    0 16px 34px rgb(22 55 93 / 12%),
    0 1px 0 #fff inset;
  aspect-ratio: 600 / 380;
}

.territory-map-canvas::after {
  z-index: 3;
  border: 1px solid rgb(255 255 255 / 68%);
  background: linear-gradient(118deg, rgb(255 255 255 / 19%), transparent 31%);
}

.territory-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition:
    opacity 0.65s ease,
    transform 1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.territory-map-frame {
  fill: rgb(238 244 250 / 82%);
  stroke: #c4d2e2;
  stroke-width: 1.2;
}

.territory-map-frame-marks {
  fill: none;
  stroke: #859bb6;
  stroke-opacity: 0.72;
  stroke-width: 1.1;
}

.territory-state-shadow {
  fill: #fff;
  filter: url('#mg-state-shadow');
}

.territory-state-shape {
  fill: url('#mg-state-fill');
}

.territory-state-outline {
  fill: none;
  stroke: #6a809a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.territory-locator-ring {
  fill: rgb(45 106 223 / 8%);
  stroke: #2d6adf;
  stroke-opacity: 0.4;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.territory-locator-municipality {
  fill: #205ed4;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 2.2;
  filter: drop-shadow(0 2px 3px rgb(25 70 148 / 32%));
  vector-effect: non-scaling-stroke;
}

.territory-locator-connector {
  fill: none;
  stroke: #4b71c7;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.territory-locator-connector-dot {
  fill: #205ed4;
  stroke: #fff;
  stroke-width: 2;
}

.territory-map-detail-inset > rect {
  fill: rgb(255 255 255 / 93%);
  stroke: #c5d3e3;
  stroke-width: 1.2;
  filter: drop-shadow(0 8px 12px rgb(35 63 100 / 13%));
}

.territory-map-glow {
  fill: none;
  stroke: #3c75dc;
  stroke-opacity: 0.15;
  stroke-width: 13;
  vector-effect: non-scaling-stroke;
}

.territory-map-shape {
  fill: url('#jf-municipality-fill');
  filter: url('#jf-municipality-shadow');
}

.territory-map-outline {
  fill: none;
  stroke: #2f64c4;
  stroke-linejoin: round;
  stroke-opacity: 0.94;
  stroke-width: 2.3;
  vector-effect: non-scaling-stroke;
}

.territory-map-detail-label {
  position: absolute;
  z-index: 4;
  top: 57.8%;
  left: 68%;
  display: grid;
  width: 24.5%;
  max-width: 24.5%;
  margin: 0;
  color: #193752;
  line-height: 1.2;
}

.territory-map-detail-label span {
  color: #526a85;
  font-size: 0.69rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.territory-map-detail-label strong {
  margin-top: 3px;
  font-size: 0.7rem;
  font-weight: 650;
  white-space: nowrap;
}

.territory-map-compass {
  z-index: 4;
  top: 14px;
  right: auto;
  left: 14px;
  width: 34px;
  height: 34px;
  border-color: #bdcddd;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 7px 16px rgb(29 59 96 / 10%);
  color: #23415f;
}

.territory-map-compass::before {
  display: none;
}

.territory-map-compass b {
  position: absolute;
  right: 5px;
  bottom: 3px;
  font-size: 0.53rem;
}

.territory-map-compass i {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 13px solid #2d67d0;
  border-left: 6px solid transparent;
  filter: drop-shadow(0 2px 2px rgb(33 73 132 / 22%));
}

.territory-map-layers {
  min-width: 0;
  padding: 10px;
  border: 1px solid #d9e3ee;
  border-radius: 13px;
  background: #f7f9fc;
  transition:
    opacity 0.55s ease 0.08s,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1) 0.08s;
}

.territory-map-layers header {
  display: flex;
  margin-bottom: 8px;
  padding: 0 2px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.territory-map-layers header span {
  color: #263f5b;
  font-size: 0.74rem;
  font-weight: 620;
}

.territory-map-layers header strong {
  padding: 3px 7px;
  border: 1px solid #cfe0f4;
  border-radius: 999px;
  background: #eef5ff;
  color: #285baa;
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.territory-map-layers dl {
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.territory-map-layers dl > div {
  min-width: 0;
  padding: 9px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #fff;
}

.territory-map-layers dl > div.is-active {
  border-color: #c6d8f4;
  box-shadow: 0 5px 13px rgb(47 94 165 / 7%);
}

.territory-map-layers dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #27425f;
  font-size: 0.72rem;
  font-weight: 620;
  line-height: 1.25;
}

.territory-map-layers dd {
  margin: 4px 0 0 16px;
  color: #596d85;
  font-size: 0.69rem;
  line-height: 1.3;
}

.territory-map-layers dt i {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
}

.layer-symbol-boundary {
  border: 2px solid #2f68cf;
  border-radius: 3px;
  background: #dce9ff;
}

.layer-symbol-grid {
  border: 1px solid #7e92aa;
  background:
    linear-gradient(#8da1b8 1px, transparent 1px),
    linear-gradient(90deg, #8da1b8 1px, transparent 1px);
  background-size: 4px 4px;
}

.layer-symbol-hidden {
  position: relative;
  border: 1px solid #96a6b8;
  border-radius: 50%;
}

.layer-symbol-hidden::after {
  position: absolute;
  top: 4px;
  left: -2px;
  width: 13px;
  height: 1px;
  background: #7c8ea3;
  content: '';
  transform: rotate(-45deg);
}

.territory-map-layers > p {
  margin: 8px 2px 0;
  color: #596d83;
  font-size: 0.69rem;
  line-height: 1.4;
}

.territory-map-figure > figcaption,
.trend-chart-figure > figcaption,
.quota-chart-figure > figcaption,
.segmentation-chart-figure > figcaption {
  display: flex;
  margin-top: 11px;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 14px;
  border: 0;
  color: #617288;
  font-size: 0.67rem;
}

.territory-map-figure > figcaption {
  font-size: 0.7rem;
}

.territory-map-figure > figcaption span,
.trend-chart-figure > figcaption span,
.quota-chart-figure > figcaption span,
.segmentation-chart-figure > figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.territory-map-figure > figcaption em,
.trend-chart-figure > figcaption em,
.quota-chart-figure > figcaption em,
.segmentation-chart-figure > figcaption em {
  margin-left: auto;
  color: #6c7b90;
  font-style: normal;
}

.territory-map-figure .legend-boundary,
.legend-sync,
.quota-chart-figure > figcaption i {
  display: inline-block;
  width: 13px;
  height: 7px;
  border: 2px solid #3f77e1;
  border-radius: 3px;
  background: rgb(63 119 225 / 11%);
}

.territory-map-figure .legend-locator,
.territory-map-figure .legend-grid {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.territory-map-figure .legend-locator {
  border: 2px solid #fff;
  border-radius: 50%;
  background: #205ed4;
  box-shadow: 0 0 0 2px rgb(32 94 212 / 30%);
}

.territory-map-figure .legend-grid {
  border: 1px solid #8296ad;
  background:
    linear-gradient(#8ba0b7 1px, transparent 1px),
    linear-gradient(90deg, #8ba0b7 1px, transparent 1px);
  background-size: 4px 4px;
}

.legend-sync {
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: #4f70ed;
}

.quota-chart-figure > figcaption i {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #278cdd;
  box-shadow: 0 0 0 3px rgb(39 140 221 / 11%);
}

.territory-map-attribution {
  display: flex;
  margin: 7px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px 9px;
  color: #586b82;
  font-size: 0.69rem;
  line-height: 1.48;
}

.territory-map-attribution a {
  min-height: 34px;
  color: #315fbf;
  font-size: 0.69rem;
  font-weight: 550;
  text-underline-offset: 2px;
}

.analytics-svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #dfe7f1;
  stroke-dasharray: 2 5;
  stroke-width: 1;
}

.chart-axis-labels {
  fill: #738399;
  font-family: inherit;
  font-size: 11px;
}

.trend-chart .chart-axis-labels text {
  text-anchor: middle;
}

.trend-chart .chart-axis-labels text:nth-child(-n + 4) {
  text-anchor: end;
}

.trend-summary {
  display: grid;
  min-width: 0;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid #e2e9f2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.trend-summary > div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #dfe7f1;
  border-radius: 10px;
  background: #f7f9fc;
}

.trend-summary dt {
  color: #63758c;
  font-size: 0.69rem;
}

.trend-summary dd {
  margin: 5px 0 0;
  overflow: hidden;
  color: #1b3856;
  font-size: 0.86rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trend-reading-note {
  display: flex;
  margin: 9px 0 0;
  padding: 10px 11px;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #d8e5f4;
  border-radius: 10px;
  background: #f3f7fd;
  color: #53687f;
  font-size: 0.69rem;
  line-height: 1.45;
}

.trend-reading-note i {
  color: #376bd1;
  font-size: 0.85rem;
  font-style: normal;
}

.trend-reading-note strong {
  color: #24425f;
  font-weight: 650;
}

.trend-area {
  fill: url('#trend-area-fill');
  opacity: 1;
  transition: opacity 0.72s ease 0.15s;
}

.trend-line {
  fill: none;
  stroke: #4f70ed;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 5px 7px rgb(79 112 237 / 22%));
  transition: stroke-dashoffset 1.25s cubic-bezier(0.25, 0.75, 0.2, 1);
}

.chart-point {
  cursor: help;
  opacity: 1;
  outline: none;
  transform: scale(1);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chart-point > circle:last-child {
  fill: #fff;
  stroke: #4f70ed;
  stroke-width: 3;
}

.chart-point-ring {
  fill: #4f70ed;
  opacity: 0.13;
  transition: opacity 0.2s ease;
}

.chart-point:is(:hover, :focus-visible) .chart-point-ring {
  opacity: 0.38;
}

.chart-point:focus-visible > circle:last-child {
  stroke: #17398e;
  stroke-width: 4;
}

.chart-tooltip {
  position: absolute;
  z-index: 9;
  top: 54px;
  right: 16px;
  max-width: min(230px, calc(100% - 24px));
  padding: 8px 10px;
  border: 1px solid rgb(197 220 245 / 24%);
  border-radius: 9px;
  background: #102a48;
  box-shadow: 0 12px 28px rgb(5 22 43 / 23%);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.chart-tooltip.is-active {
  opacity: 1;
  transform: translateY(0);
}

.quota-chart-figure,
.segmentation-chart-figure {
  margin-top: 24px;
  padding: 17px;
  border-color: #dde7f2;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(18 51 91 / 6%);
}

.quota-summary-grid {
  display: grid;
  margin: 2px 0 8px;
}

.quota-donut-wrap {
  display: grid;
  min-width: 0;
  padding: 13px 14px;
  align-items: center;
  border: 1px solid #e2e9f3;
  border-radius: 14px;
  background: #f8fafe;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 15px;
}

.quota-donut {
  position: relative;
  width: 122px;
  max-width: 100%;
  aspect-ratio: 1;
}

.quota-donut svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.quota-donut circle {
  fill: none;
  stroke-width: 11;
}

.quota-donut-track {
  stroke: #dce5f0;
}

.quota-donut-rest {
  stroke: #b9c9dc;
  stroke-dasharray: 28 72;
  stroke-dashoffset: -72;
}

.quota-donut-value {
  stroke: #3775e8;
  stroke-dasharray: 72 28;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  filter: drop-shadow(0 6px 8px rgb(55 117 232 / 24%));
  transition: stroke-dashoffset 1.15s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.quota-donut > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.quota-donut strong {
  color: #102d4e;
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.quota-donut small {
  margin-top: 5px;
  color: #65778e;
  font-size: 0.65rem;
}

.quota-donut-legend {
  display: grid;
  min-width: 0;
  margin: 0;
  gap: 9px;
}

.quota-donut-legend > div {
  display: flex;
  min-width: 0;
  padding-bottom: 9px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e2e9f2;
}

.quota-donut-legend > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quota-donut-legend dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  color: #586b83;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quota-donut-legend dt i,
.segmentation-legend i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 3px;
}

.legend-complete {
  background: #3775e8;
}

.legend-pending {
  background: #b9c9dc;
}

.quota-donut-legend dd {
  margin: 0;
  color: #173654;
  font-size: 0.82rem;
  font-weight: 600;
}

.quota-bars-chart {
  margin-top: 4px;
}

.quota-axis text,
.segmentation-axis text {
  text-anchor: middle;
}

.quota-axis text:nth-child(n + 6),
.segmentation-axis text:nth-child(n + 6) {
  text-anchor: end;
}

.chart-bar-track {
  fill: #e7edf5;
}

.quota-bar {
  cursor: help;
  outline: none;
}

.quota-bar .chart-focus-target {
  fill: #3775e8;
  transform: scaleX(1);
  transform-box: fill-box;
  transform-origin: left center;
  transition:
    filter 0.2s ease,
    stroke 0.2s ease,
    transform 0.95s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.quota-bar text {
  fill: #23425f;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
}

.quota-bar:is(:hover, :focus-visible) .chart-focus-target {
  filter: drop-shadow(0 5px 7px rgb(55 117 232 / 22%));
  stroke: #173d9f;
  stroke-width: 2;
}

.segmentation-filter-row {
  display: flex;
  margin: 2px 0 4px;
  padding: 4px;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #f7f9fc;
}

.segmentation-filter-row span {
  min-width: 0;
  padding: 6px 8px;
  border-radius: 7px;
  color: #627289;
  font-size: 0.64rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.segmentation-filter-row .is-current {
  background: #fff;
  box-shadow: 0 3px 9px rgb(16 45 79 / 8%);
  color: #244c95;
  font-weight: 600;
}

.segmentation-chart {
  margin-top: 4px;
}

.segment-row > g {
  cursor: help;
  outline: none;
}

.segment-row .chart-focus-target {
  transform: scaleX(1);
  transform-box: fill-box;
  transform-origin: left center;
  transition:
    filter 0.2s ease,
    stroke 0.2s ease,
    transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.segment-row text {
  fill: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  pointer-events: none;
  text-anchor: middle;
  text-shadow: 0 1px 2px rgb(4 20 42 / 34%);
}

.segment-row .segment-a {
  fill: #1d4ed8;
}

.segment-row .segment-b {
  fill: #5b21b6;
}

.segment-row .segment-c {
  fill: #0b6b61;
}

.segment-row > g:is(:hover, :focus-visible) .chart-focus-target {
  filter: drop-shadow(0 5px 6px rgb(15 36 66 / 25%));
  stroke: #fff;
  stroke-width: 3;
}

.segmentation-legend {
  padding-top: 11px !important;
  border-top: 1px solid #e3eaf3 !important;
}

.segmentation-legend .legend-a {
  background: #1d4ed8;
}

.segmentation-legend .legend-b {
  background: #5b21b6;
}

.segmentation-legend .legend-c {
  background: #0b6b61;
}

.insight-noscript {
  margin: 14px 0 0;
  padding: 11px 14px;
  border: 1px solid #d9e4f1;
  border-radius: 12px;
  background: #fff;
  color: #4e6179;
  font-size: 0.76rem;
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-map,
.motion-ready .insight-card:not(.is-chart-visible) .territory-map-layers,
.motion-ready .insight-card:not(.is-chart-visible) .analytics-kpis > div {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-area {
  opacity: 0;
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-line {
  stroke-dashoffset: 1;
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-point {
  opacity: 0;
  transform: scale(0);
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-donut {
  stroke-dashoffset: 72;
}

.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-bar,
.motion-ready .insight-card:not(.is-chart-visible) .chart-animate-segment {
  transform: scaleX(0);
}

.chart-delay-1,
.chart-delay-1 .chart-animate-bar,
.chart-delay-1 .chart-animate-segment {
  transition-delay: 0.1s;
}

.chart-delay-2,
.chart-delay-2 .chart-animate-bar,
.chart-delay-2 .chart-animate-segment {
  transition-delay: 0.18s;
}

.chart-delay-3,
.chart-delay-3 .chart-animate-bar,
.chart-delay-3 .chart-animate-segment {
  transition-delay: 0.26s;
}

.chart-delay-4,
.chart-delay-4 .chart-animate-bar {
  transition-delay: 0.34s;
}

.chart-delay-5 {
  transition-delay: 0.42s;
}

.chart-delay-6 {
  transition-delay: 0.5s;
}

.chart-delay-7 {
  transition-delay: 0.58s;
}

@media (min-width: 1680px) {
  .product-insights {
    grid-template-areas:
      'map map'
      'quota results';
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .territory-dashboard-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }
}

@media (max-width: 1180px) {
  .product-insights {
    grid-template-areas:
      'map'
      'quota'
      'results';
    grid-template-columns: minmax(0, 1fr);
  }

  .insight-card-map {
    grid-area: map;
  }

  .insight-card-quota {
    grid-area: quota;
  }

  .insight-card-results {
    grid-area: results;
  }

  .quota-chart-figure,
  .segmentation-chart-figure {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .product-insights {
    gap: 16px;
  }

  .insight-card {
    padding: 22px;
    border-radius: 22px;
  }

  .analytics-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .analytics-kpis > div {
    padding: 12px;
  }

  .analytics-visual,
  .quota-chart-figure,
  .segmentation-chart-figure {
    padding: 14px;
  }

  .territory-map-canvas {
    height: auto;
    border-radius: 13px;
  }
}

@media (max-width: 900px) {
  .territory-dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .insight-context-note {
    align-items: flex-start;
    border-radius: 15px;
    text-align: left;
  }

  .insight-card {
    padding: 18px;
    border-radius: 20px;
  }

  .insight-card-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
  }

  .insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .insight-icon svg {
    width: 19px;
  }

  .insight-card h3 {
    font-size: 1.25rem;
  }

  .insight-card-heading > p {
    font-size: 0.8rem;
  }

  .analytics-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .analytics-kpis > div {
    padding: 10px 8px;
    border-radius: 11px;
  }

  .analytics-kpis dt {
    font-size: 0.59rem;
  }

  .analytics-kpis dd {
    font-size: 1.32rem;
  }

  .analytics-kpis small {
    font-size: 0.58rem;
  }

  .analytics-visual,
  .quota-chart-figure,
  .segmentation-chart-figure {
    padding: 12px;
    border-radius: 14px;
  }

  .analytics-visual-heading {
    align-items: flex-start;
  }

  .analytics-chip,
  .insight-demo-badge,
  .trend-change {
    min-height: 26px;
    padding: 4px 7px;
    font-size: 0.58rem;
  }

  .territory-map-compass {
    top: 10px;
    right: auto;
    left: 10px;
  }

  .territory-map-layers dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .territory-map-layers dl > div {
    padding: 8px 9px;
  }

  .territory-map-layers dd {
    margin-left: 16px;
  }

  .territory-map-attribution {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .territory-map-attribution a {
    min-height: 40px;
  }

  .quota-donut-wrap {
    padding: 11px;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
  }

  .quota-donut {
    width: 104px;
  }

  .quota-donut strong {
    font-size: 1.45rem;
  }

  .quota-donut-legend dt {
    font-size: 0.62rem;
  }

  .quota-donut-legend dd {
    font-size: 0.75rem;
  }

  .chart-axis-labels,
  .quota-bar text,
  .segment-row text {
    font-size: 14px;
  }

  .segmentation-filter-row span {
    padding-inline: 6px;
    font-size: 0.59rem;
  }

  .territory-map-figure > figcaption em,
  .trend-chart-figure > figcaption em,
  .quota-chart-figure > figcaption em,
  .segmentation-chart-figure > figcaption em {
    width: 100%;
    margin-left: 0;
  }

  .chart-tooltip {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .analytics-kpis > div,
  .territory-map-svg,
  .territory-map-layers,
  .trend-area,
  .trend-line,
  .chart-point,
  .quota-donut-value,
  .quota-bar .chart-focus-target,
  .segment-row .chart-focus-target {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .chart-tooltip {
    transition: none !important;
  }

  .trend-line {
    stroke-dashoffset: 0 !important;
  }

  .quota-donut-value {
    stroke-dashoffset: 0 !important;
  }
}

/* End analytics dashboard */

/* Portal typography and first-screen fit
   The commercial page uses a restrained weight scale so hierarchy comes from
   size, spacing and color without turning every label into bold text. */
body.portal-vendas {
  --portal-weight-regular: 400;
  --portal-weight-medium: 500;
  --portal-weight-emphasis: 500;
  --portal-weight-heading: 600;
  --portal-weight-action: 600;
  font-weight: var(--portal-weight-regular);
}

body.portal-vendas [class] :is(h1, h2, h3, h4),
body.portal-vendas .hero h1,
body.portal-vendas .digital-disk-copy h2,
body.portal-vendas .insight-card h3 {
  font-weight: var(--portal-weight-heading);
}

body.portal-vendas [class] :is(strong, b, dt),
body.portal-vendas
  :is(
    .eyebrow,
    .insight-kicker,
    .insight-demo-badge,
    .recommended-badge,
    .professional-recommendation-badge,
    .professional-reciprocal-badge
  ) {
  font-weight: var(--portal-weight-emphasis);
}

body.portal-vendas :is(.brand-name, .button) {
  font-weight: var(--portal-weight-action);
}

body.portal-vendas :is(.desktop-nav a, .login-link, .experience-rail li) {
  font-weight: var(--portal-weight-medium);
}

body.portal-vendas .hero-grid > * {
  min-width: 0;
}

body.portal-vendas .product-window {
  width: min(710px, 100%);
  max-width: 100%;
  overflow: hidden;
  transform: none;
}

body.portal-vendas .product-window-halo {
  display: none;
}

body.portal-vendas .preview-float-progress {
  left: 18px;
}

body.portal-vendas .preview-float-sync {
  right: 18px;
}

/* The public demo mirrors the pie-slice presentation in the field form. */
body.portal-vendas .digital-disk-demo {
  max-width: 600px;
  padding: 0 0 24px;
  border-color: #dce4ee;
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: 0 34px 80px rgb(15 35 63 / 18%);
  color: #0f172a;
}

body.portal-vendas .digital-disk-demo::before {
  display: none;
}

body.portal-vendas .digital-disk-demo-heading {
  min-height: 67px;
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

body.portal-vendas .digital-disk-demo-heading span {
  color: #a21caf;
  font-weight: var(--portal-weight-emphasis);
}

body.portal-vendas .digital-disk-demo-heading strong {
  color: #64748b;
  font-weight: var(--portal-weight-regular);
}

.digital-disk-question {
  padding: 22px 24px 0;
  text-align: center;
}

.digital-disk-question strong,
.digital-disk-question small {
  display: block;
}

.digital-disk-question strong {
  color: #0f172a;
  font-size: 1.15rem;
}

.digital-disk-question small {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.76rem;
}

body.portal-vendas .digital-disk {
  display: block;
  width: min(calc(100% - 52px), 410px);
  margin: 18px auto;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 24px 44px rgb(30 41 59 / 24%);
  animation: none;
}

.digital-disk-slice path {
  stroke: #fdf4ff;
  stroke-width: 0.8;
}

.digital-disk-slice-one path {
  fill: #5b21b6;
}

.digital-disk-slice-two path {
  fill: #9d174d;
}

.digital-disk-slice-three path {
  fill: #1d4ed8;
}

.digital-disk-slice-four path {
  fill: #047857;
}

.digital-disk-slice.is-selected path {
  fill: #1e1b4b;
  filter: brightness(1.12);
}

.digital-disk-slice text,
.digital-disk-core-title,
.digital-disk-core-subtitle {
  fill: #fff;
  font-size: 5px;
  font-weight: var(--portal-weight-emphasis);
  paint-order: stroke;
  stroke: rgb(15 23 42 / 65%);
  stroke-width: 0.35px;
  text-anchor: middle;
}

.digital-disk-core {
  fill: #4a044e;
  stroke: #fdf4ff;
  stroke-width: 0.8;
}

.digital-disk-core-title {
  font-size: 3.4px;
  font-weight: var(--portal-weight-heading);
  letter-spacing: 0.14em;
}

.digital-disk-core-subtitle {
  font-size: 3.1px;
  letter-spacing: 0.08em;
}

body.portal-vendas .digital-disk-confirmation {
  max-width: 330px;
  border-color: #d8e0ea;
  background: #fff;
  color: #1e293b;
}

body.portal-vendas .digital-disk-confirmation small {
  color: #64748b;
}

.digital-disk-technical {
  display: grid;
  max-width: 440px;
  margin: 18px auto 0;
  padding: 16px 18px 0;
  border-top: 1px solid #e2e8f0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.digital-disk-technical p {
  margin: 0 0 3px;
  grid-column: 1 / -1;
  text-align: center;
}

.digital-disk-technical strong,
.digital-disk-technical small {
  display: block;
}

.digital-disk-technical strong {
  color: #475569;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.digital-disk-technical small {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.66rem;
}

.digital-disk-technical > span {
  display: grid;
  min-height: 44px;
  padding: 8px 10px;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  font-size: 0.69rem;
  text-align: center;
}

@media (max-width: 780px) {
  body.portal-vendas .product-window {
    width: 100%;
  }

  body.portal-vendas .preview-float-progress {
    left: 10px;
  }

  body.portal-vendas .preview-float-sync {
    right: 10px;
  }
}

@media (max-width: 560px) {
  body.portal-vendas .preview-live {
    position: static;
    width: max-content;
    max-width: 100%;
    margin: 0 0 14px auto;
  }

  body.portal-vendas .real-preview-heading {
    max-width: none;
  }

  body.portal-vendas .real-product-preview {
    min-height: 470px;
  }

  body.portal-vendas .digital-disk-demo {
    padding-bottom: 20px;
  }

  body.portal-vendas .digital-disk-demo-heading {
    min-height: 0;
    padding: 14px 16px;
  }

  .digital-disk-question {
    padding: 18px 18px 0;
  }

  body.portal-vendas .digital-disk {
    width: min(calc(100% - 30px), 350px);
  }

  .digital-disk-technical {
    margin-inline: 15px;
    padding-inline: 0;
  }
}
