@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/marketing-assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/marketing-assets/fonts/sora-latin.woff2") format("woff2");
}

:root {
  --bg: #f5f8ef;
  --bg-strong: #eaf2df;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --forest: #113120;
  --forest-deep: #09150f;
  --forest-soft: #1d4a31;
  --lime: #b0fe4d;
  --lime-deep: #7cc31f;
  --gold: #d8a748;
  --gold-soft: rgba(216, 167, 72, 0.14);
  --text: #102515;
  --muted: #5c6f61;
  --border: #d8e6cb;
  --line: rgba(17, 49, 32, 0.1);
  --shadow: 0 24px 60px rgba(8, 22, 15, 0.08);
  --shadow-strong: 0 30px 80px rgba(8, 22, 15, 0.18);
  --shell: min(1220px, calc(100vw - 32px));
  --shell-narrow: min(900px, calc(100vw - 32px));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(176, 254, 77, 0.18), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(17, 49, 32, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfdf8 0%, var(--bg) 28%, var(--bg-strong) 100%);
  line-height: 1.65;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell-narrow,
.content-shell {
  width: var(--shell-narrow);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(8, 22, 15, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 40px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--forest);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal].reveal-static {
  transition: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.btn {
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 12px 30px rgba(176, 254, 77, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  color: var(--forest);
}

.btn-ghost {
  background: rgba(17, 49, 32, 0.06);
  border-color: rgba(17, 49, 32, 0.08);
  color: var(--forest);
}

.hero,
.page-hero {
  padding: 54px 0 22px;
}

.hero-grid,
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.surface,
.feature-surface,
.legal-surface,
.article-card,
.card,
.price-card,
.metric-card,
.cta-band,
.faq-item,
.blog-card,
.plan-section,
.form-card,
.table-wrap,
.notice,
.timeline-card,
.step-card,
.article-shell,
.post-sidebar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-copy,
.hero-panel,
.feature-surface,
.legal-surface,
.article-shell,
.post-sidebar,
.cta-band,
.plan-section,
.form-card {
  padding: 34px;
}

.stat,
.card,
.feature-surface,
.price-card,
.faq-item,
.blog-card,
.step-card,
.timeline-card,
.metric-card,
.plan-section,
.cta-band,
.hero-panel,
.notice {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.stat:hover,
.card:hover,
.feature-surface:hover,
.price-card:hover,
.faq-item:hover,
.blog-card:hover,
.step-card:hover,
.timeline-card:hover,
.metric-card:hover,
.plan-section:hover,
.cta-band:hover,
.hero-panel:hover,
.notice:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(176, 254, 77, 0.34);
}

.hero-copy::after,
.hero-panel::after,
.feature-surface::after,
.plan-section::after,
.cta-band::after,
.article-shell::after,
.legal-surface::after {
  content: "";
  position: absolute;
  inset: auto -90px -100px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(176, 254, 77, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(216, 167, 72, 0.14), transparent 68%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-copy h1,
.page-hero h1,
.content-shell h1 {
  margin: 18px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-hero h1,
.content-shell h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.hero-copy p,
.page-hero p,
.content-shell .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 66ch;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 49, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 22, 15, 0.07);
}

.signal-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(176, 254, 77, 0.26), rgba(17, 49, 32, 0.12));
  border: 1px solid rgba(17, 49, 32, 0.08);
  color: var(--forest);
  box-shadow: 0 14px 24px rgba(8, 22, 15, 0.08);
}

.signal-icon svg,
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.card-icon {
  margin-bottom: 16px;
}

.price-card.featured .card-icon,
.hero-panel .signal-icon,
.hero-panel .card-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eff8e7;
}

.trust-strip,
.stats-grid,
.card-grid,
.price-grid,
.faq-grid,
.blog-grid,
.legal-grid,
.steps-grid,
.timeline-grid,
.feature-grid,
.list-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid,
.price-grid,
.steps-grid,
.timeline-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.blog-proof-strip,
.functions-proof-strip {
  gap: 16px;
}

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

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

.blog-proof-strip .stat,
.functions-proof-strip .stat {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(17, 49, 32, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 236, 0.94));
  box-shadow: 0 20px 44px rgba(8, 22, 15, 0.08);
}

.blog-proof-strip .stat::before,
.functions-proof-strip .stat::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), rgba(17, 49, 32, 0.24));
}

.blog-proof-strip .stat-kicker,
.functions-proof-strip .stat-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(176, 254, 77, 0.14);
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-proof-strip .stat-headline,
.functions-proof-strip .stat-headline {
  display: block;
  max-width: 13ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.blog-proof-strip .stat p,
.functions-proof-strip .stat p {
  margin: 0;
  max-width: 32ch;
  color: rgba(17, 49, 32, 0.72);
}

.blog-proof-strip .stat:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.94));
}

.blog-proof-strip .stat:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(245, 249, 239, 0.98), rgba(255, 255, 255, 0.94));
}

