/* nicci.ai landing page. Tokens: brand.css */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
* { box-sizing: border-box; }
[hidden] { display: none !important; }
.ln {
  background: var(--so-navy);
  color: var(--so-white);
  font-family: var(--font-sans);
  font-weight: var(--fw-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-weight: var(--fw-medium); letter-spacing: -0.015em; margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--so-coral); outline-offset: 3px; }
.ln-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ln-nowrap { white-space: nowrap; }
.ln-small { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.62); margin: 18px 0 0; }
.ln-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.ln-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
  font-family: inherit; font-size: var(--text-xs); font-weight: var(--fw-semibold);
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.ln-btn:hover { transform: translateY(-1px); }
.ln-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ln-btn-coral { background: var(--so-coral); color: var(--so-white); }
.ln-btn-coral:hover { background: #e9503f; }
.ln-btn-navy { background: var(--so-navy); color: var(--so-white); }
.ln-btn-navy:hover { background: var(--so-navy-hover); }
.ln-btn-ghost { background: transparent; color: var(--so-white); border-color: rgba(255, 255, 255, 0.35); }
.ln-btn-ghost:hover { border-color: var(--so-white); }

/* ── Header ─────────────────────────────────────────────────────────── */
.ln-header { position: relative; z-index: 3; background: var(--so-navy-deep); }
.ln-header-row { display: flex; align-items: center; justify-content: space-between; min-height: 124px; }
.ln-logo { font-size: 32px; }
.ln-nav { display: flex; align-items: center; gap: 34px; font-size: var(--text-sm); font-weight: var(--fw-medium); }
.ln-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.86); position: relative; padding: 6px 0; }
.ln-nav a:not(.ln-nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--so-coral); transform: scaleX(0); transition: transform 200ms ease; }
.ln-nav a:not(.ln-nav-cta):hover::after { transform: scaleX(1); }
.ln-nav a:hover { color: var(--so-white); }
.ln-nav-cta { padding: 11px 18px !important; background: var(--so-navy); border-radius: var(--radius-sm); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: var(--fw-semibold); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.ln-hero { position: relative; min-height: min(86vh, 860px); display: flex; align-items: center; overflow: hidden; background: var(--so-navy-deep); }
.ln-hero-img { position: absolute; inset: 0 0 0 auto; width: 60%; }
.ln-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
/* The portrait melts into the navy on the left. */
.ln-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--so-navy-deep) 0%, rgba(34, 46, 59, 0.82) 16%, rgba(34, 46, 59, 0.2) 46%, rgba(34, 46, 59, 0) 70%),
              linear-gradient(0deg, rgba(34, 46, 59, 0.55) 0%, rgba(34, 46, 59, 0) 30%);
}
.ln-hero-inner { position: relative; z-index: 2; width: 100%; }
.ln-hero-copy { max-width: 660px; padding: 72px 0 88px; }
.ln-kicker { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.72); margin: 0 0 26px; }
.ln-kicker .so-logo { font-size: 16px; letter-spacing: 0.02em; text-transform: none; }
.ln-hero h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.03; letter-spacing: -0.025em; }
.ln-hero h1 em { font-style: normal; color: rgba(255, 255, 255, 0.62); }
.ln-hero h1::after { content: ''; display: block; width: 64px; height: 3px; background: var(--so-coral); margin: 30px 0 0; }
.ln-lede { font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; color: rgba(255, 255, 255, 0.86); margin: 26px 0 34px; max-width: 520px; }
.ln-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Gentle entrance */
@media (prefers-reduced-motion: no-preference) {
  .ln-hero-img img { animation: ln-zoom 1600ms cubic-bezier(.2,.7,.2,1) both; }
  .ln-hero-copy > * { animation: ln-rise 900ms cubic-bezier(.2,.7,.2,1) both; }
  .ln-hero-copy > *:nth-child(2) { animation-delay: 80ms; }
  .ln-hero-copy > *:nth-child(3) { animation-delay: 160ms; }
  .ln-hero-copy > *:nth-child(4) { animation-delay: 240ms; }
  .ln-hero-copy > *:nth-child(5) { animation-delay: 320ms; }
}
@keyframes ln-zoom { from { transform: scale(1.06); opacity: 0.6; } to { transform: scale(1); opacity: 1; } }
@keyframes ln-rise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Proof strip ────────────────────────────────────────────────────── */
.ln-proof { background: var(--so-navy); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.ln-proof-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px; padding: 26px 24px; color: rgba(255, 255, 255, 0.7); text-align: center; }
.ln-proof-logo { font-size: 20px; }
.ln-proof-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--so-coral); }

/* ── Sections ───────────────────────────────────────────────────────── */
.ln-section { padding: 120px 0; }
.ln-paper { background: var(--so-paper); color: var(--so-ink); }
.ln-eyebrow { color: var(--so-coral); margin: 0 0 18px; }
.ln-h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 56px; }

