:root {
  --public-bg: #f3f7f5;
  --public-surface: #ffffff;
  --public-ink: #10231c;
  --public-ink-soft: #40534b;
  --public-muted: #708078;
  --public-line: #d8e3dd;
  --public-line-strong: #aebdb6;
  --public-brand: #00a874;
  --public-brand-strong: #007a55;
  --public-brand-soft: #e0f5ed;
  --public-navy: #10231c;
  --public-navy-soft: #17342a;
  --public-blue: #245c73;
  --public-gold: #e4a33b;
  --public-radius-sm: 10px;
  --public-radius: 16px;
  --public-radius-lg: 24px;
  --public-shadow: 0 24px 64px rgba(16, 35, 28, 0.12);
  --public-shadow-soft: 0 9px 28px rgba(16, 35, 28, 0.075);
  --font-display: "Sora", "Manrope", ui-sans-serif, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body.public-page {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--public-bg);
  color: var(--public-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 184, 122, 0.16);
}

.public-page a {
  color: inherit;
  text-decoration: none;
}

.public-page p,
.public-page h1,
.public-page h2,
.public-page h3,
.public-page ul,
.public-page ol,
.public-page dl,
.public-page figure {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  border-radius: 8px;
  background: var(--public-navy);
  color: #fff !important;
  padding: 10px 14px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.section-space {
  padding: 72px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--public-brand-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #5ee2b2;
}

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

.section-heading h2,
.problem-intro h2,
.proof-copy h2,
.access-copy h2 {
  margin-bottom: 16px;
  color: var(--public-ink);
  font-size: clamp(2rem, 8vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p:last-child,
.problem-intro > p:last-child,
.proof-copy > p,
.access-copy > p {
  margin-bottom: 0;
  color: var(--public-ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.public-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(189, 204, 195, 0.75);
  background: rgba(248, 252, 249, 0.96);
  box-shadow: 0 1px 0 rgba(16, 27, 51, 0.02);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.public-header.is-scrolled {
  border-bottom-color: rgba(189, 204, 195, 0.92);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 24px rgba(16, 27, 51, 0.08);
}

.public-header-inner {
  position: relative;
  display: flex;
  min-height: 70px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.public-brand {
  position: relative;
  display: inline-flex;
  width: 160px;
  height: 54px;
  flex: 0 0 160px;
  align-items: flex-start;
  border-radius: 10px;
  overflow: hidden;
}

.public-page .public-brand-logo {
  display: block;
  width: 205px;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(-22px, -39px);
}

.public-brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--public-brand);
  box-shadow: 0 3px 0 var(--public-brand-strong);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.public-brand-name {
  color: var(--public-navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.public-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--public-line-strong);
  border-radius: 11px;
  background: #fff;
  color: var(--public-navy);
  padding: 0;
}

.public-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.public-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.public-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.public-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.public-navigation {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--public-line);
  padding-top: 14px;
}

.js .public-nav-toggle {
  display: flex;
}

.js .public-navigation {
  display: none;
}

.js .public-navigation.is-open {
  display: flex;
}

.public-nav-links,
.public-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.public-nav-links a {
  min-height: 44px;
  border-radius: 9px;
  color: var(--public-ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 11px 8px;
  white-space: nowrap;
}

.public-nav-links a:hover {
  background: var(--public-brand-soft);
  color: var(--public-navy);
}

.button {
  display: inline-flex;
  min-width: 44px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.15;
  padding: 12px 18px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

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

.button-primary {
  border-color: var(--public-brand);
  background: var(--public-brand);
  box-shadow: 0 3px 0 var(--public-brand-strong);
  color: #fff !important;
}

.button-primary:hover {
  border-color: var(--public-brand-strong);
  background: var(--public-brand-strong);
}

.button-secondary {
  border-color: var(--public-line-strong);
  background: #fff;
  color: var(--public-navy) !important;
}

.button-secondary:hover {
  border-color: var(--public-navy);
  background: #f9fbfa;
}

.button-light {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 3px 0 rgba(16, 27, 51, 0.18);
  color: var(--public-navy) !important;
}

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

.button-large {
  min-height: 54px;
  padding: 15px 20px;
}

.hero-section {
  position: relative;
  border-bottom: 1px solid var(--public-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 245, 0.98)),
    repeating-linear-gradient(90deg, rgba(0, 184, 122, 0.04) 0 1px, transparent 1px 72px);
  padding: 58px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--public-navy);
  font-size: clamp(2.3rem, 9.5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-summary {
  max-width: 650px;
  margin-bottom: 17px;
  color: var(--public-ink-soft);
  font-size: clamp(1.02rem, 4.6vw, 1.22rem);
  line-height: 1.66;
}

.hero-slogan {
  margin: -8px 0 18px;
  color: var(--public-navy);
  font-size: clamp(1.05rem, 4.2vw, 1.3rem);
  font-weight: 760;
  line-height: 1.4;
}

.information-page {
  overflow: hidden;
}

.information-hero {
  border-bottom: 1px solid var(--public-line);
  background: linear-gradient(180deg, #f7fbf9 0%, #fff 100%);
  padding: 72px 0;
}

.information-hero-copy,
.information-narrow {
  max-width: 820px;
}

.information-hero h1,
.information-section h2 {
  color: var(--public-navy);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.information-hero h1 {
  font-size: clamp(2.35rem, 9vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.information-hero p,
.information-section p,
.information-card li,
.information-section details {
  color: var(--public-ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.information-hero p {
  max-width: 740px;
  margin-bottom: 28px;
}

.information-section {
  padding: 68px 0;
}

.information-section-muted {
  background: var(--public-soft);
}

.information-section h2 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.12;
  margin-bottom: 20px;
}

.information-grid,
.information-card-grid {
  display: grid;
  gap: 20px;
}

.information-card {
  border: 1px solid var(--public-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 27, 51, 0.06);
  padding: 24px;
}

.information-card h2,
.information-card h3 {
  color: var(--public-navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.information-card h3 {
  font-size: 1.1rem;
}

.information-card ul,
.information-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.information-section details {
  border-bottom: 1px solid var(--public-line);
  padding: 16px 0;
}

.information-section summary {
  color: var(--public-navy);
  cursor: pointer;
  font-weight: 800;
}

.information-section details p {
  margin: 12px 0 0;
}

.information-cta {
  text-align: center;
}

.information-cta .hero-actions {
  margin-inline: auto;
  max-width: 440px;
}

.hero-positioning {
  max-width: 590px;
  border-left: 3px solid var(--public-gold);
  color: var(--public-navy);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.6;
  margin-bottom: 22px;
  padding-left: 14px;
}

.hero-actions {
  display: grid;
  gap: 11px;
  margin-bottom: 18px;
}

.hero-assurances {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  color: var(--public-muted);
  font-size: 0.86rem;
  list-style: none;
  padding: 0;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--public-brand-soft);
  color: var(--public-brand-strong);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-preview {
  position: relative;
  min-width: 0;
  margin-bottom: 0;
}

.hero-enter-ready [data-hero-enter] {
  opacity: 0;
  transform: translateY(10px);
}

.hero-enter-ready [data-hero-enter="preview"] {
  transform: translateY(12px) scale(0.985);
}

.hero-enter-ready [data-hero-enter="actions"] {
  transform: translateY(7px);
}

.hero-enter-ready.hero-entered [data-hero-enter] {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-enter-ready.hero-entered [data-hero-enter="preview"] {
  transition-delay: 80ms;
}

.hero-enter-ready.hero-entered [data-hero-enter="actions"] {
  transition-delay: 140ms;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity 460ms ease var(--reveal-delay, 0ms),
    transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

.preview-caption {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 142, 93, 0.22);
  border-radius: 99px;
  background: #fff;
  box-shadow: var(--public-shadow-soft);
  color: var(--public-brand-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  margin: 0 0 -8px 14px;
  padding: 7px 11px;
  text-transform: uppercase;
}

.preview-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--public-brand);
  box-shadow: 0 0 0 4px var(--public-brand-soft);
}

.preview-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cddbd3;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--public-shadow);
  transform: rotate(-0.4deg);
}

.preview-window-bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #dce5df;
  background: #f5f8f6;
  padding: 0 12px;
}

.preview-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bcc7c0;
}

.preview-window-bar > span:first-child {
  background: var(--public-gold);
}

.preview-address {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  border: 1px solid #dce5df;
  border-radius: 6px;
  background: #fff;
  color: #8b968f;
  font-size: 0.56rem;
  margin-left: 5px;
  padding: 4px 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-app {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  background: #eef3f0;
}

.preview-sidebar {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--public-navy);
  padding: 12px 7px;
}

.preview-mini-brand {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--public-brand);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  margin-bottom: 3px;
}

.preview-sidebar > span {
  width: 16px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.24);
}

.preview-sidebar > span.is-active {
  background: var(--public-brand);
}

.preview-workspace {
  min-width: 0;
  padding: 14px 12px 16px;
}

.preview-heading {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
}

.preview-heading > div {
  min-width: 0;
}

.preview-heading p {
  margin-bottom: 3px;
  color: #7c897f;
  font-size: 0.6rem;
  font-weight: 750;
  text-transform: uppercase;
}

.preview-heading strong {
  display: block;
  overflow: hidden;
  color: var(--public-navy);
  font-size: 0.83rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-status {
  flex: 0 0 auto;
  border: 1px solid rgba(0, 184, 122, 0.28);
  border-radius: 99px;
  background: var(--public-brand-soft);
  color: var(--public-brand-strong);
  font-size: 0.55rem;
  font-weight: 850;
  padding: 5px 7px;
}

.preview-service-meta {
  display: grid;
  gap: 7px;
  border: 1px solid #dce5df;
  border-radius: 9px;
  background: #fff;
  margin-bottom: 13px;
  padding: 10px;
}

.preview-service-meta div {
  min-width: 0;
}

.preview-service-meta span,
.preview-service-meta strong {
  display: block;
}

.preview-service-meta span {
  color: #829087;
  font-size: 0.55rem;
  margin-bottom: 2px;
}

.preview-service-meta strong {
  overflow: hidden;
  color: var(--public-navy);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 13px;
}

.preview-progress::before {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #cfd9d3;
  content: "";
}

.preview-progress div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.preview-progress span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid #cfd9d3;
  border-radius: 50%;
  background: #eef3f0;
  color: #718077;
  font-size: 0.52rem;
  font-weight: 900;
}

.preview-progress .is-complete span,
.preview-progress .is-current span {
  border-color: var(--public-brand);
  background: var(--public-brand);
  color: #fff;
}

.preview-progress .is-current span {
  box-shadow: 0 0 0 4px var(--public-brand-soft);
}

.preview-progress small {
  color: #75837a;
  font-size: 0.48rem;
}

.preview-detail-grid {
  display: grid;
  gap: 9px;
}

.preview-checklist,
.preview-evidence {
  min-width: 0;
  border: 1px solid #dce5df;
  border-radius: 9px;
  background: #fff;
  padding: 9px;
}

.preview-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.preview-card-title span {
  color: var(--public-navy);
  font-size: 0.62rem;
  font-weight: 850;
}

.preview-card-title small {
  color: var(--public-brand-strong);
  font-size: 0.48rem;
}

.preview-check-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  border-top: 1px solid #edf1ee;
  padding: 7px 0;
}

.preview-check-row > span {
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #bdc9c1;
  border-radius: 4px;
  color: #fff;
  font-size: 0.48rem;
}

.preview-check-row.is-checked > span {
  border-color: var(--public-brand);
  background: var(--public-brand);
}

.preview-check-row p {
  margin: 0;
  color: #5e6b63;
  font-size: 0.54rem;
  line-height: 1.35;
}

.preview-evidence-list {
  display: grid;
  gap: 6px;
}

.preview-evidence-list > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  background: #f2f6f3;
  padding: 6px;
}

.preview-evidence-list span {
  display: grid;
  width: 28px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--public-navy);
  color: #fff;
  font-size: 0.4rem;
  font-weight: 900;
}

.preview-evidence-list strong {
  min-width: 0;
  overflow: hidden;
  color: #526058;
  font-size: 0.51rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.problem-section {
  background: var(--public-navy);
  color: #fff;
  padding: 72px 0;
}

.problem-grid {
  display: grid;
  gap: 38px;
}

.problem-intro h2 {
  color: #fff;
}

.problem-intro > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.problem-list {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.problem-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
  padding: 15px 0;
}

.problem-list span {
  color: var(--public-gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

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

.process-flow {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.process-flow li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: var(--public-surface);
  box-shadow: 0 1px 0 rgba(16, 27, 51, 0.03);
  padding: 20px;
}

.process-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--public-brand-soft);
  color: var(--public-brand-strong);
  font-size: 0.74rem;
  font-weight: 900;
}

.process-flow h3 {
  margin-bottom: 7px;
  color: var(--public-navy);
  font-size: 1.05rem;
  font-weight: 820;
}

.process-flow p {
  margin-bottom: 0;
  color: var(--public-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.resources-section {
  border-top: 1px solid var(--public-line);
  background: #eaf3ee;
}

.resources-layout {
  display: grid;
  gap: 15px;
}

.resource-group {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 22px;
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius-lg);
  background: #fff;
  box-shadow: var(--public-shadow-soft);
  padding: 25px 22px;
}

.resource-group-featured {
  background: var(--public-navy);
  color: #fff;
}

.resource-group-accent {
  border-color: rgba(226, 163, 60, 0.38);
  background: #fffaf0;
}

.resource-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--public-line);
  border-radius: 11px;
  color: var(--public-brand-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.resource-group-featured .resource-index {
  border-color: rgba(255, 255, 255, 0.22);
  color: #5ee2b2;
}

.resource-label {
  margin-bottom: 9px;
  color: var(--public-brand-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-group-featured .resource-label {
  color: #5ee2b2;
}

.resource-group h3 {
  margin-bottom: 11px;
  color: var(--public-navy);
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.resource-group-featured h3 {
  color: #fff;
}

.resource-group > div > p:not(.resource-label) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.resource-benefit {
  margin-bottom: 15px;
}

.resource-group:not(.resource-group-featured) .resource-benefit {
  color: var(--public-ink-soft);
}

.resource-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  list-style: none;
  padding: 0;
}

.resource-list li {
  position: relative;
  color: var(--public-ink-soft);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.45;
  padding-left: 22px;
}

.resource-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--public-brand);
  content: "";
}

.resource-group-featured .resource-list li {
  color: rgba(255, 255, 255, 0.86);
}

.resource-mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  padding: 13px;
}

.resource-mini-flow span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 750;
  padding: 7px 8px;
}

.resource-mini-flow i {
  width: 14px;
  height: 1px;
  background: var(--public-brand);
}

.availability-section {
  border-top: 1px solid var(--public-line);
  background: #f7fbf9;
}

.availability-heading {
  max-width: 700px;
}

.availability-layout {
  display: grid;
  gap: 16px;
}

.availability-card {
  min-width: 0;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius-lg);
  padding: 26px 22px;
}

.availability-card-now {
  background: #087354;
  box-shadow: var(--public-shadow);
  color: #fff;
}

.availability-card-future {
  align-self: stretch;
  background: #f7faff;
  border-color: #ced9e8;
}

.availability-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.availability-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
}

.availability-icon-check {
  background: #d7f8ea;
  color: #067453;
  font-size: 1.15rem;
  font-weight: 900;
}

.availability-icon-clock {
  border: 2px solid #54708f;
  border-radius: 50%;
}

.availability-icon-clock::before,
.availability-icon-clock::after {
  position: absolute;
  left: 19px;
  width: 2px;
  border-radius: 2px;
  background: #54708f;
  content: "";
}

.availability-icon-clock::before {
  top: 8px;
  height: 12px;
}

.availability-icon-clock::after {
  top: 19px;
  height: 9px;
  transform: rotate(122deg);
  transform-origin: top center;
}

.availability-label {
  margin-bottom: 7px;
  color: #5ee2b2;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.availability-card-future .availability-label {
  color: #54708f;
}

.availability-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.availability-card-future h3 {
  color: var(--public-navy);
}

.availability-intro,
.availability-future-note {
  margin: 20px 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.availability-intro {
  color: rgba(255, 255, 255, 0.76);
}

.availability-future-note {
  border-left: 3px solid #94aeca;
  color: var(--public-ink-soft);
  padding-left: 12px;
}

.availability-list,
.availability-future-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  list-style: none;
  padding: 0;
}

.availability-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.availability-list li > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 248, 234, 0.18);
  color: #d7f8ea;
  font-size: 0.68rem;
  font-weight: 900;
}

