:root {
  --page-bg: #f3f6fb;
  --surface: #ffffff;
  --surface-alt: #eff3fb;
  --surface-dark: #08162f;
  --surface-dark-alt: #10244b;
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --ink: #0e1728;
  --ink-soft: #516078;
  --ink-inverse: #f7f9ff;
  --brand: #0f2d63;
  --brand-deep: #071935;
  --brand-soft: #1b3f81;
  --accent: #f0ba2f;
  --accent-deep: #d99805;
  --success: #1f8f57;
  --shadow-lg: 0 24px 60px rgba(6, 18, 42, 0.18);
  --shadow-md: 0 18px 40px rgba(7, 20, 43, 0.12);
  --shadow-sm: 0 12px 24px rgba(7, 20, 43, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 2rem));
  --section-space: clamp(5rem, 8vw, 7rem);
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-heading: "Archivo", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(15, 45, 99, 0.05), transparent 24%),
    linear-gradient(180deg, #f4f7fc 0%, #eef3fa 100%);
}

body.is-loaded {
  animation: fade-up 0.45s ease both;
}

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

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

code {
  padding: 0.15rem 0.42rem;
  border-radius: 0.45rem;
  background: rgba(15, 45, 99, 0.08);
  color: var(--brand-deep);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92em;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section[id],
.footer[id],
[id="top"] {
  scroll-margin-top: 112px;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

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

.section--soft {
  background: linear-gradient(180deg, #f7f9fd 0%, #ecf1f9 100%);
}

.section--dark {
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at top left, rgba(34, 73, 148, 0.45), transparent 36%),
    linear-gradient(135deg, #08162f 0%, #0b1f41 52%, #040d1d 100%);
}

.section-header {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 3.1rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 5.75rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

p {
  margin: 0;
  line-height: 1.72;
  color: inherit;
  text-wrap: pretty;
}

.lead,
.article-card__body p,
.content-panel p,
.content-panel li,
.legal-card p,
.legal-card li,
.info-card p,
.dashboard-card p,
.form-card p,
.aside-card p,
.faq-item p,
.pricing-note p,
.timeline__item,
.footer p {
  text-align: left;
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
  color: var(--ink-soft);
}

.section--dark .lead,
.section--dark .muted {
  color: rgba(247, 249, 255, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button--primary {
  color: #08142a;
  background: linear-gradient(135deg, #f5c94a 0%, #f0ba2f 100%);
  box-shadow: 0 12px 30px rgba(240, 186, 47, 0.28);
}

.button--primary:hover {
  box-shadow: 0 18px 34px rgba(240, 186, 47, 0.34);
}

.button--ghost {
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button--light {
  color: var(--brand);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.button--outline {
  color: var(--brand);
  border-color: rgba(15, 45, 99, 0.18);
  background: transparent;
}

.button--block {
  width: 100%;
}

.tag-list,
.stat-list,
.check-list,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 249, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 15, 30, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(4, 10, 22, 0.14);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-ready {
  animation: fade-up 0.42s ease both;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 15, 30, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(4, 10, 22, 0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.site-header:not(.is-ready) .site-header__inner {
  visibility: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-inverse);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 186, 47, 0.95), rgba(15, 45, 99, 0.95));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 249, 255, 0.65);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(247, 249, 255, 0.8);
}

.site-nav a {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a[href$="dashboard.html"],
.footer a[href$="dashboard.html"] {
  display: none !important;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(240, 186, 47, 0.26);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.header-link {
  color: rgba(247, 249, 255, 0.8);
  font-size: 0.94rem;
  font-weight: 700;
}

.button--compact {
  min-height: 48px;
  padding-inline: 1.15rem;
}

.button--header-action,
.header-actions > * {
  white-space: nowrap;
  flex-shrink: 0;
}

.header-actions .button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-actions .button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.header-actions .button--light {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.4rem 0 5.8rem;
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 91, 194, 0.55), transparent 34%),
    radial-gradient(circle at 76% 30%, rgba(240, 186, 47, 0.22), transparent 32%),
    linear-gradient(135deg, #071731 0%, #0c2250 40%, #040913 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 52%, rgba(240, 186, 47, 0.16) 52%, rgba(240, 186, 47, 0.22) 64%, transparent 64%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.05) 6%, transparent 16%, rgba(255, 255, 255, 0.03) 30%, transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 2.25rem;
}

.hero__copy {
  display: grid;
  gap: 1.35rem;
  max-width: 640px;
}

.hero__copy .lead {
  margin-top: 0;
  font-size: 1.12rem;
  color: rgba(247, 249, 255, 0.78);
}

.hero__copy .button-row {
  margin-top: 0.35rem;
}

.hero__copy .tag-list {
  margin-top: 0.35rem;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__visual::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 8%;
  width: clamp(240px, 34vw, 380px);
  height: 74%;
  transform: skewX(-18deg);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(240, 186, 47, 0.12), rgba(240, 186, 47, 0.45));
  box-shadow: 0 24px 70px rgba(240, 186, 47, 0.16);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 14% 5% 0 auto;
  width: 78%;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(240, 186, 47, 0.18), transparent 65%);
  filter: blur(12px);
}

.hero__portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(4, 12, 27, 0.42));
  animation: float-hero 7s ease-in-out infinite;
}

.hero__panel {
  position: absolute;
  left: 0;
  bottom: 1.4rem;
  z-index: 3;
  width: min(290px, 72%);
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 22px;
  background: rgba(6, 18, 42, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  animation: fade-up 0.9s ease both;
  animation-delay: 0.28s;
}

.hero__panel strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__panel p {
  color: rgba(247, 249, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.58;
}

.home-page .hero {
  padding: 6.8rem 0 6.2rem;
}

.home-page .hero__copy {
  gap: 1.5rem;
}

.home-page .hero__copy h1 {
  max-width: 11ch;
}

.home-page .hero__panel {
  width: min(380px, 82%);
  padding: 1.25rem 1.25rem 1.15rem;
}

.hero__microcopy {
  max-width: 54ch;
  color: rgba(247, 249, 255, 0.74);
  font-size: 1rem;
  line-height: 1.66;
}

.hero__panel-title {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__model-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__model-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.hero__model-count {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 201, 74, 0.94), rgba(228, 164, 26, 0.94));
  color: #071426;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.hero__model-heading {
  display: block;
  margin-bottom: 0.18rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.hero__model-list p {
  color: rgba(247, 249, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-grid,
.metric-grid,
.dashboard-grid {
  display: grid;
  gap: 1.6rem;
}

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

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

.dashboard-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.article-card,
.expert-card,
.module-card,
.step-card,
.pricing-card,
.mini-card,
.info-card,
.dashboard-card,
.form-card,
.content-panel,
.legal-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.article-card:hover,
.article-card:focus-visible,
.pricing-card:hover,
.info-card:hover,
.dashboard-card:hover,
.form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(7, 20, 43, 0.16);
  border-color: rgba(15, 45, 99, 0.14);
}

.article-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 45, 99, 0.16), rgba(240, 186, 47, 0.12));
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 22, 47, 0.84);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  padding: 1.35rem;
}

.article-card__body > * + * {
  margin-top: 0.95rem;
}

.article-card__body p {
  color: var(--ink-soft);
}

.article-card__meta {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--brand-soft);
  font-weight: 800;
}

.info-card,
.dashboard-card,
.form-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 100%);
  border: 1px solid rgba(15, 45, 99, 0.08);
}

