@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #102a43;
  --navy-2: #183b56;
  --teal: #0f8b8d;
  --teal-dark: #0b6e70;
  --teal-light: #45c4c6;
  --green: #218c5b;
  --amber: #c98219;
  --red: #b42318;
  --ink: #1f2937;
  --muted: #5f6c7b;
  --soft: #f6f8fb;
  --soft-teal: #eaf7f6;
  --soft-amber: #fff7e8;
  --border: #d9e2ec;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(16, 42, 67, 0.07);
  --shadow-lg: 0 28px 80px rgba(16, 42, 67, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

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

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

:focus-visible {
  outline: 3px solid rgba(15, 139, 141, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

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

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

.section {
  padding: 104px 0;
}

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

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

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.section-navy .eyebrow {
  color: var(--teal-light);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.section-navy .lead {
  color: #d9e8f2;
}

.review-notice {
  position: relative;
  z-index: 200;
  padding: 9px 20px;
  color: #5f3c00;
  background: #fff3cd;
  border-bottom: 1px solid #e7c66e;
  text-align: center;
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(217, 226, 236, 0.85);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-link img {
  width: 218px;
  height: auto;
}

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

.main-nav a {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a.button-primary,
.main-nav a.button-primary:hover {
  color: var(--white);
}

.main-nav a:not(.button) {
  position: relative;
}

.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(11, 110, 112, 0.2);
}

.button-primary:hover {
  color: var(--white);
  background: #085b5d;
  box-shadow: 0 14px 28px rgba(11, 110, 112, 0.26);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.button-secondary:hover {
  color: var(--navy);
  border-color: #aebdca;
  box-shadow: var(--shadow-sm);
}

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

.button-light:hover {
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero::before {
  top: 50px;
  right: -230px;
  width: 560px;
  height: 560px;
  background: rgba(69, 196, 198, 0.12);
}

.hero::after {
  bottom: -260px;
  left: -220px;
  width: 480px;
  height: 480px;
  background: rgba(16, 42, 67, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding: 24px 0;
}

.hero h1 {
  max-width: 720px;
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero .lead {
  max-width: 650px;
  margin: 26px 0 0;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 140, 91, 0.12);
}

.product-frame {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.product-frame::before {
  content: "Vista ilustrativa";
  position: absolute;
  z-index: 2;
  top: -15px;
  right: 30px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--soft);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

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

.dashboard-title {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 440px;
}

.dashboard-sidebar {
  padding: 20px 13px;
  color: #dce8f1;
  background: var(--navy);
}

.sidebar-brand {
  margin: 0 8px 25px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.sidebar-brand span {
  color: var(--teal-light);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.68rem;
}

.sidebar-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.sidebar-item.active {
  color: var(--white);
  background: rgba(69, 196, 198, 0.16);
}

.dashboard-main {
  padding: 22px;
}

.dashboard-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-main h3 {
  font-size: 1.02rem;
}

.dashboard-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #644000;
  background: var(--soft-amber);
  border: 1px solid #f3d89c;
  font-size: 0.64rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.summary-cell {
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.summary-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.summary-cell strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 0.76rem;
}

.timeline-card {
  padding: 4px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 9px 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 61px;
  padding: 9px 0;
  border-bottom: 1px solid #edf1f5;
  transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.timeline-row:last-child {
  border-bottom: 0;
}

.timeline-row.is-active {
  transform: translateX(4px);
}

.timeline-row.is-active .timeline-dot {
  box-shadow: 0 0 0 5px rgba(15, 139, 141, 0.13);
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transition: box-shadow 220ms ease;
}

.timeline-row.warning .timeline-dot {
  background: var(--amber);
}

.timeline-row.success .timeline-dot {
  background: var(--green);
}

.timeline-label {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
}

.timeline-meta {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 400;
}

.timeline-amount {
  color: var(--navy);
  font-size: 0.69rem;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 96px;
  padding: 18px;
  color: var(--navy);
  border-right: 1px solid var(--border);
  font-weight: 700;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

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

.feature-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #b8d6d6;
  box-shadow: var(--shadow-sm);
}

.feature-index {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.context-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
  align-items: center;
}

.context-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.context-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.context-row:last-child {
  border-bottom: 0;
}

.context-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.context-row strong {
  display: block;
  color: var(--navy);
}

.context-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 53px;
  right: -25px;
  width: 26px;
  height: 1px;
  background: rgba(69, 196, 198, 0.5);
}

.process-number {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-card p {
  margin: 14px 0 0;
  color: #cbdbe6;
}

.scope-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.scope-card {
  padding: 38px;
  border-radius: var(--radius-md);
}

.scope-card.included {
  background: var(--soft-teal);
  border: 1px solid #cbe9e8;
}

.scope-card.excluded {
  background: var(--soft);
  border: 1px solid var(--border);
}

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

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.excluded .check-list li::before {
  content: "—";
  color: var(--muted);
  background: #e5ebf0;
}

.security-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.security-points {
  display: grid;
  gap: 16px;
}

.security-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.security-point span:first-child {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border-radius: 12px;
  font-weight: 800;
}

.security-point p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-toolbar {
  display: inline-flex;
  gap: 4px;
  margin-top: 26px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--soft);
}

.pricing-toolbar button {
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.pricing-toolbar button.is-active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(16, 42, 67, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.price-card.recommended {
  border: 2px solid var(--teal-dark);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 28px 0 6px;
  color: var(--navy);
}

.price strong {
  font-size: 3.2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-note {
  min-height: 48px;
  color: var(--muted);
  font-size: 0.85rem;
}

.price-card .check-list {
  min-height: 152px;
  margin-bottom: 30px;
}

.price-card .button {
  width: 100%;
}

.pricing-disclaimer {
  max-width: 820px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

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

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 6px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border-radius: 50%;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 730px;
  padding: 0 0 24px;
  color: var(--muted);
}

.access-section {
  position: relative;
  overflow: hidden;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.access-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.access-copy .contact-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #cbdbe6;
}

.access-copy .contact-line a {
  color: var(--teal-light);
}

.form-card {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.form-card h3 {
  font-size: 1.55rem;
}

.form-intro {
  margin: 9px 0 28px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.field-label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bdc9d4;
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.13);
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal-dark);
}

.form-privacy-summary {
  margin: -3px 0 18px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-privacy-summary a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-card .button {
  width: 100%;
}

.form-footnote {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #135f3c;
  background: #e9f7ef;
  border: 1px solid #bfe4ce;
}

.form-status.is-info {
  color: #07595b;
  background: var(--soft-teal);
  border: 1px solid #bee5e3;
}

.form-status.is-error {
  color: var(--red);
  background: #fff0ee;
  border: 1px solid #f3c1bc;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: 64px 0 26px;
  color: #cbdbe6;
  background: #0a1d2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
  color: #aebfcb;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #cbdbe6;
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa5b4;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-hero {
  padding: 72px 0 58px;
  color: var(--white);
  background: var(--navy);
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.legal-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #d9e8f2;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  color: #b9cbd8;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--teal-light);
}

.legal-content {
  padding: 74px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 80px;
  justify-content: center;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.83rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--teal-dark);
}

.legal-copy h2 {
  margin: 54px 0 17px;
  font-size: 1.75rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 30px 0 12px;
  font-size: 1.15rem;
}

.legal-copy p,
.legal-copy li {
  color: #465568;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-copy li {
  margin: 7px 0;
}

.legal-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: var(--soft-teal);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.pending-value {
  color: var(--red);
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.support-card .feature-index {
  margin-bottom: 22px;
}

.support-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease var(--reveal-delay, 0ms), transform 560ms ease var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

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

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .product-frame {
    width: min(100%, 690px);
    margin-inline: auto;
    transform: none;
  }

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

  .context-grid,
  .security-layout,
  .access-grid {
    gap: 46px;
  }

  .legal-layout {
    grid-template-columns: 190px minmax(0, 700px);
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

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

  .section {
    padding: 76px 0;
  }

  .brand-link img {
    width: 185px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .button {
    margin-top: 14px;
    border-bottom: 0;
  }

  .hero {
    padding: 62px 0 74px;
  }

  .hero-grid {
    gap: 45px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

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

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

  .trust-item {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .context-grid,
  .security-layout,
  .access-grid,
  .scope-layout {
    grid-template-columns: 1fr;
  }

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-number {
    margin-bottom: 28px;
  }

  .access-copy {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 520px);
  }

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

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

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

  .legal-toc {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions,
  .hero-note {
    justify-content: flex-start;
  }

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

  .product-frame {
    padding: 8px;
    border-radius: 18px;
  }

  .product-frame::before {
    right: 16px;
  }

  .dashboard-main {
    padding: 16px 12px;
  }

  .summary-strip {
    grid-template-columns: 1fr 1fr;
  }

  .summary-cell:last-child {
    grid-column: 1 / -1;
  }

  .timeline-row {
    grid-template-columns: 8px 1fr;
  }

  .timeline-amount {
    grid-column: 2;
  }

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

  .feature-card {
    min-height: auto;
  }

  .scope-card,
  .price-card,
  .form-card {
    padding: 27px 22px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

@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;
  }
}