.availability-list strong,
.availability-future-list strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.availability-list strong {
  color: #fff;
}

.availability-list p,
.availability-future-list p {
  margin: 4px 0 0;
  font-size: 0.83rem;
  line-height: 1.45;
}

.availability-list p {
  color: rgba(255, 255, 255, 0.7);
}

.availability-future-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  border-top: 1px solid #d8e2ee;
  padding-top: 13px;
}

.availability-future-list li > span {
  width: fit-content;
  border: 1px solid #c7d5e5;
  border-radius: 999px;
  color: #54708f;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 7px;
  text-transform: uppercase;
}

.availability-future-list strong {
  color: var(--public-navy);
}

.availability-future-list p {
  color: var(--public-ink-soft);
}

.availability-cta {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 0 2px;
}

.availability-cta p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--public-ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background: var(--public-navy);
  color: #fff;
}

.proof-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 7px;
  background: var(--public-gold);
  content: "";
}

.proof-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}

.proof-copy h2 {
  color: #fff;
}

.proof-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.proof-points {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.proof-points > div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 15px 0;
}

.proof-points dt {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
}

.proof-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.proof-document {
  min-width: 0;
  margin-bottom: 0;
}

.proof-document > figcaption {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.proof-document-sheet {
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(3, 9, 20, 0.32);
  color: var(--public-navy);
  padding: 22px 18px;
}

.proof-document-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.proof-document-head span:not(.proof-seal),
.proof-document-meta span,
.proof-document-section > span,
.proof-hash > span {
  display: block;
  color: #859188;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.proof-document-head strong {
  display: block;
  font-size: 1.1rem;
}

.proof-seal {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--public-brand);
  color: #fff;
  font-weight: 900;
}