.ln-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--so-line); }
.ln-feature { padding: 34px 28px 10px 0; border-right: 1px solid var(--so-line); margin-right: 28px; }
.ln-feature:last-child { border-right: 0; margin-right: 0; }
.ln-num { display: block; font-family: var(--font-logo); font-weight: 700; font-size: 15px; color: var(--so-coral); margin-bottom: 26px; }
.ln-feature h3 { font-size: var(--text-xl); letter-spacing: -0.01em; margin-bottom: 12px; }
.ln-feature p { margin: 0; color: var(--so-muted); line-height: 1.6; font-size: var(--text-base); }

/* ── Split: portrait + steps ────────────────────────────────────────── */
.ln-split { background: var(--so-navy); }
.ln-split-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 88px; align-items: center; }
.ln-split-img { margin: 0; position: relative; }
.ln-split-img img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
.ln-split-img::before { content: ''; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-sm); z-index: -1; }
.ln-split-img { z-index: 0; }
.ln-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.ln-steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 4px 0; padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.ln-steps li::before { content: counter(step, decimal-leading-zero); grid-row: span 2; font-family: var(--font-logo); font-weight: 700; color: var(--so-coral); font-size: 15px; padding-top: 3px; }
.ln-steps strong { font-weight: var(--fw-medium); font-size: var(--text-xl); }
.ln-steps span { color: rgba(255, 255, 255, 0.72); line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────────────────── */
.ln-prices { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 28px; justify-content: center; }
.ln-price { position: relative; background: var(--so-white); border-radius: var(--radius-lg); padding: 40px 36px 36px; display: flex; flex-direction: column; }
.ln-price-feature { background: var(--so-navy-deep); color: var(--so-white); }
.ln-price h3 { font-size: var(--text-lg); letter-spacing: 0; }
.ln-amount { margin: 18px 0 4px; font-size: 4rem; font-weight: var(--fw-medium); letter-spacing: -0.03em; line-height: 1; }
.ln-cur { font-size: 1.1rem; letter-spacing: 0.04em; vertical-align: top; margin-right: 4px; position: relative; top: 10px; }
.ln-price-note { margin: 8px 0 24px; color: var(--so-muted); font-size: var(--text-sm); }
.ln-price-feature .ln-price-note { color: rgba(255, 255, 255, 0.7); }
.ln-price ul { list-style: none; margin: 0 0 32px; padding: 0; flex: 1; }
.ln-price li { padding: 12px 0 12px 26px; border-top: 1px solid var(--so-line); position: relative; font-size: var(--text-base); }
.ln-price-feature li { border-top-color: rgba(255, 255, 255, 0.12); }
.ln-price li::before { content: ''; position: absolute; left: 2px; top: 19px; width: 10px; height: 2px; background: var(--so-coral); }
.ln-badge { position: absolute; top: 20px; right: 20px; background: var(--so-coral); color: var(--so-white); font-size: 0.66rem; font-weight: var(--fw-semibold); letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 10px; border-radius: var(--radius-full); }
.ln-price-msg { text-align: center; margin: 24px 0 0; color: var(--so-danger); }
#pricing .ln-small { color: var(--so-muted); margin-top: 28px; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.ln-faq { max-width: 860px; }
.ln-faq details { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.ln-faq details:last-of-type { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.ln-faq summary { list-style: none; cursor: pointer; padding: 26px 40px 26px 0; font-size: var(--text-xl); font-weight: var(--fw-medium); position: relative; }
.ln-faq summary::-webkit-details-marker { display: none; }
.ln-faq summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 300; color: var(--so-coral); transition: transform 200ms ease; }
.ln-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ln-faq details p { margin: 0 0 26px; color: rgba(255, 255, 255, 0.76); line-height: 1.7; max-width: 720px; }

/* ── Closing band + footer ──────────────────────────────────────────── */
.ln-close { background: var(--so-coral); }
.ln-close-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 64px 24px; }
.ln-close h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.02em; }
.ln-close .ln-btn-coral { background: var(--so-navy-deep); }
.ln-close .ln-btn-coral:hover { background: var(--so-navy); }
.ln-footer { background: var(--so-navy-deep); }
.ln-footer-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; padding: 44px 24px; font-size: var(--text-xs); color: rgba(255, 255, 255, 0.6); }
.ln-footer-logo { font-size: 22px; }
.ln-footer-family .so-logo { font-size: 14px; margin: 0 4px; }
.ln-footer-legal { flex-basis: 100%; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .ln-features { grid-template-columns: repeat(2, 1fr); }
  .ln-feature:nth-child(2) { border-right: 0; margin-right: 0; }
  .ln-feature:nth-child(n+3) { border-top: 1px solid var(--so-line); }
  .ln-split-row { gap: 56px; }
}
@media (max-width: 900px) {
  .ln-header-row { min-height: 88px; }
  .ln-logo { font-size: 26px; }
  .ln-nav { gap: 18px; }
  .ln-nav a:not(.ln-nav-cta) { display: none; }
  .ln-hero { flex-direction: column; min-height: 0; align-items: stretch; }
  .ln-hero-img { position: relative; inset: auto; width: 100%; aspect-ratio: 4 / 4.2; }
  .ln-hero-img::after { background: linear-gradient(0deg, var(--so-navy-deep) 0%, rgba(34, 46, 59, 0) 45%); }
  .ln-hero-copy { padding: 0 0 64px; margin-top: -90px; }
  .ln-section { padding: 84px 0; }
  .ln-split-row { grid-template-columns: 1fr; }
  .ln-split-img { max-width: 420px; }
  .ln-prices { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ln-wrap { padding: 0 18px; }
  .ln-features { grid-template-columns: 1fr; }
  .ln-feature { border-right: 0; margin-right: 0; border-top: 1px solid var(--so-line); }
  .ln-feature:first-child { border-top: 0; }
  .ln-h2 { margin-bottom: 36px; }
  .ln-price { padding: 34px 24px 28px; }
  .ln-hero-actions .ln-btn { width: 100%; }
}

/* ── Thank-you page ─────────────────────────────────────────────────── */
.ln-thanks { max-width: 720px; text-align: left; }
.ln-thanks-face { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--so-white); margin-bottom: 28px; }
.ln-thanks h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.05; }
.ln-codebox { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 8px 0 12px; padding: 22px 24px; background: var(--so-navy-deep); border-radius: var(--radius-lg); border-left: 3px solid var(--so-coral); }
.ln-codebox code { font-family: var(--font-logo); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.2rem); letter-spacing: 0.06em; flex: 1; }
.ln-thanks .ln-hero-actions { margin-top: 34px; }

