/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0A0E16;
  --bg-2:      #0F1622;
  --bg-3:      #161F2E;
  --bg-4:      #1C2740;
  --ink:       #ECEFF4;
  --ink-soft:  #C7CDD9;
  --ink-mute:  #7C8798;
  --gold:      #C9A455;
  --gold-2:    #E4C077;
  --red:       #A8332A;
  --line:      rgba(236,239,244,.12);
  --line-strong: rgba(236,239,244,.22);

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10001;
  padding: .7rem 1.1rem; background: var(--gold-2); color: var(--bg);
  border-radius: 4px; font-weight: 600; font-size: .85rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; color: var(--gold-2); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head h2 em, .manifesto-quote em, .hero-title em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.section-sub { color: var(--ink-mute); margin-top: 1rem; max-width: 56ch; }

/* =============================================================
   4. Typography
   ============================================================= */
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em; border-radius: 3px; white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .35s, color .35s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #14100A;
  box-shadow: 0 14px 30px -10px rgba(201,164,85,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -12px rgba(201,164,85,.55); }
.btn-ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.btn-small { padding: .6rem 1.2rem; font-size: .8rem; }
.btn-large { padding: 1.1rem 2.4rem; font-size: .98rem; width: 100%; max-width: 380px; }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* Cards */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: relative; isolation: isolate;
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.card:hover { border-color: rgba(201,164,85,.35); box-shadow: 0 40px 80px -34px rgba(0,0,0,.55), 0 0 0 1px rgba(201,164,85,.18); }

.has-tilt { --rx: 0deg; --ry: 0deg; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d; transition: transform .55s var(--ease-soft); }
.has-tilt:hover { transition-duration: .15s; }