.proof-document-rule {
  border-top: 2px solid var(--public-navy);
  border-bottom: 1px solid #dce4df;
  height: 5px;
  margin: 17px 0;
}

.proof-document-meta {
  display: grid;
  gap: 12px;
}

.proof-document-meta strong {
  display: block;
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-document-section {
  border-top: 1px solid #dce4df;
  margin-top: 16px;
  padding-top: 14px;
}

.proof-document-section > div:not(.proof-file-row) {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #536158;
  font-size: 0.7rem;
}

.proof-document-section > div > i {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--public-brand);
  color: #fff;
  font-size: 0.52rem;
  font-style: normal;
}

.proof-file-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 7px;
  background: #f1f5f2;
  margin-top: 7px;
  padding: 7px;
}

.proof-file-row i {
  display: grid;
  width: 31px !important;
  height: 25px !important;
  place-items: center;
  border-radius: 5px;
  background: var(--public-navy) !important;
  font-size: 0.43rem !important;
}

.proof-file-row b {
  color: #536158;
  font-size: 0.66rem;
}

.proof-hash {
  border: 1px dashed #b8c4bc;
  border-radius: 7px;
  margin-top: 17px;
  padding: 9px;
}

.proof-hash code {
  display: block;
  overflow: hidden;
  color: #59665e;
  font-family: inherit;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audience-section {
  background: #f8fbf9;
}

.audience-grid {
  display: grid;
  gap: 28px;
}

.audience-heading {
  margin-bottom: 0;
}

.audience-list {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.audience-list li {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--public-line);
  border-radius: 14px;
  background: #fff;
  padding: 11px 13px;
}

.audience-list span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--public-brand-soft);
  color: var(--public-brand-strong);
  font-size: 0.64rem;
  font-weight: 900;
}

