/* ================================
   LANDING PAGE — paper-editorial system
   Letter-first composition, dark act breaks, full-width Torii band.
   Replaces the three-act landing. Scoped to body.landing-page.
   ================================ */

/* Spectral + Inter for the editorial paper system. */
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap");

/* ========== TOKENS ========== */
body.landing-page {
  --paper:        #FAF8F4;
  --ink:          #1B1814;
  --ink-2:        rgba(27, 24, 20, 0.78);
  --ink-3:        rgba(27, 24, 20, 0.58);
  --rule:         rgba(27, 24, 20, 0.14);
  --rule-strong:  rgba(27, 24, 20, 0.32);
  --accent:       #B8462E;
  --accent-soft:  rgba(184, 70, 46, 0.10);

  --landing-serif: "Spectral", "Iowan Old Style", "Charter", Georgia, serif;
  --landing-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --landing-container: 1200px;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--landing-serif);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* Override the global fixed paper texture so the landing reads as one
   continuous sheet that scrolls with the content. Layout's body::before
   is position:fixed by default and z-index:15. Raising z-index above
   the nav (z:50) lets the multiply blend mode tint the nav too,
   matching the rest of the page. */
body.landing-page::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  z-index: 100 !important;
}

body.landing-page .landing * ,
body.landing-page .landing *::before,
body.landing-page .landing *::after {
  box-sizing: border-box;
}

/* `:where()` keeps these resets at zero specificity so explicit
   button color rules (.nav-cta, .letter-cta, .torii-cta, .final-cta)
   continue to win against `body.landing-page .landing a` overrides. */
:where(body.landing-page .landing a) { color: inherit; text-decoration: none; }
:where(body.landing-page .landing em) { font-style: italic; }
:where(body.landing-page .landing img) { max-width: 100%; display: block; }
body.landing-page .landing ::selection { background: var(--accent); color: var(--paper); }

/* ========== LAYOUT ========== */
.landing .wrap {
  width: 100%;
  max-width: var(--landing-container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}
.landing .wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 32px);
}
.landing section { position: relative; }