.info-card p,
.dashboard-card p,
.form-card p {
  color: var(--ink-soft);
}

.metric-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(15, 45, 99, 0.06);
  border: 1px solid rgba(15, 45, 99, 0.08);
}

.metric-card strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 0.95;
  color: var(--brand-deep);
}

.home-proof-grid {
  align-items: stretch;
}

.home-proof-card,
.home-value-card {
  height: 100%;
}

.home-proof-card h3,
.home-value-card h3 {
  font-size: 1.55rem;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.6rem;
  align-items: start;
}

.home-split .section-header,
.home-section-top .section-header {
  margin-bottom: 0;
}

.home-note {
  padding: 2rem;
}

.home-note__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(15, 45, 99, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-note .quick-links {
  margin-top: 1.4rem;
}

.home-value-grid {
  margin-top: 1.6rem;
}

.home-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-library-link {
  flex: 0 0 auto;
}

.dashboard-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 45, 99, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.quick-links a {
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.05);
  color: var(--brand-deep);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quick-links a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: rgba(15, 45, 99, 0.08);
}

.quick-links a span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.section--dark .quick-links a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7f9ff;
}

.section--dark .quick-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 36px rgba(4, 10, 22, 0.22);
}

.section--dark .quick-links a span {
  color: rgba(247, 249, 255, 0.8);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1.5rem;
  align-items: stretch;
}

.form-card--feature {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(240, 186, 47, 0.15), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fe 100%);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

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

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.input,
.textarea,
.select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 45, 99, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: 0;
  border-color: rgba(15, 45, 99, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 45, 99, 0.08);
}

.textarea {
  min-height: 132px;
  resize: vertical;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.55rem 0 1rem;
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 45, 99, 0.12);
}