.has-halo::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(201,164,85,.18), transparent 62%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.has-halo:hover::after { opacity: 1; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center; pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.splash-mark { font-family: var(--serif); font-style: italic; font-size: 2.5rem; color: var(--gold-2); }
.splash-line { width: 46px; height: 1px; background: var(--gold); position: relative; overflow: hidden; }
.splash-line::after { content: ""; position: absolute; inset: 0; background: var(--gold-2); transform: translateX(-100%); animation: splashLine 1.4s var(--ease-out) infinite; }
@keyframes splashLine { to { transform: translateX(100%); } }

/* --- Cursor --- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; display: none; opacity: 0; transition: opacity .25s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--gold-2); border-radius: 50%; }
.cursor-ring { width: 34px; height: 34px; margin: -17px; border: 1px solid var(--ink-soft); border-radius: 50%; mix-blend-mode: difference; transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .35s; }
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; border-color: var(--gold-2); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* --- Nav --- */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 150; padding-block: 1.15rem; border-bottom: 1px solid transparent; transition: background-color .4s var(--ease-out), padding .4s var(--ease-out), border-color .4s var(--ease-out); }
.nav.is-scrolled { background: rgba(10,14,22,.88); border-bottom-color: var(--line); padding-block: .75rem; }
@supports (backdrop-filter: blur(10px)) { .nav.is-scrolled { backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); } }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.1rem; letter-spacing: .03em; color: var(--ink); }
.nav-mark { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1rem; flex: none; }
.nav-links { display: none; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .87rem; color: var(--ink-soft); padding-block: .25rem; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold-2); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }
.nav-burger { display: grid; gap: 5px; width: 34px; height: 34px; place-items: center; place-content: center; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 140; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.nav-mobile nav a { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
@media (min-width: 960px) { .nav-mobile { display: none; } }

/* --- Hero --- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding-top: 6rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-mesh {
  position: absolute; inset: -15%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(55% 45% at var(--mesh-x, 30%) var(--mesh-y, 40%), rgba(201,164,85,.24), transparent 60%),
    conic-gradient(from var(--mesh-angle, 0deg), rgba(201,164,85,.14), rgba(10,14,22,0) 30%, rgba(168,51,42,.10) 55%, rgba(201,164,85,.14));
  filter: blur(90px) saturate(120%);
  opacity: .85; mix-blend-mode: screen;
  animation: meshShift 26s linear infinite;
}
@keyframes meshShift {
  0% { --mesh-angle: 0deg; --mesh-x: 25%; --mesh-y: 35%; }
  50% { --mesh-angle: 180deg; --mesh-x: 70%; --mesh-y: 60%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 35%; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(60% 52% at 50% 40%, rgba(10,14,22,.68), transparent 72%),
    linear-gradient(180deg, rgba(10,14,22,.6) 0%, rgba(10,14,22,.74) 55%, rgba(10,14,22,.97) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 3; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
.hero-inner { position: relative; z-index: 4; text-align: center; max-width: 900px; margin-inline: auto; padding-block: 3rem 5rem; }
.hero-inner .kicker { justify-content: center; }
.hero-title {
  font-size: clamp(2.2rem, 6.2vw, 4.4rem); line-height: 1.1; text-wrap: balance;
  max-width: 21ch; margin-inline: auto; color: var(--ink);
  text-shadow: 0 4px 28px rgba(0,0,0,.55);
}
.hero-sub { margin: 1.75rem auto 0; max-width: 56ch; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.7; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

@media (max-width: 560px) {
  .hero { padding-top: 5.5rem; align-items: flex-start; min-height: 78svh; }
  .hero-inner { padding-block: .5rem 2rem; }
  .hero-inner .kicker { margin-bottom: .75rem; font-size: .64rem; }
  .hero-title { font-size: clamp(1.5rem, 6.4vw, 1.9rem); max-width: none; }
  .hero-sub { margin-top: 1.1rem; font-size: .92rem; line-height: 1.55; }
  .hero-actions { margin-top: 1.5rem; gap: .75rem; }
  .hero::before {
    background:
      radial-gradient(60% 45% at 50% 50%, rgba(10,14,22,.32), transparent 70%),
      linear-gradient(180deg, rgba(10,14,22,.4) 0%, rgba(10,14,22,.22) 30%, rgba(10,14,22,.3) 60%, rgba(10,14,22,.65) 100%);
  }
}
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 4; }
.scroll-cue span { display: block; width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollCue 2.4s var(--ease-soft) infinite; }
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- Product Peek --- */
.product-peek { padding-block: clamp(2rem, 5vw, 2.75rem); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.product-peek-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.35rem; text-align: center;
  max-width: 640px; margin-inline: auto;
}
@media (min-width: 640px) {
  .product-peek-inner { flex-direction: row; align-items: center; text-align: left; max-width: 720px; gap: 2rem; }
}
.product-peek-media { width: 96px; flex: none; filter: drop-shadow(0 18px 34px rgba(0,0,0,.5)); }
@media (min-width: 640px) { .product-peek-media { width: 118px; } }
.product-peek-media img { width: 100%; height: auto; display: block; }
.product-peek-info { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
@media (min-width: 640px) { .product-peek-info { align-items: flex-start; } }
.product-peek-info .pricing-badge { margin-bottom: .15rem; }
.product-peek-name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.product-peek-name span { font-family: var(--sans); font-size: .8rem; color: var(--ink-mute); }
.product-peek-price { display: flex; align-items: baseline; gap: .65rem; }
.product-peek-price .pricing-price-old { display: inline; font-size: .82rem; margin-bottom: 0; }
.product-peek-price .pricing-price-new { font-size: 1.55rem; }
.product-peek-price .pricing-price-new span { font-size: .78rem; }
.product-peek-note { color: var(--ink-mute); font-size: .78rem; }
.product-peek-actions { display: flex; align-items: center; gap: 1.35rem; margin-top: .25rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 640px) { .product-peek-actions { justify-content: flex-start; } }
.product-peek-actions .btn { padding: .65rem 1.3rem; font-size: .88rem; }
.product-peek-link { font-size: .84rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.product-peek-link:hover { color: var(--gold-2); }

/* --- Stats --- */
.stats { padding-block: clamp(2.25rem, 5vw, 3.25rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats-bar { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 640px) { .stats-bar { flex-direction: row; justify-content: center; gap: 2.5rem; } }
.stat-value { display: block; font-family: var(--mono); font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--gold-2); font-weight: 600; }
.stat-label { display: block; margin-top: .4rem; font-size: .8rem; color: var(--ink-mute); }
.stats-divider { width: 2.5rem; height: 1px; background: var(--line); }
@media (min-width: 640px) { .stats-divider { width: 1px; height: 2.5rem; } }
.stats-updated { display: flex; flex-direction: column; gap: .35rem; }
.stats-updated-label { font-size: .78rem; color: var(--ink-mute); }
.stats-updated-date { font-family: var(--mono); font-size: 1rem; color: var(--ink-soft); letter-spacing: .02em; }

/* --- Manifesto --- */
.manifesto { padding-block: clamp(4.5rem, 10vw, 8rem); }
.manifesto-single { max-width: 800px; margin-inline: auto; text-align: center; }
.manifesto-single .kicker { justify-content: center; }
.manifesto-quote { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1.32; color: var(--ink); margin: 1.35rem 0 1.75rem; }
.manifesto-body { color: var(--ink-soft); max-width: 62ch; line-height: 1.8; margin-inline: auto; }

/* --- Services --- */
.services { padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { display: flex; flex-direction: column; gap: .9rem; }
.service-num { font-family: var(--mono); color: var(--ink-mute); font-size: .78rem; letter-spacing: .08em; }
.service-icon { color: var(--gold); width: 38px; height: 38px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card p { color: var(--ink-soft); font-size: .94rem; line-height: 1.65; }
.service-card-cta { justify-content: center; background: linear-gradient(160deg, rgba(201,164,85,.08), transparent); border-color: rgba(201,164,85,.28); gap: 1.1rem; }
.service-cta-text { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--ink); }

/* --- Pricing / Plantilla Premium --- */
.pricing { position: relative; padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.pricing-mesh {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none; opacity: .4; mix-blend-mode: screen;
  background: radial-gradient(50% 45% at var(--mesh-x, 20%) var(--mesh-y, 70%), rgba(201,164,85,.22), transparent 62%);
  filter: blur(100px);
  animation: meshShift 30s linear infinite;
}
.pricing .container { position: relative; z-index: 1; }

.pricing-steps { display: grid; gap: 1.5rem; margin: clamp(2.5rem, 5vw, 3.5rem) 0; }
@media (min-width: 720px) { .pricing-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.pricing-step { padding-left: 1.25rem; border-left: 2px solid rgba(201,164,85,.35); }
.pricing-step-num { font-family: var(--mono); color: var(--gold); font-size: .78rem; letter-spacing: .08em; }
.pricing-step h3 { font-size: 1.05rem; margin: .5rem 0 .4rem; }
.pricing-step p { color: var(--ink-mute); font-size: .88rem; line-height: 1.55; }

.pricing-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .pricing-grid { grid-template-columns: 1.1fr .9fr; gap: 4.5rem; } }

.doc-mockup { width: min(300px, 76%); margin: 0 auto clamp(2.5rem, 5vw, 3.25rem); }
.doc-mockup img { display: block; width: 100%; height: auto; }

.pricing-stat-row { font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: var(--gold-2); text-align: center; margin-bottom: 1.75rem; }

.pricing-modules { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .pricing-modules { grid-template-columns: repeat(2, 1fr); } }
.pricing-module { padding: 1.35rem 1.4rem; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-3); }
.pricing-module-num { font-family: var(--mono); color: var(--ink-mute); font-size: .72rem; letter-spacing: .08em; }
.pricing-module h3 { font-size: .98rem; margin: .5rem 0 .6rem; color: var(--ink); }
.pricing-module p { color: var(--ink-soft); font-size: .85rem; line-height: 1.55; }
.pricing-module-count { display: flex; align-items: center; gap: .4rem; margin-top: .9rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.pricing-module-count svg { width: 13px; height: 13px; flex: none; }

.pricing-modules-note { margin-top: 1.6rem; color: var(--ink-mute); font-size: .85rem; text-align: center; line-height: 1.6; }

.pricing-card {
  position: relative; isolation: isolate; background: var(--bg-3); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: clamp(1.75rem, 4vw, 2.5rem); text-align: center;
  box-shadow: 0 60px 120px -50px rgba(0,0,0,.65);
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pricing-card:hover { border-color: rgba(201,164,85,.35); box-shadow: 0 60px 120px -50px rgba(0,0,0,.65), 0 0 0 1px rgba(201,164,85,.18); }
.pricing-card::before { content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.pricing-badge {
  display: inline-block; font-family: var(--mono); font-size: .66rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: var(--bg); background: var(--gold-2); padding: .32rem .75rem;
  border-radius: 999px; margin-bottom: 1rem;
}
.pricing-card-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.pricing-card-tier { font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--gold-2); margin-top: .35rem; }
.pricing-price { margin-top: 1.25rem; }
.pricing-price-old {
  display: block; font-family: var(--mono); font-size: .95rem; color: var(--ink-mute);
  text-decoration: line-through; text-decoration-color: rgba(124,135,152,.65); margin-bottom: .3rem;
}
.pricing-price-new { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.2rem); color: var(--gold-2); }
.pricing-price-new span { font-family: var(--mono); font-size: 1rem; color: var(--ink-mute); margin-left: .35rem; }
.pricing-note { color: var(--ink-mute); font-size: .82rem; margin-top: .25rem; }
.pricing-urgency { color: var(--gold-2); font-size: .78rem; line-height: 1.55; margin-top: .6rem; margin-bottom: 1.5rem; }
.pricing-card .btn-large { width: 100%; max-width: none; }
.pricing-guarantee {
  display: flex; align-items: center; gap: .55rem; margin-top: 1rem; text-align: left;
  color: var(--ink-soft); font-size: .8rem; line-height: 1.4;
}
.pricing-guarantee svg { width: 22px; height: 22px; flex: none; color: var(--gold); }
.pricing-guarantee b { color: var(--ink); font-weight: 600; }
.pricing-trust { display: grid; gap: .55rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); text-align: left; }
.pricing-trust li { display: flex; align-items: center; gap: .6rem; color: var(--ink-mute); font-size: .82rem; }
.pricing-trust li::before { content: "✓"; color: var(--gold); font-size: .78rem; }

/* --- Testimonials --- */
.testimonials { padding-block: clamp(4.5rem, 10vw, 8rem); }
.testimonials-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card { display: flex; flex-direction: column; gap: 1.1rem; }
.testimonial-badge {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--bg-4); border: 1px solid rgba(201,164,85,.35); color: var(--gold);
}
.testimonial-badge svg { width: 20px; height: 20px; }
.testimonial-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.06rem; line-height: 1.62; color: var(--ink); }
.testimonial-card figcaption { display: flex; flex-direction: column; font-size: .85rem; gap: .1rem; }
.testimonial-card figcaption strong { color: var(--ink); font-family: var(--sans); font-weight: 600; font-style: normal; }
.testimonial-card figcaption span { color: var(--ink-mute); }
.testimonials-note { text-align: center; color: var(--ink-mute); font-size: .78rem; margin-top: 2rem; font-style: italic; }

/* --- Notify --- */
.notify { padding-block: clamp(3.5rem, 7vw, 5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notify-inner { display: grid; gap: 2rem; align-items: center; text-align: center; max-width: 640px; margin-inline: auto; }
.notify-copy .section-sub { margin-inline: auto; }
.notify-form-wrap { position: relative; margin-inline: auto; width: 100%; max-width: 420px; }
.notify-form { display: flex; flex-direction: column; gap: .85rem; position: relative; transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft); }
.notify-form.is-sent { opacity: 0; transform: translateY(-10px); pointer-events: none; }
@media (min-width: 560px) { .notify-form { flex-direction: row; align-items: flex-start; } }
.notify-form .field { flex: 1; }
.notify-submit { position: relative; flex: none; white-space: nowrap; }
.notify-success {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  opacity: 0; pointer-events: none; color: var(--gold-2); font-size: .95rem;
  transition: opacity .7s var(--ease-out) .15s, transform .8s var(--ease-soft) .15s; transform: translateY(8px);
}
.notify-success.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* --- Contact --- */
.contact { padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.contact-sub { color: var(--ink-mute); margin-top: 1rem; max-width: 48ch; line-height: 1.7; }
.contact-details { margin-top: 2rem; display: grid; gap: 1rem; }
.contact-details li { display: flex; flex-direction: column; gap: .2rem; border-bottom: 1px solid var(--line); padding-bottom: .85rem; }
.contact-details li span:first-child { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); }
.contact-details a, .contact-details li span:last-child { font-size: 1.05rem; color: var(--ink); }
.contact-details a:hover { color: var(--gold-2); }
.contact-confidential { margin-top: 1.75rem; font-size: .85rem; color: var(--gold-2); }

.contact-form-wrap { position: relative; }
.cta-form { display: grid; gap: 1.1rem; position: relative; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 4px; color: var(--ink); font-family: var(--sans); font-size: .95rem;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 1rem; top: 1.1rem; color: var(--ink-mute); font-size: .92rem;
  pointer-events: none; transition: all .25s var(--ease-out);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .5rem; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2);
}
.cta-submit { position: relative; margin-top: .5rem; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 1.5px solid rgba(20,16,10,.3); border-top-color: #14100A;
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-form-check { width: 20px; height: 20px; margin-inline: auto; color: #14100A; }
.cta-form-check path { stroke: currentColor; stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .55s var(--ease-out); }

.cta-success {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -40%); text-align: center;
  opacity: 0; pointer-events: none; max-width: 360px;
  transition: opacity .8s var(--ease-out) .2s, transform .9s var(--ease-soft) .2s;
}
.cta-success h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.cta-success p { color: var(--ink-soft); }
.cta-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }

/* --- Footer --- */
.footer { padding-block: 3.5rem 2rem; border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a, .footer-social a { color: var(--ink-mute); font-size: .85rem; transition: color .3s; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 1.25rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem .75rem; font-size: .75rem; color: var(--ink-mute); }

/* =============================================================
   7. Effects (reveal, split, misc)
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }
.split-word { display: inline-block; will-change: transform, opacity; }

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions .btn { width: 100%; }
}

/* =============================================================
   9. Reduced-motion (only intrusive loops)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; opacity: .4; }
  .splash-line::after { animation: none; transform: translateX(0); }
}