/* ========== NAV ========== */
.landing .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* Inverted state — applied via Stimulus when the nav crosses a .nav-dark-section. */
.landing .nav.nav--inverted {
  background: rgba(27, 24, 20, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.landing .nav.nav--inverted .brand,
.landing .nav.nav--inverted .brand-mark,
.landing .nav.nav--inverted .nav-links,
.landing .nav.nav--inverted .nav-links a:not(.nav-cta) {
  color: var(--paper);
}
.landing .nav.nav--inverted .nav-links a.nav-cta {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.landing .nav.nav--inverted .nav-links a.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.landing .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 56px);
}
.landing .brand {
  font-family: var(--landing-serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.landing .brand-mark {
  display: inline-block;
  width: 32px;
  height: auto;
  color: var(--ink);
  transition: color 0.15s ease;
}
.landing .brand:hover .brand-mark { color: var(--accent); }
.landing .nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  font-family: var(--landing-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.landing .nav-links a:hover { color: var(--ink); }
.landing .nav-cta {
  font-family: var(--landing-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.landing .nav-cta:hover { background: var(--accent); border-color: var(--accent); }
.landing .nav-link { display: inline; }

@media (max-width: 760px) {
  .landing .nav-link { display: none; }
  .landing .nav-links { gap: 0; }
  .landing .brand { font-size: 24px; gap: 10px; }
  .landing .brand-mark { width: 26px; }
  .landing .nav-cta { padding: 9px 14px; font-size: 12px; letter-spacing: 0.1em; }
}

/* ========== SMALL-CAPS LABEL ========== */
.landing .label {
  font-family: var(--landing-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ========== LETTER ========== */
.landing .letter {
  padding: clamp(64px, 8vh, 96px) 0;
}
.landing .letter-top {
  padding-top: clamp(56px, 8vh, 88px);
  padding-bottom: clamp(48px, 6vh, 72px);
}
.landing .letter-greeting {
  font-family: var(--landing-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
}
.landing .letter-h1 {
  font-family: var(--landing-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 24px;
}
.landing .letter-h1 em { color: var(--accent); font-style: italic; }
.landing .letter-lede {
  font-family: var(--landing-serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
}
.landing .letter-cta-row { margin: 16px 0 48px; }
.landing .letter-cta {
  display: inline-block;
  font-family: var(--landing-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 28px;
  transition: background 0.15s ease;
}
.landing .letter-cta:hover { background: var(--accent); }
.landing .letter-body { max-width: 60ch; }
.landing .letter-body p {
  margin-bottom: 1.4em;
  color: var(--ink-2);
}
.landing .letter-body p strong { color: var(--ink); font-weight: 600; }
.landing .letter-body p em { color: var(--ink); }
.landing .letter-body p:not(.letter-cta-row) a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
.landing .letter-body p:not(.letter-cta-row) a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.landing .letter-sign {
  margin-top: 40px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
}
.landing .letter-sign .who { font-style: italic; color: var(--ink); }
.landing .letter-sign-role { color: var(--ink-3); }

/* ========== CHAPTER BREAK (Our approach) ========== */
.landing .chapter {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 10vh, 112px) 0;
  position: relative;
  overflow: hidden;
}
.landing .chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 25% 100%;
  pointer-events: none;
}
.landing .chapter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.landing .chapter .label { color: rgba(250, 248, 244, 0.5); margin-bottom: 32px; }
.landing .chapter blockquote {
  font-family: var(--landing-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto;
}
.landing .chapter cite {
  display: block;
  margin-top: 40px;
  font-family: var(--landing-sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.55);
}
.landing .chapter-foot {
  margin-top: clamp(48px, 6vh, 64px);
  font-family: var(--landing-serif);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.72);
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.landing .chapter-foot p { margin-bottom: 1em; }
.landing .chapter-foot p:last-child { margin-bottom: 0; }

/* ========== APPROACH IN PRACTICE (uncover) ========== */
.landing .uncover { padding: clamp(48px, 6vh, 72px) 0 clamp(40px, 5vh, 56px); }
.landing .how-head {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(40px, 6vh, 64px);
}
@media (max-width: 800px) { .landing .how-head { grid-template-columns: 1fr; gap: 24px; } }
.landing .section-title {
  font-family: var(--landing-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 28ch;
}
.landing .uncover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 4vw, 64px);
  padding-top: clamp(16px, 2.5vh, 24px);
}
@media (max-width: 900px) { .landing .uncover-grid { grid-template-columns: 1fr; gap: 48px; } }
.landing .uncover-item { display: flex; flex-direction: column; }
.landing .uncover-item h3 {
  font-family: var(--landing-serif);
  font-weight: 500;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.landing .uncover-item p {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ========== CASE STUDY (Socialinsider, promoted) ========== */
.landing .case-study { padding: clamp(40px, 5vh, 64px) 0 clamp(56px, 7vh, 80px); }
.landing .case-study .how-head { margin-bottom: clamp(24px, 4vh, 40px); }

/* ========== SIDEBAR (Socialinsider story callout) ========== */
.landing .sidebar-aside {
  margin-top: clamp(48px, 7vh, 72px);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.landing .sidebar-aside--story {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .landing .sidebar-aside { grid-template-columns: 1fr; gap: 24px; }
}
.landing .sidebar-title {
  font-family: var(--landing-serif);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.landing .sidebar-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 0.9em;
}
.landing .sidebar-body p:last-child { margin-bottom: 0; }
.landing .sidebar-body strong { color: var(--ink); font-weight: 600; }
.landing .sidebar-quote {
  font-family: var(--landing-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 14px;
}
.landing .sidebar-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--landing-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ========== TEAM + LINEAGE ========== */
.landing .team { padding: clamp(56px, 7vh, 80px) 0; }
.landing .team-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 800px) { .landing .team-grid { grid-template-columns: 1fr; gap: 28px; } }
.landing .team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(40px, 5vw, 64px);
}
.landing .team-member h3 {
  font-family: var(--landing-serif);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.landing .team-member .role {
  font-family: var(--landing-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.landing .team-member p {
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
}

.landing .team-lineage {
  margin-top: clamp(56px, 7vh, 72px);
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 800px) {
  .landing .team-lineage { grid-template-columns: 1fr; gap: 20px; }
}
.landing .team-lineage .label { display: block; }
.landing .lineage-line {
  font-family: var(--landing-serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 0;
}
.landing .lineage-line em { color: var(--ink); font-style: italic; }
.landing .lineage-line a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
.landing .lineage-line a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.landing .lineage-logos {
  grid-column: 2;
  margin-top: clamp(8px, 1.5vh, 16px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 56px);
  color: var(--ink-3);
}
@media (max-width: 800px) {
  .landing .lineage-logos { grid-column: auto; }
}
.landing .logo-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink-3);
}
/* Each logo capped at a consistent visual height for the strip. */
.landing .logo-mark img { height: 28px; width: auto; }
.landing .logo-kellogg img { height: 44px; }      /* Kellogg has more vertical structure */
.landing .logo-techstars img { height: 22px; }
.landing .logo-37signals img { height: 18px; color: var(--ink); }

/* ========== HOW WE WORK (three cards) ========== */
.landing .how { padding: clamp(56px, 7vh, 80px) 0; }
.landing .how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}
@media (max-width: 900px) { .landing .how-steps { grid-template-columns: 1fr; } }
.landing .how-step {
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.35);
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing .step-word {
  display: block;
  font-family: var(--landing-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--accent);
  margin-bottom: 4px;
}
.landing .how-step h3 {
  font-family: var(--landing-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.landing .how-step p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ========== ENGAGEMENTS (three tier cards) ========== */
.landing .eng { padding: clamp(56px, 7vh, 80px) 0; }
.landing .eng-head { margin-bottom: clamp(56px, 8vh, 80px); }
.landing .eng-head .label { margin-bottom: 20px; }
.landing .eng-head h2 {
  font-family: var(--landing-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 28ch;
}
.landing .eng-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}
@media (max-width: 900px) { .landing .eng-list { grid-template-columns: 1fr; } }
.landing .eng-item {
  padding: clamp(32px, 3.5vw, 44px);
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.35);
}
.landing .eng-item .tier {
  font-family: var(--landing-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.landing .eng-item .name {
  font-family: var(--landing-serif);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  min-height: 2.3em;
  display: flex;
  align-items: flex-start;
}
.landing .eng-item .price {
  font-family: var(--landing-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.landing .eng-item .desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ========== TORII DEMO — full-width dark starry band ========== */
.landing .torii {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}
.landing .torii .star-field-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(5px 5px at 15% 12%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 42% 8%, #ffffff 0%, transparent 70%),
    radial-gradient(5px 5px at 78% 18%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 92% 35%, #ffffff 0%, transparent 70%),
    radial-gradient(5px 5px at 8% 55%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 35% 48%, #ffffff 0%, transparent 70%),
    radial-gradient(5px 5px at 68% 42%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 88% 62%, #ffffff 0%, transparent 70%),
    radial-gradient(5px 5px at 22% 78%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 55% 72%, #ffffff 0%, transparent 70%),
    radial-gradient(5px 5px at 82% 85%, #ffffff 0%, transparent 70%),
    radial-gradient(4.5px 4.5px at 48% 92%, #ffffff 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 5% 25%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 28% 32%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 52% 22%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 72% 28%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 95% 48%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 18% 42%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 38% 65%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 62% 58%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 85% 72%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 12% 88%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 45% 82%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(3.5px 3.5px at 75% 95%, rgba(255,255,255,0.88) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 3% 8%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 18% 18%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 32% 5%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 58% 15%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 85% 8%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 98% 22%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 8% 38%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 25% 52%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 48% 38%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 65% 55%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 78% 48%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 92% 58%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 15% 72%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 32% 85%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 58% 78%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 72% 88%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 88% 78%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 95% 92%, rgba(255,255,255,0.65) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 5% 95%, rgba(255,255,255,0.75) 0%, transparent 70%),
    radial-gradient(2.5px 2.5px at 42% 98%, rgba(255,255,255,0.65) 0%, transparent 70%);
}
.landing .torii > *:not(.star-field-static) {
  position: relative;
  z-index: 1;
}
.landing .torii-inner { text-align: center; }
.landing .torii-mark {
  display: block;
  width: 56px;
  height: 47px;
  margin: 0 auto 28px;
  color: var(--paper);
  opacity: 0.92;
}
.landing .torii .label {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(250, 248, 244, 0.55);
}
.landing .torii h2 {
  font-family: var(--landing-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 auto clamp(20px, 3vh, 32px);
  max-width: 22ch;
}
.landing .torii h2 em { color: var(--paper); font-style: italic; }
.landing .torii p {
  font-family: var(--landing-serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.8);
  max-width: 52ch;
  margin: 0 auto clamp(28px, 4vh, 40px);
}
.landing .torii-cta {
  display: inline-block;
  font-family: var(--landing-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 16px 32px;
  transition: background 0.15s ease, color 0.15s ease;
}
.landing .torii-cta:hover { background: var(--accent); color: var(--paper); }
.landing .torii-meta {
  display: block;
  margin-top: 18px;
  font-family: var(--landing-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.5);
  text-transform: uppercase;
}

/* ========== FINAL CTA ========== */
.landing .final {
  padding: clamp(72px, 10vh, 112px) 0 clamp(56px, 7vh, 80px);
  text-align: center;
}
.landing .final h2 {
  font-family: var(--landing-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(24px, 3.5vh, 32px);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.landing .final h2 em { color: var(--accent); font-style: italic; }
.landing .final p {
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 auto clamp(36px, 5vh, 48px);
}
.landing .final-cta {
  display: inline-block;
  font-family: var(--landing-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 18px 36px;
  transition: background 0.15s ease;
}
.landing .final-cta:hover { background: var(--accent); }
.landing .final-or {
  display: block;
  margin-top: 24px;
  font-family: var(--landing-sans);
  font-size: 14px;
  color: var(--ink-3);
}
.landing .final-or a {
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 4px;
}
.landing .final-or a:hover { color: var(--accent); text-decoration-color: var(--accent); }