.blog-proof-strip .stat:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(241, 247, 236, 0.98), rgba(250, 252, 247, 0.94));
}

.module-ribbon-section {
  padding: 8px 0 18px;
}

.module-ribbon {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(8, 22, 15, 0.06);
}

.module-ribbon::before,
.module-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.module-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.module-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.module-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ribbon-drift 28s linear infinite;
}

.module-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 49, 32, 0.08);
  background: rgba(245, 248, 239, 0.96);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.module-pill svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.stat,
.metric-card,
.card,
.blog-card,
.faq-item,
.step-card,
.timeline-card,
.price-card {
  padding: 24px;
}

.stat-number,
.metric-value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.muted,
.stat p,
.card p,
.blog-card p,
.faq-item p,
.metric-card p,
.price-card p,
.step-card p,
.timeline-card p,
.legal-surface p,
.notice p,
.prose p,
.prose li,
.article-card p,
.page-summary {
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(13, 43, 27, 0.98), rgba(8, 22, 15, 0.98));
  color: #eff8e7;
  box-shadow: var(--shadow-strong);
}

.hero-panel .section-kicker,
.hero-panel .muted,
.hero-panel p {
  color: rgba(239, 248, 231, 0.78);
}

.panel-stack {
  display: grid;
  gap: 16px;
}

.hero-dashboard {
  position: relative;
  margin-top: 12px;
  min-height: 250px;
}

.dashboard-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-dots {
  display: inline-flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(239, 248, 231, 0.35);
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(176, 254, 77, 0.14);
  color: #eff8e7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(176, 254, 77, 0.12);
  animation: pulse-dot 2.2s ease-out infinite;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-kpi {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-kpi strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.36rem;
  line-height: 1;
}

.dashboard-kpi span {
  display: block;
  color: rgba(239, 248, 231, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.dashboard-flow {
  display: grid;
  gap: 12px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--lime);
}

.flow-copy strong {
  display: block;
  font-size: 0.92rem;
}

.flow-copy span {
  display: block;
  color: rgba(239, 248, 231, 0.68);
  font-size: 0.79rem;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 16px 26px rgba(8, 22, 15, 0.18);
  animation: float-card 5.8s ease-in-out infinite;
}

.floating-chip svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.floating-chip-a {
  top: -8px;
  right: 16px;
}

.floating-chip-b {
  right: -8px;
  bottom: 62px;
  animation-delay: 1.4s;
}

.floating-chip-c {
  left: 18px;
  bottom: -8px;
  animation-delay: 2.1s;
}

.feature-chip,
.pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-chip,
.tag-pill {
  background: rgba(176, 254, 77, 0.14);
  color: var(--forest-soft);
}

.pill {
  background: var(--gold-soft);
  color: #8a6518;
}

.section {
  padding: 26px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.section-header h2,
.section-header h3,
.article-shell h2,
.legal-surface h2,
.prose h2,
.prose h3,
.table-wrap h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-header h2,
.article-shell h2,
.legal-surface h2,
.table-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section-header p {
  max-width: 70ch;
}

.card h3,
.blog-card h3,
.price-card h3,
.faq-item h3,
.step-card h3,
.timeline-card h3,
.metric-card h3,
.article-card h3,
.prose h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.checklist,
.link-list,
.meta-list,
.mini-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.checklist li,
.mini-list li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(176, 254, 77, 0.18);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.comparison-table td strong {
  color: var(--forest);
}

.table-wrap {
  padding: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs span {
  opacity: 0.5;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}

.hero-price strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-price span {
  color: var(--muted);
  font-weight: 700;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(13, 43, 27, 0.98), rgba(8, 22, 15, 0.96));
  color: #eff8e7;
  box-shadow: var(--shadow-strong);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .muted {
  color: rgba(239, 248, 231, 0.82);
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0;
}

.price-card .price strong {
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.post-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.post-article {
  padding: 38px;
}

.post-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.post-meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 49, 32, 0.08);
  background: rgba(17, 49, 32, 0.05);
  box-shadow: 0 12px 28px rgba(8, 22, 15, 0.05);
  color: var(--forest);
}

.post-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
  isolation: isolate;
  background-color: #102515;
  background-image: linear-gradient(180deg, rgba(12, 37, 24, 0.98), rgba(17, 49, 32, 0.94));
  border-color: rgba(176, 254, 77, 0.2);
  color: #eff8e7;
  box-shadow: var(--shadow-strong);
}

.post-sidebar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), rgba(216, 167, 72, 0.9));
}