/* ── Process page ───────────────────────────────────────────────────── */
.ln-after-steps { margin-top: 30px; }
.ln-pg-hero { background: var(--so-navy-deep); padding: 96px 0 72px; }
.ln-pg-hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.03; letter-spacing: -0.025em; }
.ln-pg-hero h1::after { content: ''; display: block; width: 64px; height: 3px; background: var(--so-coral); margin: 30px 0 0; }
.ln-pg-hero .ln-lede { max-width: 640px; }
.ln-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.ln-jump a { text-decoration: none; font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 14px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: var(--radius-full); color: rgba(255, 255, 255, 0.86); }
.ln-jump a:hover { border-color: var(--so-coral); color: var(--so-white); }
.ln-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ln-h3 { font-size: var(--text-2xl); letter-spacing: -0.01em; margin: 0 0 10px; }
.ln-mt { margin-top: 40px; }
.ln-muted { color: var(--so-muted); line-height: 1.6; margin: 0 0 18px; }
.ln-list { list-style: none; margin: 0; padding: 0; }
.ln-list li { position: relative; padding: 14px 0 14px 26px; border-top: 1px solid var(--so-line); line-height: 1.55; }
.ln-list li::before { content: ''; position: absolute; left: 2px; top: 25px; width: 10px; height: 2px; background: var(--so-coral); }
.ln-list strong { font-weight: var(--fw-semibold); }
.ln-list-dark li { border-top-color: rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.84); }
.ln-list-dark strong { color: var(--so-white); }
.ln-req { display: inline-block; margin-left: 6px; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--so-coral); font-weight: var(--fw-semibold); }
.ln-note { margin-top: 22px; padding: 18px 20px; background: var(--so-white); border-left: 3px solid var(--so-coral); border-radius: var(--radius-sm); }
.ln-note strong { font-weight: var(--fw-semibold); }
.ln-note p { margin: 6px 0 0; color: var(--so-muted); line-height: 1.6; font-size: var(--text-sm); }
.ln-steps em { font-style: normal; color: var(--so-white); font-weight: var(--fw-medium); }
.ln-facts { background: var(--so-navy-deep); border-radius: var(--radius-lg); padding: 34px 32px; align-self: start; }
.ln-facts dl { margin: 18px 0 0; display: grid; grid-template-columns: 120px 1fr; gap: 0; }
.ln-facts dt, .ln-facts dd { padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); margin: 0; }
.ln-facts dt { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--so-coral); padding-top: 17px; }
.ln-facts dd { color: rgba(255, 255, 255, 0.84); line-height: 1.5; }
.ln-deliver { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
.ln-deliver article { border-top: 1px solid var(--so-line); padding: 30px 0 34px; }
.ln-deliver h3 { font-size: var(--text-xl); letter-spacing: -0.01em; margin-bottom: 10px; }
.ln-deliver p { margin: 0; color: var(--so-muted); line-height: 1.6; }
.ln-dark { color: var(--so-muted) !important; }
.ln-btn-on-coral { border-color: rgba(255, 255, 255, 0.6); }
#session .ln-split-row { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
@media (max-width: 900px) {
  .ln-cols, #session .ln-split-row { grid-template-columns: 1fr; gap: 40px; }
  .ln-deliver { grid-template-columns: 1fr 1fr; }
  .ln-pg-hero { padding: 64px 0 56px; }
}
@media (max-width: 560px) {
  .ln-deliver { grid-template-columns: 1fr; }
  .ln-facts dl { grid-template-columns: 1fr; }
  .ln-facts dd { border-top: 0; padding-top: 0; }
}