.audience-list strong {
  color: var(--public-navy);
  font-size: 0.93rem;
}

.access-section {
  background: #f8fbf9;
  padding: 0 0 72px;
}

.access-panel {
  position: relative;
  display: grid;
  gap: 34px;
  overflow: hidden;
  border-radius: var(--public-radius-lg);
  background: var(--public-brand-strong);
  box-shadow: var(--public-shadow);
  color: #fff;
  padding: 32px 22px;
}

.lead-capture-form,
.lead-capture-success {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.11);
  padding: 20px;
}

.lead-capture-form {
  display: grid;
  gap: 15px;
}

.lead-capture-grid {
  display: grid;
  gap: 15px;
}

.lead-capture-field {
  min-width: 0;
}

.lead-capture-field > label {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 750;
}

.lead-capture-input.form-control {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.42);
  background: #fff;
  color: var(--public-ink);
}

.lead-capture-input.form-control:focus {
  border-color: var(--public-gold);
  box-shadow: 0 0 0 0.22rem rgba(255, 193, 7, 0.22);
}

.lead-capture-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.lead-capture-consent .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.lead-capture-consent label,
.lead-capture-whatsapp-alternative {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.5;
}

.lead-capture-whatsapp-alternative {
  width: fit-content;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.lead-capture-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lead-capture-errors,
.lead-capture-field-error {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
}

.lead-capture-errors {
  border-left: 3px solid #ffe082;
  background: rgba(126, 16, 16, 0.38);
  padding: 10px 12px;
}

.lead-capture-errors ul,
.lead-capture-field-error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-capture-success {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.lead-capture-success-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--public-brand-strong);
  font-weight: 900;
}