.post-sidebar h2 {
  display: grid;
  gap: 12px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.post-sidebar h2::before {
  content: "Sigue leyendo";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(176, 254, 77, 0.12);
  color: rgba(239, 248, 231, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-sidebar .link-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-sidebar .link-list li {
  margin: 0;
}

.post-sidebar .link-list a {
  display: grid;
  gap: 8px;
  align-content: space-between;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #eff8e7;
  font-weight: 800;
  line-height: 1.3;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.post-sidebar .link-list a::after {
  content: "Abrir ruta";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(239, 248, 231, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-sidebar .link-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 254, 77, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.post-sidebar .link-list a:hover::after {
  color: rgba(239, 248, 231, 0.88);
}

.post-sidebar .link-list li:first-child a {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(176, 254, 77, 0.95), rgba(201, 255, 127, 0.88));
  box-shadow: 0 18px 40px rgba(176, 254, 77, 0.18);
  color: var(--forest);
}

.post-sidebar .link-list li:first-child a::after {
  color: rgba(16, 37, 21, 0.74);
}

.article-shell h1 {
  max-width: 13ch;
}

.content-shell .lead {
  margin: 0 0 28px;
  font-size: 1.16rem;
  line-height: 1.75;
  max-width: 58ch;
}

.article-cover {
  position: relative;
  margin: 30px 0;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(176, 254, 77, 0.24), rgba(17, 49, 32, 0.12));
  border: 1px solid rgba(17, 49, 32, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 18px 40px rgba(8, 22, 15, 0.08);
}

.article-cover::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
  pointer-events: none;
}

.article-cover strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.prose {
  display: grid;
  gap: 20px;
  font-size: 1.03rem;
  line-height: 1.82;
  color: rgba(15, 31, 23, 0.92);
}

.prose > :where(h2, p, ul, ol, blockquote) {
  max-width: 70ch;
}

.prose h2 {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.prose p {
  margin: 0;
  color: rgba(15, 31, 23, 0.82);
}

.prose li {
  color: rgba(15, 31, 23, 0.86);
}

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

.prose blockquote,
.quote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--lime-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(176, 254, 77, 0.1);
  color: var(--forest);
  font-weight: 700;
}

.footer {
  padding: 34px 0 48px;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-xl);
  background: rgba(12, 37, 24, 0.96);
  color: #eaf4e3;
  box-shadow: var(--shadow-strong);
}

.footer-panel p,
.footer-panel a {
  color: rgba(234, 244, 227, 0.76);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-bottom {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  padding: 24px;
  border-color: rgba(216, 167, 72, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 255, 255, 0.88));
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-nav .btn,
.article-nav .btn-secondary {
  flex: 1 1 220px;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 49, 32, 0.06);
  border: 1px solid rgba(17, 49, 32, 0.08);
  color: var(--forest);
  font-weight: 800;
  font-size: 0.88rem;
}

.module-ribbon:hover .module-track {
  animation-play-state: paused;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 254, 77, 0.26);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(176, 254, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(176, 254, 77, 0);
  }
}

@keyframes ribbon-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.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 (max-width: 1080px) {
  .hero-grid,
  .hero-split,
  .post-grid,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
    top: auto;
  }

  .trust-strip,
  .stats-grid,
  .card-grid,
  .feature-grid,
  .price-grid,
  .faq-grid,
  .blog-grid,
  .legal-grid,
  .steps-grid,
  .timeline-grid,
  .list-grid,
  .footer-links,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .floating-chip-b {
    right: 12px;
    bottom: 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav {
    border-radius: 28px;
    padding: 18px;
  }

  .nav,
  .nav-links,
  .nav-actions,
  .hero-actions,
  .hero-signal-bar,
  .inline-actions,
  .article-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .page-hero,
  .section,
  .footer {
    padding-top: 22px;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-panel,
  .feature-surface,
  .legal-surface,
  .article-shell,
  .post-sidebar,
  .cta-band,
  .plan-section,
  .form-card,
  .post-article,
  .table-wrap,
  .card,
  .price-card,
  .faq-item,
  .blog-card,
  .metric-card,
  .step-card,
  .timeline-card,
  .notice {
    padding: 24px;
    border-radius: 26px;
  }

  .trust-strip,
  .stats-grid,
  .card-grid,
  .feature-grid,
  .price-grid,
  .faq-grid,
  .blog-grid,
  .legal-grid,
  .steps-grid,
  .timeline-grid,
  .list-grid,
  .footer-links,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    min-width: 620px;
  }

  .module-ribbon {
    border-radius: 30px;
  }

  .blog-proof-strip .stat,
  .functions-proof-strip .stat {
    min-height: auto;
  }

  .blog-proof-strip .stat-headline,
  .functions-proof-strip .stat-headline {
    max-width: none;
  }

  .post-sidebar {
    gap: 14px;
    margin-top: 8px;
    background-position: center;
  }

  .post-sidebar .link-list a {
    min-height: 72px;
  }

  .module-track {
    animation-duration: 34s;
  }

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

  .floating-chip {
    position: static;
    width: 100%;
    justify-content: center;
  }

  .hero-dashboard {
    display: grid;
    gap: 12px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy::before,
  .dashboard-status::before,
  .module-track,
  .floating-chip {
    animation: none;
  }
}