.consent-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.04);
  border: 1px solid rgba(15, 45, 99, 0.08);
  color: var(--ink-soft);
  line-height: 1.6;
}

.consent-item input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.consent-item a,
.link-inline {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.form-status {
  min-height: 28px;
  margin-top: 1rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status:empty,
.guard-note:empty,
.account-note:empty {
  display: none;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--success);
}

.guard-note,
.account-note {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.05);
  border: 1px solid rgba(15, 45, 99, 0.08);
  color: var(--ink-soft);
}

.page-link-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-link-list a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.05);
  border: 1px solid rgba(15, 45, 99, 0.08);
  color: var(--brand-deep);
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.page-link-list a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background: rgba(15, 45, 99, 0.08);
}

.page-link-list span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.experts-grid,
.steps-grid,
.pricing-grid,
.footer-grid,
.page-grid {
  display: grid;
  gap: 1.6rem;
}

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

.expert-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.expert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(4, 10, 22, 0.28);
}

.expert-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 186, 47, 0.26), transparent 70%);
  filter: blur(12px);
}

.expert-card__media {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expert-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  object-fit: cover;
  border: 2px solid rgba(240, 186, 47, 0.5);
}

.expert-card__label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.expert-card p {
  color: rgba(247, 249, 255, 0.78);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.module-card {
  position: relative;
  padding: 1.3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 100%);
  border: 1px solid rgba(15, 45, 99, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card > * + * {
  margin-top: 0.7rem;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 45, 99, 0.16);
}

.module-card__lock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 45, 99, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.module-card p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.home-learning-grid {
  margin-top: 0.45rem;
}

.home-learning-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-learning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(4, 10, 22, 0.28);
  border-color: rgba(240, 186, 47, 0.34);
}

.section--dark .home-learning-card h3 {
  color: #fff;
}

.section--dark .home-learning-card p {
  color: rgba(247, 249, 255, 0.78);
}

.section--dark .home-learning-card .module-card__lock {
  background: rgba(240, 186, 47, 0.16);
  color: #ffd675;
}

.home-process-intro {
  max-width: 720px;
  margin: 3rem 0 1.7rem;
}

.home-process-intro h3 {
  color: #fff;
}

.home-process-intro p {
  margin-top: 0.85rem;
  color: rgba(247, 249, 255, 0.78);
}

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

.step-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-card > * + * {
  margin-top: 0.85rem;
}

.step-card__count {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5c94a, #e4a41a);
  color: #071426;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
}

.step-card p {
  color: rgba(247, 249, 255, 0.8);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline__item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline__item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 900;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(15, 45, 99, 0.08);
}

.pricing-card > * + * {
  margin-top: 0.95rem;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top, rgba(240, 186, 47, 0.18), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8f2df 100%);
  border-color: rgba(240, 186, 47, 0.42);
  box-shadow: 0 24px 56px rgba(214, 153, 5, 0.18);
}

.pricing-card__pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(15, 45, 99, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card--featured .pricing-card__pill {
  background: rgba(240, 186, 47, 0.18);
  color: #8a5a00;
}

.price {
  margin-top: 0.8rem;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--brand-deep);
}

.rate {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card__detail {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.05);
}

.pricing-card__detail span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pricing-card__detail strong {
  font-size: 0.98rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "+";
  color: var(--success);
  font-weight: 900;
}