.lead-capture-success h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 850;
  margin-bottom: 8px;
}

.lead-capture-success p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  margin-bottom: 18px;
}

.access-panel::after {
  position: absolute;
  right: -26px;
  bottom: 30px;
  width: 90px;
  height: 8px;
  background: var(--public-gold);
  content: "";
  transform: rotate(-8deg);
}

.access-copy {
  position: relative;
  z-index: 1;
}

.access-copy h2 {
  color: #fff;
}

.access-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.access-copy .access-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: -8px 0 24px;
}

.access-note strong {
  color: #fff;
}

.access-contact {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.11);
  padding: 16px;
}

.access-contact-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--public-brand-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.access-contact > div {
  min-width: 0;
}

.access-contact small,
.access-contact strong,
.access-contact p {
  display: block;
}

.access-contact small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.69rem;
  margin-bottom: 3px;
}

.access-contact strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 1rem;
}

.access-contact p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  margin: 3px 0 0;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 28px;
}

.faq-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--public-line-strong);
}

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  color: var(--public-navy);
  font-size: 0.98rem;
  font-weight: 800;
  list-style: none;
  padding: 20px 42px 20px 0;
}

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

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--public-line-strong);
  border-radius: 8px;
  color: var(--public-brand-strong);
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  background: var(--public-brand-soft);
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  color: var(--public-ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: -4px 0 20px;
  padding-right: 28px;
}

.public-footer {
  background: var(--public-navy);
  color: #fff;
  padding: 55px 0 96px;
}

.public-footer-grid {
  display: grid;
  gap: 34px;
}

.public-brand-footer .public-brand-logo {
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.public-footer-brand > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 17px 0 10px;
}

.public-footer-brand > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.public-footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.public-footer-links strong {
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.public-footer-links a {
  width: fit-content;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.87rem;
}

.public-footer-links a:hover {
  color: #5ee2b2;
}

.public-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  margin-top: 38px;
  padding-top: 20px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 14px;
  bottom: 14px;
  display: none;
  width: 54px;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 99px;
  background: var(--public-brand);
  box-shadow: 0 14px 34px rgba(0, 92, 61, 0.26);
  color: #fff !important;
  padding: 8px;
}

.whatsapp-float > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--public-brand-strong);
  font-size: 0.62rem;
  font-weight: 900;
}

.whatsapp-float strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.public-page a:focus-visible,
.public-page button:focus-visible,
.public-page summary:focus-visible {
  outline: 3px solid rgba(226, 163, 60, 0.75);
  outline-offset: 3px;
}

@keyframes preview-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-preview {
  animation: preview-float 7s ease-in-out 900ms infinite;
}

