:root {
  color-scheme: light;
  --black: #080808;
  --background: #0a0a0a;
  --foreground: #ececec;
  --card: #141414;
  --paper: #e6e6e2;
  --paper-soft: #d7d7d1;
  --primary: #e6e6e2;
  --primary-foreground: #080808;
  --primary-hover: #cfcfca;
  --muted-foreground: #a3a3a0;
  --border: rgba(230, 230, 226, 0.12);
  --accent: #d88a2d;
  --accent-strong: #ffb347;
  --accent-gradient: linear-gradient(135deg, #a95d1d 0%, #ffb762 42%, #d88a2d 68%, #7c461c 100%);
  --accent-glow: rgba(216, 138, 45, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #101010;
  color: var(--paper);
  font-family: "Barlow", Arial, sans-serif;
}

main {
  background: #101010;
  padding-bottom: clamp(12px, 2vw, 24px);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  background: var(--paper);
  color: var(--black);
  font-weight: 600;
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: 0;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 100;
}

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

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.navbar {
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 20px clamp(24px, 5vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  color: #fff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 span,
h2 span {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent-strong);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-cta,
.button {
  align-items: center;
  display: inline-flex;
  font-family: "Barlow Condensed", Arial, sans-serif;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  display: none;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--primary-hover);
}

.hero {
  align-items: flex-end;
  background: #000;
  color: var(--foreground);
  display: flex;
  min-height: 94svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  animation: heroDrift 18s ease-out both;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.4;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.62) 50%, transparent 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.52), transparent 60%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 1152px;
  padding: 132px clamp(24px, 5vw, 48px) clamp(72px, 11vh, 104px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.tag,
.number {
  color: var(--primary);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.85rem, 16vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 32px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
}

.hero-copy,
.section-copy,
.copy-block p,
.step-card p,
.price-card p,
.testimonial-card p,
.faq-item p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-copy {
  font-size: clamp(1rem, 4vw, 1.125rem);
  max-width: 540px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  border: 1px solid transparent;
  font-size: 1.08rem;
  min-height: 56px;
  padding: 16px 18px;
  width: 100%;
}

.button:hover svg:last-child {
  transform: translateX(4px);
}

.button-primary,
.button-dark {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.button-dark::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.button-primary:hover::after,
.button-dark:hover::after {
  transform: translateX(120%);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

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

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

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 38%),
    var(--accent-gradient);
  box-shadow: 0 18px 48px rgba(216, 138, 45, 0.2);
  color: #080808;
  padding-inline: 40px;
}

.button-dark:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 36%),
    var(--accent-gradient);
  box-shadow: 0 22px 60px rgba(216, 138, 45, 0.28);
  transform: translateY(-2px);
}

.scroll-link {
  animation: bounce 1.6s infinite;
  bottom: 32px;
  color: var(--muted-foreground);
  display: none;
  font-size: 1.5rem;
  position: absolute;
  right: 32px;
  z-index: 2;
}

.scroll-link:hover {
  color: var(--primary);
}

.section {
  --border: rgba(8, 8, 8, 0.16);
  --foreground: var(--black);
  --muted-foreground: #565653;
  --primary: var(--black);
  --primary-foreground: var(--paper);
  --primary-hover: #242424;
  background: var(--paper);
  border-radius: clamp(18px, 2vw, 28px);
  color: var(--foreground);
  margin: clamp(12px, 2vw, 24px);
  overflow: hidden;
  padding: 80px clamp(24px, 5vw, 48px);
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(8, 8, 8, 0.08), transparent);
  content: "";
  height: 1px;
  left: clamp(24px, 5vw, 48px);
  position: absolute;
  right: clamp(24px, 5vw, 48px);
  top: 0;
}

.section-alt {
  --border: rgba(8, 8, 8, 0.16);
  --foreground: var(--black);
  --muted-foreground: #565653;
  --primary: var(--black);
  --primary-foreground: var(--paper);
  --primary-hover: #242424;
  background: var(--paper);
  color: var(--foreground);
}

#proceso {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.035), transparent 40%),
    var(--paper);
}

#planes {
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 138, 45, 0.11), transparent 28%),
    var(--paper);
}

#preguntas {
  padding-block: clamp(72px, 9vw, 112px);
}