.pricing-card__hint {
  margin-top: auto;
  margin-bottom: 1rem;
  color: var(--brand-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.pricing-note {
  margin-top: 2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(15, 45, 99, 0.06);
  color: var(--ink-soft);
}

.split-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.plan-summary-card__price {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 0.95;
  color: var(--brand-deep);
}

.process-list {
  display: grid;
  gap: 0.9rem;
}

.process-list__item {
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(15, 45, 99, 0.05);
  border: 1px solid rgba(15, 45, 99, 0.08);
}

.process-list__item strong,
.process-list__item span {
  display: block;
}

.process-list__item strong {
  margin-bottom: 0.3rem;
  color: var(--brand-deep);
}

.process-list__item span {
  color: var(--ink-soft);
}

.cta-band {
  padding: 3.2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(240, 186, 47, 0.24), transparent 38%),
    linear-gradient(135deg, #0a1d3d 0%, #102c61 55%, #08162f 100%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-lg);
}

.cta-band .lead {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(247, 249, 255, 0.78);
}

.footer {
  color: var(--ink-inverse);
  background: linear-gradient(180deg, #050f21 0%, #09162d 100%);
}

.footer.is-ready {
  animation: fade-up 0.55s ease both;
}

.footer:not(.is-ready) > * {
  visibility: hidden;
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
  align-items: start;
  gap: 2rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.9rem;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a,
.footer-list span,
.footer p {
  color: rgba(247, 249, 255, 0.72);
  font-size: 0.95rem;
}

.footer-list a:hover,
.footer a:hover {
  color: #fff;
}

.footer__brand {
  max-width: 320px;
}

.compliance-card {
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-card p + p {
  margin-top: 0.7rem;
}

.footer__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 249, 255, 0.65);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 3rem;
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at top left, rgba(37, 84, 176, 0.5), transparent 32%),
    linear-gradient(135deg, #071731 0%, #102c61 45%, #08162f 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 52%, rgba(240, 186, 47, 0.08) 52%, rgba(240, 186, 47, 0.14) 62%, transparent 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 5%, transparent 18%, rgba(255, 255, 255, 0.02) 32%, transparent 42%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero__meta,
.page-hero__image {
  animation: fade-up 0.85s ease both;
}

.page-hero h1 {
  animation-delay: 0.06s;
}

.page-hero .lead,
.page-hero__image {
  animation-delay: 0.14s;
}

.page-hero .lead,
.page-hero p {
  color: rgba(247, 249, 255, 0.82);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.page-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  align-items: center;
}

.page-hero__meta {
  margin-top: 1.25rem;
  color: rgba(247, 249, 255, 0.76);
  font-size: 0.94rem;
}

.page-hero__image {
  justify-self: end;
  width: min(100%, 420px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.content-wrap {
  padding: 4.25rem 0 6rem;
}

.content-panel,
.legal-card {
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid rgba(15, 45, 99, 0.08);
}

.content-panel > * + *,
.legal-card > * + *,
.info-card > * + *,
.dashboard-card > * + *,
.form-card > * + *,
.aside-card > * + * {
  margin-top: 0.95rem;
}

.content-panel h2,
.content-panel h3,
.legal-card h2,
.legal-card h3 {
  margin-bottom: 0.85rem;
  color: var(--brand-deep);
}

.info-card h3,
.dashboard-card h2,
.form-card h2,
.aside-card h3,
.pricing-card h3 {
  color: var(--brand-deep);
}

.content-panel h2 + p,
.content-panel h3 + p,
.legal-card h2 + p,
.legal-card h3 + p {
  margin-top: 0;
}

.content-panel p + p,
.content-panel ul + p,
.content-panel h3 + ul,
.content-panel p + ul,
.legal-card p + p,
.legal-card h3 + ul,
.legal-card p + ul {
  margin-top: 1rem;
}

.content-panel ul,
.legal-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.article-layout {
  display: grid;
  gap: 1.6rem;
}

.article-layout--two {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.aside-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 100%);
  border: 1px solid rgba(15, 45, 99, 0.08);
  box-shadow: var(--shadow-sm);
}

.aside-card h3 {
  margin-bottom: 0.8rem;
}

.aside-card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.aside-card ul li + li {
  margin-top: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  padding: 1.45rem 1.5rem;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(15, 45, 99, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--brand-deep);
}

.faq-item p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal.is-open .modal__panel {
  animation: fade-up 0.28s ease both;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.72);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 2rem));
  margin: min(14vh, 6rem) auto 0;
  padding: 1.8rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(240, 186, 47, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
  box-shadow: 0 30px 80px rgba(7, 20, 43, 0.28);
}

.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(15, 45, 99, 0.12);
  border-radius: 999px;
  background: rgba(15, 45, 99, 0.05);
  color: var(--brand-deep);
  font-weight: 800;
}

.muted {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.45rem;
  }

  .site-nav a {
    padding: 0.44rem 0.55rem;
    font-size: 0.83rem;
  }

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

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

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .site-header__inner {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .site-header.is-open .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding-top: 0.8rem;
  }

  .site-header.is-open .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__grid,
  .page-grid,
  .experts-grid,
  .steps-grid,
  .timeline,
  .pricing-grid,
  .split-note,
  .article-layout--two,
  .dashboard-grid,
  .form-shell,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__panel {
    left: auto;
    right: 0;
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .home-section-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .button-row,
  .meta-list {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .link-button {
    width: 100%;
  }

  .card-grid,
  .module-grid,
  .footer-grid,
  .metric-grid,
  .quick-links,
  .field-grid--two {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2.1rem 1.5rem;
  }

  .content-panel,
  .legal-card {
    padding: 1.5rem;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__panel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .home-page .hero__copy h1 {
    max-width: none;
  }

  .hero__model-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .home-note {
    padding: 1.5rem;
  }

  .brand__subtitle {
    display: none;
  }

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