@media (hover: hover) and (pointer: fine) {
  .resource-group,
  .availability-card,
  .audience-list li,
  .process-flow li {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .resource-group:hover,
  .availability-card:hover,
  .audience-list li:hover,
  .process-flow li:hover {
    border-color: rgba(0, 142, 93, 0.42);
    box-shadow: 0 14px 32px rgba(16, 27, 51, 0.1);
    transform: translateY(-3px);
  }
}

@media (min-width: 576px) {
  .section-space {
    padding: 86px 0;
  }

  .hero-section {
    padding: 68px 0 72px;
  }

  .hero-actions,
  .hero-assurances {
    flex-direction: row;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .preview-app {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .preview-sidebar {
    min-height: 410px;
    padding: 14px 10px;
  }

  .preview-workspace {
    padding: 18px 17px 20px;
  }

  .preview-service-meta,
  .proof-document-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-detail-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }

  .process-flow,
  .audience-list,
  .availability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-list li:last-child {
    grid-column: 1 / -1;
  }

  .access-panel {
    padding: 42px 36px;
  }

  .public-footer-grid {
    grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 0.7fr));
  }

  .public-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .section-heading h2,
  .problem-intro h2,
  .proof-copy h2,
  .access-copy h2 {
    font-size: clamp(2.45rem, 5.4vw, 3.55rem);
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 7.4vw, 4.65rem);
  }

  .product-preview {
    width: min(100%, 700px);
    margin-right: auto;
    margin-left: auto;
  }

  .problem-list li {
    font-size: 1.05rem;
  }

  .problem-list {
    column-gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-group {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 30px;
  }

  .resource-group-featured {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .availability-card {
    padding: 30px;
  }

  .resource-mini-flow {
    grid-column: 2;
  }

  .proof-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .proof-document-sheet {
    padding: 28px 26px;
  }

  .access-panel {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
    align-items: end;
  }
}

@media (min-width: 992px) {
  .information-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: start;
    gap: 72px;
  }

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

  .hero-section {
    padding: 62px 0 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 4.45vw, 4.2rem);
  }

  .product-preview {
    width: 100%;
  }

  .problem-section {
    padding: 90px 0;
  }

  .problem-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
  }

  .process-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .process-flow::before {
    position: absolute;
    z-index: 0;
    top: 42px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: var(--public-line-strong);
    content: "";
  }

  .process-flow li {
    position: relative;
    z-index: 1;
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 10px 20px 0;
    text-align: center;
  }

  .process-number {
    width: 56px;
    height: 56px;
    border: 8px solid var(--public-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
  }

  .resources-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .resource-group-featured {
    grid-row: 1 / span 2;
  }

  .availability-layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 20px;
  }

  .availability-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    margin-top: 26px;
  }

  .proof-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 78px;
  }

  .audience-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: center;
  }

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

  .audience-list li:last-child {
    grid-column: 1 / -1;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 86px;
  }

  .faq-heading {
    position: sticky;
    top: 112px;
    align-self: start;
  }

  .public-footer {
    padding-bottom: 64px;
  }
}