.about-section,
.community-section {
  --border: rgba(230, 230, 226, 0.18);
  --foreground: #e6e6e2;
  --muted-foreground: #aaa9a4;
  --primary: #e6e6e2;
  background: transparent;
  border-radius: 0;
  color: var(--foreground);
}

.about-section {
  background:
    radial-gradient(circle at 0% 18%, rgba(216, 138, 45, 0.1), transparent 32%),
    transparent;
}

.about-section .image-frame::before,
.community-section .image-frame::before {
  border-color: rgba(230, 230, 226, 0.22);
}

.about-section .image-frame::before {
  border-color: rgba(255, 183, 98, 0.28);
}

.container {
  margin-inline: auto;
  max-width: 1152px;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 768px;
}

.two-columns {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}

.copy-block .strong {
  color: var(--foreground);
  font-weight: 400;
}

.about-quote {
  border-left: 3px solid var(--accent);
  color: var(--foreground) !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.45rem, 4.2vw, 2rem) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  margin: 34px 0 28px;
  padding-left: 18px;
  text-transform: uppercase;
}

.check-list,
.message-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.message-list li {
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  color: var(--primary);
  content: "";
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  height: 6px;
  left: 2px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}

.message-list li::before {
  border: 2px solid var(--primary);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 13px;
}

.section-heading {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-heading h2 {
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  max-width: 760px;
}

.steps-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.steps-grid {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.step-card {
  border-bottom: 1px solid var(--border);
  border-right: 0;
  min-height: 240px;
  padding: clamp(34px, 6vw, 42px) clamp(32px, 4vw, 40px) clamp(32px, 4vw, 40px);
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease;
}

.step-card:hover {
  background: rgba(8, 8, 8, 0.035);
}

.step-card .number {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent);
  display: block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.4rem, 18vw, 5.2rem);
  font-weight: 900;
  line-height: 0.78;
  margin: 0 0 30px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 90ms);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card.is-visible .number {
  opacity: 1;
  transform: translateY(0);
}

.step-card:last-child {
  border-bottom: 0;
  border-right: 0;
}

.step-card h3,
.price-card h3 {
  margin-bottom: 16px;
}

.step-card h3::before {
  background: var(--accent-gradient);
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 18px;
  width: 42px;
}

.step-card h3,
.step-card > p:not(.number) {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 480ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card h3 {
  transition-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}

.step-card > p:not(.number) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 240ms);
}

.step-card.is-visible h3,
.step-card.is-visible > p:not(.number) {
  opacity: 1;
  transform: translateY(0);
}

.pricing-list {
  display: grid;
  gap: 14px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 36px);
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.price-card:hover {
  border-color: rgba(8, 8, 8, 0.36);
  transform: translateY(-2px);
}

.price-card.featured {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 183, 98, 0.18), transparent 34%),
    var(--card);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 183, 98, 0.16);
  color: var(--paper);
  --border: rgba(230, 230, 226, 0.14);
  --foreground: var(--paper);
  --muted-foreground: #a3a3a0;
  --primary: var(--paper);
  --primary-foreground: var(--black);
  --primary-hover: #cfcfca;
}

.price-card.featured > p:not(.tag):not(.price):not(.plan-badge) {
  display: none;
}

.plan-badge {
  align-self: start;
  border: 1px solid rgba(255, 183, 98, 0.28);
  border-radius: 999px;
  color: var(--accent-strong);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.68rem;
  justify-self: start;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 7px 10px;
  text-transform: uppercase;
}

.price-card .tag {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.price-card.featured .tag {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent-strong);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price span {
  color: var(--muted-foreground);
  display: block;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: lowercase;
  -webkit-text-fill-color: var(--muted-foreground);
}

.pricing-note {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 16px 0 0;
  text-align: center;
}

.price-features {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.price-features li {
  color: var(--muted-foreground);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.price-features li::before {
  background: var(--accent-gradient);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 6px;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  border: 1px solid rgba(8, 8, 8, 0.2);
  content: "";
  inset: -16px;
  position: absolute;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.about-image img {
  aspect-ratio: 16 / 7;
  max-height: 420px;
  object-position: center 44%;
  transform: scale(1.32);
}

.about-image-crop {
  overflow: hidden;
}

.about-image::before {
  border-color: rgba(255, 183, 98, 0.34);
  inset: -16px;
  z-index: 1;
}

blockquote {
  border-left: 2px solid var(--primary);
  margin: 32px 0 0;
  padding-left: 16px;
}

.testimonial-grid {
  background: var(--border);
  border-radius: 8px;
  gap: 1px;
  overflow: hidden;
}

.testimonial-card {
  background: var(--card);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  transition: background-color 180ms ease, transform 180ms ease;
  --border: rgba(230, 230, 226, 0.14);
  --foreground: var(--paper);
  --muted-foreground: #a3a3a0;
  --primary: var(--paper);
  --primary-foreground: var(--black);
  --primary-hover: #cfcfca;
}

.testimonial-card:hover {
  background: #1b1b1b;
}

.testimonial-card p {
  color: var(--foreground);
  flex: 1;
}

.testimonial-card footer {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 4px;
  padding-top: 24px;
}

.testimonial-card strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.testimonial-card span {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent-strong);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-card small {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  font-weight: 300;
}

.banner {
  background: var(--background);
  border-radius: clamp(18px, 2vw, 28px);
  color: var(--foreground);
  height: clamp(256px, 32vw, 384px);
  margin: clamp(12px, 2vw, 24px);
  overflow: hidden;
  position: relative;
}

.banner img {
  transform: scale(1.04);
  transition: transform 900ms ease, opacity 900ms ease;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  width: 100%;
}

.banner.is-visible img,
.banner:hover img {
  opacity: 0.62;
  transform: scale(1);
}

.banner::after {
  background: linear-gradient(to right, rgba(230, 230, 226, 0.18), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.banner-content {
  align-items: center;
  display: flex;
  inset: 0;
  padding: clamp(24px, 5vw, 48px);
  position: absolute;
  z-index: 1;
}

.banner-content p {
  color: var(--foreground);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  max-width: 900px;
  text-transform: uppercase;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item button {
  align-items: flex-start;
  background: none;
  border: 0;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  justify-content: space-between;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.faq-item button:hover {
  color: var(--primary);
}

.faq-item svg {
  color: var(--muted-foreground);
  flex: 0 0 auto;
  margin-top: 4px;
  transition: transform 200ms ease, color 200ms ease;
}

.faq-item.is-open svg {
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transform: translateY(-6px);
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    margin-top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open p {
  max-height: var(--faq-height, 240px);
  opacity: 1;
  margin-top: 16px;
  transform: translateY(0);
}

.cta-section {
  --border: rgba(230, 230, 226, 0.16);
  --foreground: var(--paper);
  --muted-foreground: #b7b7b0;
  --primary: var(--paper);
  --primary-foreground: var(--black);
  --primary-hover: #cfcfca;
  background:
    radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 34%),
    linear-gradient(135deg, #050505 0%, #111 56%, #070707 100%);
  border-radius: clamp(18px, 2vw, 28px);
  color: var(--foreground);
  margin: clamp(12px, 2vw, 24px);
  overflow: hidden;
  padding: clamp(96px, 12vw, 144px) clamp(24px, 5vw, 48px);
  position: relative;
  text-align: center;
}

.cta-section::before {
  animation: ctaPulse 4.8s ease-in-out infinite;
  border: 1px solid rgba(255, 183, 98, 0.18);
  border-radius: 8px;
  content: "";
  inset: clamp(14px, 2vw, 24px);
  pointer-events: none;
  position: absolute;
}

.cta-section::after {
  animation: ctaGlow 6s ease-in-out infinite;
  background: radial-gradient(circle, rgba(255, 183, 98, 0.18), transparent 58%);
  content: "";
  height: min(420px, 72vw);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -18%;
  transform: translateX(-50%);
  width: min(520px, 92vw);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .eyebrow {
  background: var(--accent-gradient);
  background-clip: text;
  color: var(--accent-strong);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content h2 {
  color: var(--foreground);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.cta-content p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  font-weight: 300;
  margin-inline: auto;
  max-width: 560px;
}

.cta-content small {
  color: rgba(230, 230, 226, 0.58);
  display: block;
  font-weight: 300;
  margin-top: 24px;
}

.footer {
  background: #050505;
  border-top: 1px solid rgba(230, 230, 226, 0.08);
  color: var(--foreground);
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px clamp(24px, 5vw, 64px) 22px;
}

.footer p {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.footer-meta {
  display: grid;
  gap: 12px;
  justify-items: center;
  width: 100%;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.legal-links a {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.legal-links a:hover {
  color: var(--primary);
  text-decoration-color: currentColor;
}

.legal-page {
  background: #101010;
  min-height: 100vh;
}

.legal-header {
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(230, 230, 226, 0.12);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 48px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-back {
  align-items: center;
  display: inline-flex;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.75rem;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-back::before {
  content: "\2190";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.legal-back:hover::before {
  transform: translateX(-4px);
}

.legal-content {
  background: var(--paper);
  border-radius: clamp(18px, 2vw, 28px);
  color: var(--black);
  margin: clamp(12px, 2vw, 24px) auto;
  max-width: min(960px, calc(100% - clamp(24px, 4vw, 48px)));
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 8vw, 96px);
}

.legal-content h1 {
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.88;
  margin-bottom: clamp(48px, 8vw, 80px);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin: 48px 0 18px;
  padding-top: 32px;
}

.legal-content p,
.legal-content li {
  color: #454542;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.legal-content strong {
  color: var(--black);
  font-weight: 600;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-notice {
  background: #171717;
  border-left: 4px solid #e6b94a;
  color: var(--paper) !important;
  font-size: 0.92rem !important;
  font-weight: 400;
  margin-bottom: 48px;
  padding: 20px 22px;
}

.legal-updated {
  color: #686864 !important;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.image-frame.reveal {
  transform: translateY(18px) scale(0.985);
}

.image-frame.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.testimonial-card.reveal {
  transform: translateY(22px);
}

.testimonial-card.reveal.is-visible {
  transform: translateY(0);
}

.step-card.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.steps-grid .step-card:nth-child(2),
.testimonial-grid .testimonial-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.steps-grid .step-card:nth-child(3),
.testimonial-grid .testimonial-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.pricing-list.reveal.is-visible .price-card,
.pricing-list.reveal.is-visible .pricing-note {
  animation: cardRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pricing-list.reveal.is-visible .price-card:nth-child(2) {
  animation-delay: 90ms;
}

.pricing-list.reveal.is-visible .pricing-note {
  animation-delay: 160ms;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@keyframes heroDrift {
  from {
    opacity: 0.28;
    transform: scale(1.06);
  }

  to {
    opacity: 0.4;
    transform: scale(1);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes ctaPulse {
  0%,
  100% {
    border-color: rgba(255, 183, 98, 0.14);
    opacity: 0.72;
  }

  50% {
    border-color: rgba(255, 183, 98, 0.34);
    opacity: 1;
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(0.96);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-50%) scale(1.04);
  }
}

@media (min-width: 561px) {
  h1 {
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.92;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 144px;
  }

  .actions,
  .button {
    width: auto;
  }

  .button {
    padding-inline: 28px;
  }

  .scroll-link {
    display: block;
  }

  .reveal {
    transform: translateY(24px);
  }

  .image-frame.reveal {
    transform: translateY(24px) scale(0.98);
  }

}

@media (min-width: 821px) {
  .nav-cta {
    display: inline-flex;
  }

  .section {
    padding-block: clamp(96px, 12vw, 144px);
  }

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

  .about-image img {
    aspect-ratio: 4 / 3;
    max-height: none;
    object-position: center 28%;
    transform: none;
  }

  .about-image::before {
    inset: -16px;
  }

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

  .step-card {
    border-bottom: 0;
    border-right: 1px solid var(--border);
    z-index: 1;
  }

  .step-card:last-child {
    border-right: 0;
  }

  .footer {
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
  }

  .footer > .brand {
    font-size: 1.5rem;
  }

  .footer-meta {
    align-items: center;
    display: flex;
    grid-column: auto;
    justify-content: space-between;
  }

  .footer-meta p {
    text-align: left;
  }
}

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

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

  .reveal,
  .image-frame.reveal,
  .step-card.reveal,
  .testimonial-card.reveal {
    clip-path: none !important;
    transform: none !important;
  }

  .step-card h3,
  .step-card > p:not(.number) {
    opacity: 1 !important;
    transform: none !important;
  }

  .faq-item p {
    transition: none !important;
  }
}