@media (min-width: 1200px) {
  .public-header-inner {
    min-height: 76px;
    flex-wrap: nowrap;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .public-nav-toggle,
  .js .public-nav-toggle {
    display: none;
  }

  .public-navigation,
  .js .public-navigation {
    display: flex;
    width: auto;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    border-top: 0;
    padding-top: 0;
  }

  .public-nav-links,
  .public-nav-actions {
    flex-direction: row;
    align-items: center;
  }

  .public-nav-links {
    gap: 0;
  }

  .public-nav-links a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .public-nav-actions {
    gap: 7px;
  }

  .section-space {
    padding: 108px 0;
  }

  .hero-grid {
    gap: 52px;
  }

  .preview-window {
    transform: rotate(-0.7deg);
  }

  .proof-document-sheet {
    transform: rotate(0.6deg);
  }

  .access-section {
    padding-bottom: 108px;
  }
}

@media (min-width: 1400px) {
  .whatsapp-float {
    display: inline-flex;
  }
}

@media (max-width: 575px) {
  .hero-actions .button,
  .access-copy .button {
    width: 100%;
  }

  .preview-window {
    transform: none;
  }
}

@media (max-width: 399px) {
  .hero-section {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: 2.16rem;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-app {
    grid-template-columns: minmax(0, 1fr);
  }

  .preview-address {
    display: none;
  }

  .resource-group {
    padding-right: 18px;
    padding-left: 18px;
  }

  .access-contact-icon {
    width: 42px;
    height: 42px;
  }

}

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

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

  .product-preview {
    animation: none !important;
  }

  .hero-enter-ready [data-hero-enter],
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 1200px) and (max-height: 760px) {
  .hero-section {
    padding: 36px 0 50px;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: 3rem;
  }

  .hero-slogan {
    margin: -3px 0 12px;
    font-size: 1.12rem;
    line-height: 1.32;
  }

  .hero-summary {
    margin-bottom: 12px;
    font-size: 1.04rem;
    line-height: 1.5;
  }

  .hero-positioning {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

/* ==========================================================================
   Operato visual system — operacao clara, prova visivel
   ========================================================================== */

body.public-page {
  background:
    radial-gradient(circle at 90% 2%, rgba(36, 92, 115, 0.08), transparent 30rem),
    var(--public-bg);
  line-height: 1.55;
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page strong {
  font-family: var(--font-display);
}

.public-page a:focus-visible,
.public-page button:focus-visible,
.public-page input:focus-visible,
.public-page select:focus-visible,
.public-page textarea:focus-visible,
.public-page summary:focus-visible {
  outline: 3px solid rgba(228, 163, 59, 0.78);
  outline-offset: 3px;
}

.section-kicker,
.preview-caption,
.availability-label,
.resource-index,
.proof-hash {
  font-family: var(--font-mono);
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--public-brand-strong);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.section-kicker::before {
  color: var(--public-gold);
  content: "[ ";
}

.section-kicker::after {
  color: var(--public-gold);
  content: " ]";
}

.section-kicker-light::before,
.section-kicker-light::after {
  color: #e9b960;
}

.section-heading h2,
.problem-intro h2,
.proof-copy h2,
.access-copy h2 {
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.public-header {
  border-bottom-color: rgba(174, 189, 182, 0.72);
  background: rgba(248, 251, 249, 0.9);
  backdrop-filter: blur(20px);
}

.public-header.is-scrolled {
  border-bottom-color: rgba(174, 189, 182, 0.88);
  box-shadow: 0 10px 30px rgba(16, 35, 28, 0.08);
}

.public-header-inner {
  min-height: 76px;
}

.public-brand {
  width: 162px;
  height: 54px;
  flex-basis: 162px;
}

.public-nav-links a {
  border-radius: 10px;
  color: var(--public-ink-soft);
  font-size: 0.87rem;
  font-weight: 700;
}

.public-nav-links a:hover {
  background: var(--public-brand-soft);
  color: var(--public-brand-strong);
}

.button {
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button-primary {
  border-color: var(--public-brand);
  background: var(--public-brand);
  box-shadow: 0 3px 0 var(--public-brand-strong), 0 12px 28px rgba(0, 122, 85, 0.16);
}

.button-primary:hover {
  box-shadow: 0 2px 0 #005f42, 0 14px 30px rgba(0, 122, 85, 0.2);
}

.button-secondary {
  border-color: var(--public-line-strong);
  background: rgba(255, 255, 255, 0.84);
}

.button-secondary:hover {
  border-color: var(--public-navy);
  background: var(--public-navy);
  color: #ffffff !important;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom-color: var(--public-line);
  background:
    linear-gradient(90deg, rgba(16, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff 0%, #f4f8f6 58%, #eaf3ef 100%);
  background-size: 72px 72px, 72px 72px, auto;
  padding: 72px 0 82px;
}

.hero-section::before {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -180px;
  width: 590px;
  height: 590px;
  border: 110px solid rgba(0, 168, 116, 0.055);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  gap: clamp(40px, 6vw, 82px);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6.4vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1::after {
  display: block;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--public-brand), var(--public-blue));
  content: "";
  margin-top: 24px;
}

.hero-slogan {
  margin-top: 0;
  color: var(--public-brand-strong);
  font-family: var(--font-display);
  font-weight: 650;
}

.hero-summary {
  max-width: 610px;
  color: var(--public-ink-soft);
}

.hero-positioning {
  max-width: 570px;
  border-left-color: var(--public-gold);
  color: var(--public-ink);
  font-weight: 650;
}

.hero-assurances {
  gap: 14px;
  color: var(--public-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.hero-assurances span {
  background: var(--public-navy);
  color: #71ddb8;
}

.product-preview::before {
  position: absolute;
  z-index: -1;
  inset: 38px -18px -20px 24px;
  border-radius: 28px;
  background: var(--public-navy);
  box-shadow: 0 28px 70px rgba(16, 35, 28, 0.18);
  content: "";
  transform: rotate(2.4deg);
}

.preview-caption {
  border-color: rgba(0, 122, 85, 0.22);
  background: var(--public-navy);
  color: #78e0bc;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.preview-live-dot {
  background: #63dbae;
  box-shadow: 0 0 0 4px rgba(99, 219, 174, 0.16);
}

.preview-window {
  border-color: rgba(16, 35, 28, 0.26);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(16, 35, 28, 0.2);
}

.preview-window-bar {
  height: 39px;
  background: #f0f5f2;
}

.preview-address,
.preview-heading p,
.preview-service-meta span,
.preview-progress small,
.preview-card-title small {
  font-family: var(--font-mono);
}

.preview-sidebar {
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 168, 116, 0.34), transparent 7rem),
    var(--public-navy);
}

.preview-workspace {
  background: #f3f7f5;
}

.preview-service-meta,
.preview-checklist,
.preview-evidence {
  border-color: var(--public-line);
  border-radius: 11px;
  box-shadow: 0 5px 16px rgba(16, 35, 28, 0.045);
}

.preview-progress::before {
  height: 2px;
  background: linear-gradient(90deg, var(--public-brand) 0 38%, #cad7d0 38% 100%);
}

.preview-progress span {
  border-color: #b9c8c0;
  background: #f3f7f5;
  font-family: var(--font-mono);
}

.preview-progress .is-complete span,
.preview-progress .is-current span {
  border-color: var(--public-brand);
  background: var(--public-navy);
  color: #75deb9;
}

.preview-progress .is-current span {
  box-shadow: 0 0 0 5px var(--public-brand-soft), 0 0 0 6px rgba(0, 168, 116, 0.22);
}

.problem-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 116, 0.18), transparent 24rem),
    linear-gradient(145deg, #10231c, #0c1b16);
}

.problem-section::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(119, 222, 186, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(119, 222, 186, 0.035), 0 0 0 96px rgba(119, 222, 186, 0.025);
  content: "";
}

.problem-intro h2,
.problem-intro > p:last-child {
  color: #f3f8f5;
}

.problem-list li {
  border-color: rgba(220, 239, 230, 0.16);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.process-flow {
  gap: 12px;
}

.process-flow article {
  border-color: var(--public-line);
  border-radius: var(--public-radius);
  box-shadow: 0 10px 28px rgba(16, 35, 28, 0.055);
}

.process-number {
  border-radius: 10px;
  background: var(--public-navy);
  color: #6eddb6;
  font-family: var(--font-mono);
  font-weight: 600;
}

.resources-section {
  background:
    linear-gradient(90deg, rgba(16, 35, 28, 0.028) 1px, transparent 1px),
    #eef4f1;
  background-size: 84px 84px;
}

.resource-group {
  border-color: var(--public-line);
  border-radius: var(--public-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(16, 35, 28, 0.055);
}

.resource-group-featured {
  border-top: 4px solid var(--public-brand);
  background: var(--public-navy);
  color: #fff;
}

.resource-group-accent {
  border-top: 4px solid var(--public-blue);
}

.resource-index {
  color: var(--public-brand-strong);
  font-size: 0.66rem;
  font-weight: 600;
}

.availability-card {
  border-radius: var(--public-radius);
  box-shadow: 0 12px 32px rgba(16, 35, 28, 0.06);
}

.availability-card-now {
  border-color: rgba(0, 168, 116, 0.35);
  background: #087354;
  color: #fff;
}

.availability-card-future {
  border-color: rgba(36, 92, 115, 0.25);
  background: linear-gradient(145deg, #ffffff, #f0f6f8);
}

.availability-label {
  font-size: 0.65rem;
  font-weight: 600;
}

.availability-card-now .availability-label,
.availability-card-now .availability-intro,
.availability-card-now .availability-list p {
  color: #d7f8ea;
}

.proof-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(140deg, #10231c, #143128);
  background-size: 90px 90px, auto;
}

.proof-document-sheet {
  border-radius: 8px 18px 18px 8px;
  box-shadow: 18px 24px 0 rgba(0, 0, 0, 0.16), 0 30px 70px rgba(0, 0, 0, 0.28);
}

.proof-seal {
  background: var(--public-navy);
  color: #73deb9;
}

.audience-list li {
  border-color: var(--public-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(16, 35, 28, 0.045);
}

.access-section {
  background: #edf4f1;
}

.access-panel {
  overflow: hidden;
  border-radius: var(--public-radius-lg);
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 168, 116, 0.25), transparent 22rem),
    var(--public-navy);
  box-shadow: 0 26px 70px rgba(16, 35, 28, 0.2);
}

.access-panel::after {
  border-color: rgba(111, 222, 184, 0.28);
}

.lead-capture-input.form-control {
  min-height: 50px;
  border-color: rgba(174, 189, 182, 0.78);
  border-radius: 11px;
  font-family: var(--font-body);
}

.lead-capture-input.form-control:focus {
  border-color: var(--public-brand);
  box-shadow: 0 0 0 0.22rem rgba(0, 168, 116, 0.15);
}

.faq-list details {
  border-color: var(--public-line);
  border-radius: 12px;
  background: #ffffff;
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
}

.public-footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 168, 116, 0.14), transparent 20rem),
    #0c1b16;
}

.whatsapp-float {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--public-navy);
  box-shadow: 0 16px 34px rgba(16, 35, 28, 0.28);
}

.information-hero {
  background:
    linear-gradient(90deg, rgba(16, 35, 28, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #eef5f1);
  background-size: 76px 76px, auto;
}

.information-hero h1,
.information-section h2 {
  font-weight: 650;
}

.information-card {
  border-color: var(--public-line);
  border-radius: var(--public-radius);
  box-shadow: 0 12px 32px rgba(16, 35, 28, 0.06);
}

@media (min-width: 768px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-assurances {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .public-navigation,
  .js .public-navigation {
    gap: 24px;
  }

  .hero-section {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 72px 0 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
  }

  .preview-window {
    transform: rotate(-0.9deg);
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 68px 0;
  }

  .public-navigation {
    border-color: var(--public-line);
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    margin-right: -12px;
    margin-left: -12px;
    padding: 14px 12px 16px;
  }

  .hero-section {
    padding: 56px 0 68px;
  }

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

  .product-preview::before {
    inset: 32px -8px -12px 12px;
    transform: rotate(1.4deg);
  }
}

@media (max-width: 399px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-section::before {
    display: none;
  }
}
