:root {
  --ink: #121724;
  --ink-soft: #31394a;
  --muted: #667083;
  --paper: #f5f1e8;
  --paper-clean: #fffdf8;
  --soft: #ece6dc;
  --line: #d9d2c7;
  --line-dark: rgba(255, 255, 255, .16);
  --coral: #ff5b45;
  --coral-dark: #d84231;
  --violet: #7a5cff;
  --mint: #66d1aa;
  --blue: #4d9fff;
  --navy: #101827;
  --navy-2: #182235;
  --green: #276a55;
  --shadow-sm: 0 12px 30px rgba(18, 23, 36, .08);
  --shadow-lg: 0 30px 80px rgba(7, 12, 24, .22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 91, 69, .06), transparent 28rem),
    var(--paper-clean);
  font-family: "Helvetica Neue", "Hiragino Sans", "Yu Gothic UI", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { color: white; background: var(--coral); }
:focus-visible { outline: 3px solid rgba(77, 159, 255, .8); outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.desktop-only { display: initial; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid rgba(18, 23, 36, .09);
  backdrop-filter: blur(18px) saturate(130%);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  background: #071a36;
  box-shadow: 0 8px 24px rgba(7, 26, 54, .22);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 1px; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; font-weight: 900; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .54rem; font-weight: 700; letter-spacing: .12em; }
.brand > span:not(.brand-mark):not(.brand-copy) { font-weight: 900; }
.nav { display: flex; align-items: center; gap: 25px; font-size: .87rem; }
.nav a { position: relative; color: #4d5669; font-weight: 750; text-decoration: none; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--coral); transition: right .2s ease; }
.nav a:not(.nav-cta):hover::after { right: 0; }
.nav a:hover { color: var(--ink); }
.nav-cta { padding: 9px 14px; color: white !important; background: var(--ink); border-radius: 10px; }
.nav-cta:hover { background: var(--coral-dark); }
.menu-button { display: none; padding: 8px 11px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 6.8rem); font-weight: 900; }
h2 { margin: 0; font-size: clamp(2.2rem, 4.6vw, 4.1rem); font-weight: 880; }
h3 { margin: 0; font-size: 1.28rem; font-weight: 850; }
.eyebrow,
.signal,
.pick-meta,
.decision-index,
.library-title small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { display: block; margin-bottom: 16px; color: var(--coral-dark); font-size: .7rem; font-weight: 900; }
.section { padding: 112px 0; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.section-heading-row > div { max-width: 780px; }
.section-heading-row > p { max-width: 390px; margin: 0 0 8px; color: var(--muted); font-size: .98rem; }
.section-heading-row.compact { margin-bottom: 34px; }
.inline-link { color: var(--ink); font-weight: 850; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.inline-link:hover { color: var(--coral-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button span { font-size: 1.08em; transition: transform .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(8, 14, 27, .14); }
.button:hover span { transform: translateX(2px); }
.button-primary { color: white; background: var(--coral); border-color: var(--coral); }
.button-primary:hover { background: #ff6a56; }
.button-ghost { color: white; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.3); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-light { color: var(--navy); background: white; border-color: white; }
.button-white { min-height: 58px; color: var(--navy); background: white; border-color: white; }
.button-secondary { color: var(--ink); background: white; border-color: var(--line); }
.button-small { min-height: 43px; margin: 4px 3px 4px 0; padding: 0 15px; border-radius: 11px; font-size: .84rem; }

/* Homepage hero */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(145deg, #0c1423 0%, #121d31 64%, #192640 100%);
  background-size: 54px 54px, 54px 54px, auto;
}
.home-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.12); }
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); }
.hero-orb-one { width: 450px; height: 450px; top: -230px; right: 8%; background: rgba(122, 92, 255, .24); }
.hero-orb-two { width: 320px; height: 320px; left: -170px; bottom: 40px; background: rgba(255, 91, 69, .18); }
.home-hero-grid { min-height: 690px; padding-top: 88px; padding-bottom: 76px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 62px; }
.home-hero-copy { position: relative; z-index: 2; }
.signal { display: inline-flex; align-items: center; gap: 9px; color: #c3ccdb; font-size: .67rem; font-weight: 850; }
.signal > span { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(102, 209, 170, .13); }
.home-hero h1 { margin: 20px 0 25px; }
.home-hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 620px; margin: 0; color: #c9d2df; font-size: clamp(1rem, 1.55vw, 1.16rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.hero-tags span { padding: 6px 10px; color: #b6c2d2; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 7px; font-size: .7rem; font-weight: 700; }

.editor-stage { position: relative; padding: 30px 12px 34px; }
.editor-window { position: relative; overflow: hidden; color: #eef3fb; background: #0b111c; border: 1px solid rgba(255,255,255,.19); border-radius: 18px; box-shadow: var(--shadow-lg); transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg); }
.editor-topbar { height: 44px; padding: 0 14px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; color: #a6b1c1; background: #131c2a; border-bottom: 1px solid rgba(255,255,255,.08); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .58rem; }
.editor-topbar strong { justify-self: end; color: #dbe4ef; letter-spacing: .04em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #ff6958; }
.window-dots i:nth-child(2) { background: #f6c353; }
.window-dots i:nth-child(3) { background: #61d1a5; }
.editor-main { min-height: 312px; display: grid; grid-template-columns: 42px 1fr 132px; }
.editor-tools { padding: 16px 0; display: grid; align-content: start; justify-items: center; gap: 13px; color: #738198; background: #0e1622; border-right: 1px solid rgba(255,255,255,.07); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .66rem; }
.editor-tools span:first-child { color: var(--coral); }
.preview-panel { display: grid; place-items: center; align-content: center; gap: 14px; padding: 22px; background: radial-gradient(circle at center, #27334a 0%, #151e2d 58%, #111825 100%); }
.phone-preview { position: relative; width: 130px; aspect-ratio: 9/16; padding: 18px 14px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; color: white; background: linear-gradient(155deg, #6d4cff 0%, #3f73ed 45%, #31b88f 100%); border: 3px solid #05090f; border-radius: 9px; box-shadow: 0 16px 36px rgba(0,0,0,.38); }
.phone-preview::before { content: ""; position: absolute; inset: 42% -30% -25%; background: var(--coral); transform: rotate(-12deg); opacity: .94; }
.phone-preview > * { position: relative; z-index: 1; }
.preview-kicker { align-self: flex-start; padding: 3px 5px; background: rgba(9,15,28,.85); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .42rem; letter-spacing: .1em; }
.phone-preview strong { margin: 12px 0; font-size: 1.35rem; line-height: 1.05; letter-spacing: -.06em; }
.phone-preview small { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .45rem; }
.preview-controls { display: flex; align-items: center; gap: 14px; color: #8190a4; font-size: .56rem; }
.play-control { display: grid; place-items: center; width: 28px; height: 28px; color: var(--navy); background: #f4f7fb; border-radius: 50%; font-size: .52rem; }
.editor-inspector { padding: 15px 13px; background: #111927; border-left: 1px solid rgba(255,255,255,.07); }
.inspector-label { color: #7c899d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .53rem; font-weight: 900; letter-spacing: .13em; }
.editor-inspector dl { margin: 12px 0 16px; }
.editor-inspector dl div { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.editor-inspector dt { color: #68778e; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .47rem; }
.editor-inspector dd { margin: 2px 0 0; color: #dbe3ee; font-size: .62rem; font-weight: 800; }
.export-ready { display: flex; align-items: center; gap: 6px; padding: 7px 8px; color: #99e7ca; background: rgba(102,209,170,.1); border: 1px solid rgba(102,209,170,.25); border-radius: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .51rem; }
.export-ready span { width: 5px; height: 5px; background: var(--mint); border-radius: 50%; }
.timeline { position: relative; padding: 11px 12px 14px 58px; background: #0d141f; border-top: 1px solid rgba(255,255,255,.08); }
.timeline-ruler { display: flex; justify-content: space-between; color: #58677c; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .43rem; }
.track { position: relative; height: 22px; margin-top: 6px; background: #111c2b; }
.track b { position: absolute; right: calc(100% + 7px); top: 7px; color: #5c6b80; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .4rem; }
.clip { position: absolute; top: 3px; bottom: 3px; left: calc(var(--start) * 1%); width: calc(var(--width) * 1%); border-radius: 3px; opacity: .9; }
.clip.coral { background: #d85349; }
.clip.violet { background: #705ce8; }
.clip.mint { background: #37a784; }
.clip.blue { background: repeating-linear-gradient(90deg, #3477bd 0 6px, #255d98 6px 9px); }
.playhead { position: absolute; top: 10px; bottom: 8px; left: 70%; width: 1px; background: #ff6855; box-shadow: 0 0 8px rgba(255,104,85,.7); }
.playhead span { position: absolute; top: -2px; left: -4px; width: 9px; height: 7px; background: #ff6855; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.stage-note { position: absolute; z-index: 2; width: 82px; height: 82px; padding: 13px; display: grid; align-content: center; color: var(--navy); background: var(--paper-clean); border-radius: 14px; box-shadow: 0 18px 40px rgba(0,0,0,.25); transform: rotate(-4deg); }
.stage-note strong { font-size: 1.35rem; line-height: 1; }
.stage-note span { margin-top: 4px; color: #697386; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .48rem; letter-spacing: .1em; }
.note-cut { left: -20px; bottom: 22px; }
.note-caption { right: -28px; top: 76px; color: white; background: var(--coral); transform: rotate(5deg); }
.note-caption span { color: rgba(255,255,255,.74); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof > div { min-height: 104px; padding: 23px 28px; display: flex; align-items: center; gap: 17px; }
.hero-proof > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.proof-icon { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; color: var(--coral); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .62rem; font-weight: 900; }
.hero-proof p { margin: 0; color: #9eaabe; font-size: .77rem; line-height: 1.5; }
.hero-proof strong { display: block; color: #eef2f8; font-size: .87rem; }

/* Homepage routing and picks */
.decision-section { background: var(--paper); }
.decision-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.decision-card { position: relative; min-height: 285px; padding: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); background: var(--paper-clean); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.decision-card:hover { transform: translateY(-4px); border-color: #b9b0a3; box-shadow: var(--shadow-sm); }
.decision-featured { min-height: 390px; grid-row: span 2; padding: 34px; color: white; background: var(--navy); border-color: var(--navy); }
.decision-dark { color: white; background: #24324b; border-color: #24324b; }
.decision-index { position: relative; z-index: 2; color: #8893a6; font-size: .6rem; font-weight: 900; }
.decision-featured .decision-index, .decision-dark .decision-index { color: #98a7bd; }
.decision-copy { position: relative; z-index: 2; max-width: 520px; }
.decision-copy small { display: block; margin-bottom: 9px; color: var(--coral-dark); font-size: .72rem; font-weight: 850; }
.decision-featured .decision-copy small, .decision-dark .decision-copy small { color: #ff9788; }
.decision-copy h3 { font-size: clamp(1.65rem, 3vw, 2.7rem); }
.decision-copy p { max-width: 460px; margin: 14px 0 15px; color: var(--muted); }
.decision-featured .decision-copy p, .decision-dark .decision-copy p { color: #c4ccda; }
.text-link { display: inline-flex; color: inherit; font-size: .87rem; font-weight: 900; text-underline-offset: 4px; }
.price-art { position: absolute; right: -20px; top: 32px; width: 220px; height: 180px; color: white; }
.price-art span { position: absolute; z-index: 2; top: 34px; left: 62px; display: grid; place-items: center; width: 80px; height: 80px; background: var(--coral); border-radius: 50%; font-size: 2.2rem; font-weight: 900; box-shadow: 0 16px 34px rgba(255,91,69,.3); }
.price-art i { position: absolute; width: 120px; height: 64px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 11px; transform: rotate(-9deg); }
.price-art i:nth-of-type(1) { top: 12px; right: 12px; }
.price-art i:nth-of-type(2) { top: 54px; right: 32px; transform: rotate(7deg); }
.price-art i:nth-of-type(3) { top: 96px; right: 4px; transform: rotate(-2deg); }
.check-art { position: absolute; right: 24px; top: 25px; display: grid; gap: 8px; transform: rotate(5deg); }
.check-art i { display: grid; place-items: center; width: 28px; height: 28px; color: var(--navy); background: var(--mint); border-radius: 8px; font-style: normal; font-weight: 900; }

.studio-picks { color: white; background: #151d2c; }
.studio-picks .eyebrow { color: #ff8d7e; }
.studio-picks .inline-link { color: #d4dbe7; }
.pick-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.pick-card { position: relative; min-height: 260px; padding: 31px; overflow: hidden; border-radius: var(--radius); }
.pick-large { min-height: 538px; grid-row: span 2; background: linear-gradient(145deg, #5b43d7, #7757f4 64%, #8c6cff); }
.pick-light { color: var(--navy); background: #f0eadf; }
.pick-coral { background: var(--coral); }
.pick-meta { display: flex; justify-content: space-between; gap: 20px; font-size: .58rem; font-weight: 850; opacity: .75; }
.pick-card h3 { position: relative; z-index: 2; max-width: 540px; margin: 48px 0 18px; font-size: clamp(1.75rem, 3.4vw, 3.2rem); }
.pick-card p { position: relative; z-index: 2; max-width: 470px; color: rgba(255,255,255,.78); }
.pick-light p { color: #646d7e; }
.pick-card .button, .pick-card .text-link { position: relative; z-index: 2; margin-top: 18px; }
.visual-bars { position: absolute; right: 28px; bottom: 30px; width: 205px; height: 140px; display: flex; align-items: end; gap: 12px; opacity: .75; }
.visual-bars i { flex: 1; background: rgba(255,255,255,.19); border: 1px solid rgba(255,255,255,.22); border-radius: 8px 8px 2px 2px; }
.visual-bars i:nth-child(1) { height: 44%; }
.visual-bars i:nth-child(2) { height: 68%; }
.visual-bars i:nth-child(3) { height: 94%; background: rgba(255,91,69,.9); }
.visual-bars b { position: absolute; bottom: -20px; color: rgba(255,255,255,.65); font: 700 .5rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.visual-bars b:nth-of-type(1) { left: 18px; }
.visual-bars b:nth-of-type(2) { left: 88px; }
.visual-bars b:nth-of-type(3) { right: 18px; }
.corner-number { position: absolute; right: 20px; bottom: -22px; color: rgba(18,23,36,.08); font-size: 7rem; font-weight: 950; letter-spacing: -.09em; }
.pick-coral .corner-number { color: rgba(255,255,255,.14); }

/* Homepage guide library */
.library-section { background: var(--paper-clean); }
.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.library-group { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(18,23,36,.04); }
.library-title { padding: 26px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.library-code { display: grid; place-items: center; flex: 0 0 auto; width: 46px; height: 46px; color: white; background: var(--coral); border-radius: 12px; font-weight: 950; }
.library-premiere .library-code { background: var(--violet); }
.library-ai .library-code { color: var(--navy); background: linear-gradient(135deg, var(--mint), #9ee9ff); font-size: .85rem; }
.library-basics .library-code { color: var(--navy); background: var(--mint); font-size: .8rem; }
.library-title small { color: var(--muted); font-size: .52rem; font-weight: 850; }
.library-title h3 { margin-top: 2px; font-size: 1.35rem; }
.library-links { display: grid; }
.library-links a { min-height: 54px; padding: 13px 19px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--ink-soft); border-bottom: 1px solid #ece7df; text-decoration: none; transition: padding .18s ease, background .18s ease; }
.library-links a:last-child { border-bottom: 0; }
.library-links a:hover { padding-left: 24px; background: #faf7f1; }
.library-links a span { font-size: .85rem; font-weight: 760; }
.library-links a i { color: var(--coral-dark); font-style: normal; }
.library-primary { min-height: 88px !important; align-items: flex-start !important; flex-direction: column; background: #faf7f1; }
.library-primary strong { font-size: 1rem; }
.library-primary i { position: absolute; align-self: end; }

.editorial-section { color: white; background: var(--navy); }
.editorial-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.editorial-copy .eyebrow { color: #ff9587; }
.editorial-copy p { max-width: 530px; margin: 27px 0; color: #b9c3d2; }
.editorial-copy .inline-link { color: white; }
.editorial-rules { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.15); }
.editorial-rules li { padding: 28px 0; display: grid; grid-template-columns: 50px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
.editorial-rules li > span { color: var(--coral); font: 900 .7rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.editorial-rules strong { font-size: 1.08rem; }
.editorial-rules p { margin: 8px 0 0; color: #aeb9c9; font-size: .9rem; }

.final-cta { position: relative; overflow: hidden; padding: 90px 0; color: white; background: var(--coral); }
.final-cta::after { content: "60"; position: absolute; right: -25px; bottom: -150px; color: rgba(255,255,255,.1); font-size: 22rem; font-weight: 950; letter-spacing: -.12em; }
.final-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { margin: 16px 0 20px; }
.final-cta p { max-width: 640px; margin: 0; color: rgba(255,255,255,.82); }
.signal-light { color: rgba(255,255,255,.78); }
.signal-light > span { background: white; box-shadow: 0 0 0 5px rgba(255,255,255,.15); }

/* Article pages */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(145deg, #101827, #1b2942);
  background-size: 52px 52px, 52px 52px, auto;
  border-bottom: 5px solid var(--coral);
}
.article-hero::after { content: ""; position: absolute; width: 240px; height: 240px; right: -70px; top: -90px; background: rgba(122,92,255,.22); border-radius: 50%; }
.article-hero .narrow { position: relative; z-index: 1; }
.article-hero .eyebrow { color: #ff9a8d; }
.article-hero h1 { max-width: 900px; font-size: clamp(2.6rem, 6vw, 5rem); }
.article-hero > .narrow > p { max-width: 720px; margin: 24px 0 0; color: #c1cad8; font-size: 1.04rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 25px; }
.article-meta span { padding: 6px 9px; color: #aeb9ca; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 7px; font-size: .71rem; }
.article { padding: 72px 0 118px; }
.article > p:first-of-type { font-size: 1.03rem; }
.article h2 { margin: 72px 0 22px; padding-top: 4px; font-size: clamp(1.75rem, 3.6vw, 2.55rem); }
.article h2::before { content: ""; display: block; width: 38px; height: 4px; margin-bottom: 15px; background: var(--coral); border-radius: 3px; }
.article h3 { margin: 42px 0 13px; font-size: 1.3rem; letter-spacing: -.025em; }
.article p, .article li { color: #41495a; }
.article ul, .article ol { padding-left: 1.35em; }
.article a:not(.button) { text-underline-offset: 4px; text-decoration-thickness: 1px; }
.article a:not(.button):hover { color: var(--coral-dark); }
.affiliate-note { margin: 0 0 20px; color: var(--muted) !important; font-size: .73rem; }
.article table { width: 100%; border-collapse: collapse; margin: 0; font-size: .9rem; }
.article th, .article td { padding: 15px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article th { color: var(--ink); background: #eee8de; font-size: .82rem; }
.article tbody tr:nth-child(even) td { background: rgba(245,241,232,.55); }
.callout, .verdict { position: relative; margin: 36px 0; padding: 30px; overflow: hidden; color: white; background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.callout::before, .verdict::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--coral); }
.callout h2, .callout h3, .verdict h2, .verdict h3 { margin-top: 0; color: white; }
.callout h2::before, .verdict h2::before { display: none; }
.callout p, .callout li, .verdict p, .verdict li { color: #d5dce7; }
.product-box { margin: 30px 0; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(18,23,36,.06); }
.product-box .status { display: inline-flex; margin-bottom: 12px; padding: 5px 9px; color: var(--green); background: #e6f3ed; border-radius: 7px; font-size: .7rem; font-weight: 900; }
.comparison-table-wrap { margin: 28px 0; overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 24px rgba(18,23,36,.04); }
.comparison-table-wrap table { min-width: 680px; }
.recommendation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 31px 0; }
.recommendation-card { position: relative; padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18,23,36,.05); }
.recommendation-card.featured { border: 2px solid var(--coral); transform: translateY(-5px); }
.badge { display: inline-flex; align-items: center; min-height: 27px; padding: 0 9px; color: var(--navy); background: #e9edf3; border-radius: 7px; font-size: .69rem; font-weight: 900; }
.badge-accent { color: var(--coral-dark); background: #fff0ec; }
.fit-list { list-style: none; padding: 0 !important; margin: 18px 0; }
.fit-list li { position: relative; padding: 7px 0 7px 25px; }
.fit-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.toc { margin: 32px 0; padding: 25px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.toc strong { display: block; margin-bottom: 10px; font-size: .86rem; }
.toc ol { margin: 0; }
.toc li { padding: 3px 0; }
.note, .print-help { color: var(--muted); font-size: .82rem; }
.kpi-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.kpi { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; text-align: center; }
.kpi strong { display: block; color: var(--coral-dark); font-size: 1.4rem; }
.checklist { list-style: none; padding: 0 !important; }
.checklist li { position: relative; padding: 12px 0 12px 36px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: 4px; top: 11px; display: grid; place-items: center; width: 20px; height: 20px; color: var(--navy); background: var(--mint); border-radius: 6px; font-size: .72rem; font-weight: 900; }
.source-list { font-size: .82rem; word-break: break-word; }

/* AI beginner guide: intent-based next-step router */
.intent-router { margin: 42px 0; padding: 30px; background: #f7f3eb; border: 1px solid var(--line); border-radius: var(--radius); }
.intent-router h2 { margin-top: 10px; }
.intent-router > p { color: var(--muted); }
.intent-router-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.intent-router-card { display: grid; gap: 7px; min-width: 0; padding: 20px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 15px; text-decoration: none; box-shadow: 0 9px 24px rgba(18,23,36,.05); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.intent-router-card:hover { transform: translateY(-2px); border-color: var(--coral); box-shadow: 0 14px 30px rgba(18,23,36,.09); }
.intent-router-card span { color: var(--coral-dark); font-size: .72rem; font-weight: 900; letter-spacing: .04em; }
.intent-router-card strong { font-size: 1.02rem; line-height: 1.45; }
.intent-router-card small { color: var(--muted); font-size: .78rem; line-height: 1.6; }
.intent-router-card-featured { grid-column: 1 / -1; color: white; background: var(--navy); border-color: var(--navy); }
.intent-router-card-featured span { color: #ffb29d; }
.intent-router-card-featured small { color: #cbd3df; }

@media (max-width: 640px) {
  .intent-router { margin: 32px 0; padding: 22px 16px; }
  .intent-router-grid { grid-template-columns: 1fr; }
  .intent-router-card-featured { grid-column: auto; }
  .verdict .actions .button { min-height: 44px; }
}

/* Legacy homepage classes retained for article components */
.section-soft { background: var(--paper); }
.section-dark { color: white; background: var(--navy); }
.section-lead { max-width: 720px; color: var(--muted); }
.section-dark .section-lead { color: #c4ccda; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.section-head > div { max-width: 760px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(18,23,36,.05); }
.card p { color: var(--muted); }
.card-number { display: inline-flex; margin-bottom: 18px; color: var(--coral-dark); font: 900 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.card-link { display: inline-block; margin-top: 10px; color: var(--coral-dark); font-weight: 850; text-underline-offset: 4px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.trust-item { padding: 24px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }
.steps { counter-reset: item; display: grid; gap: 15px; margin-top: 36px; }
.step { position: relative; padding: 27px 29px 27px 84px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 17px; }
.step::before { counter-increment: item; content: counter(item); position: absolute; left: 26px; top: 26px; display: grid; place-items: center; width: 38px; height: 38px; background: var(--coral); border-radius: 10px; font-weight: 900; }
.step p { margin: 4px 0 0; color: #c9d1df; }

.footer { padding: 62px 0 30px; color: white; background: #0b111c; }
.footer .brand { color: white; }
.footer .brand-copy small { color: #718097; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 50px; }
.footer-brand p, .footer p { color: #8995a7; font-size: .84rem; }
.footer h3 { margin-bottom: 16px; font-size: .83rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 9px; font-size: .84rem; }
.footer-links a { color: #b3bdcc; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 4px; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 48px; padding-top: 23px; display: flex; justify-content: space-between; gap: 20px; color: #657187; border-top: 1px solid rgba(255,255,255,.11); font: 700 .65rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }

.print-card { padding: 30px; overflow-wrap: anywhere; background: white; border: 2px solid var(--ink); border-radius: var(--radius); }
.checklist-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.checklist-actions .button { cursor: pointer; }
.write-line { width: 100%; height: 30px; margin: 4px 0 18px; border-bottom: 1px solid var(--ink); }
.print-only { display: none; }

/* Software finder */
.finder-page { background: #f8f5ee; }
.finder-hero { position: relative; overflow: hidden; padding: 92px 0 82px; color: white; background: var(--navy); }
.finder-hero::before { content: ""; position: absolute; inset: 0; opacity: .48; background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 54px 54px; }
.finder-hero::after { content: "?"; position: absolute; right: 4vw; bottom: -150px; color: rgba(255,255,255,.05); font-size: 28rem; font-weight: 950; line-height: 1; }
.finder-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.finder-hero h1 { max-width: 760px; margin: 20px 0 24px; font-size: clamp(3.4rem, 7vw, 6.4rem); }
.finder-hero h1 em { color: var(--coral); font-style: normal; }
.finder-hero p { max-width: 680px; margin: 0; color: #c4ccda; font-size: 1.04rem; }
.finder-hero-meter { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 12px; align-items: center; padding: 26px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; backdrop-filter: blur(8px); }
.finder-hero-meter span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy); background: var(--mint); border-radius: 50%; font: 900 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.finder-hero-meter i { height: 2px; background: rgba(255,255,255,.22); }
.finder-hero-meter b { grid-column: 1 / -1; margin-top: 12px; color: #98a4b6; font: 850 .64rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; text-align: right; }
.finder-article { width: min(100% - 40px, 980px); padding-top: 72px; }
.finder-intro { max-width: 760px; margin-bottom: 42px; }
.finder-intro h2 { margin: 13px 0 16px; padding: 0; }
.finder-intro h2::before { display: none; }
.finder-form { display: grid; gap: 22px; }
.finder-question { min-width: 0; margin: 0; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 35px rgba(17,24,39,.055); }
.finder-question legend { width: 100%; padding: 0 0 20px; color: var(--ink); font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em; }
.finder-question legend span { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-right: 10px; color: white; background: var(--coral); border-radius: 9px; font: 900 .68rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.finder-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.finder-choices-three { grid-template-columns: repeat(3, 1fr); }
.finder-choice { position: relative; min-width: 0; cursor: pointer; }
.finder-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.finder-choice > span { min-height: 112px; padding: 20px; display: flex; justify-content: center; flex-direction: column; color: var(--ink-soft); background: #fbfaf6; border: 1.5px solid #ded8ce; border-radius: 15px; transition: border .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease; }
.finder-choice > span::before { content: ""; width: 18px; height: 18px; margin-bottom: 13px; border: 2px solid #b7b0a6; border-radius: 50%; box-shadow: inset 0 0 0 4px #fbfaf6; }
.finder-choice strong { font-size: .94rem; }
.finder-choice small { margin-top: 6px; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.finder-choice:hover > span { transform: translateY(-2px); border-color: #aaa196; }
.finder-choice input:focus-visible + span { outline: 3px solid rgba(122,92,255,.32); outline-offset: 3px; }
.finder-choice input:checked + span { color: var(--navy); background: #fff4ef; border-color: var(--coral); box-shadow: 0 9px 24px rgba(238,102,83,.12); }
.finder-choice input:checked + span::before { background: var(--coral); border-color: var(--coral); box-shadow: inset 0 0 0 4px #fff4ef; }
.finder-submit-row { padding: 16px 0 10px; text-align: center; }
.finder-submit { min-width: min(100%, 360px); cursor: pointer; border: 0; }
.finder-submit-row p { min-height: 24px; margin: 10px 0 0; color: #b42318; font-size: .82rem; }
.finder-result { scroll-margin-top: 92px; margin: 54px 0; padding: 44px; color: white; background: var(--navy); border-radius: 25px; box-shadow: 0 26px 70px rgba(15,23,42,.22); outline: none; }
.finder-result[hidden] { display: none; }
.finder-result-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.finder-result-label { color: #ff9b8e; font: 900 .67rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .15em; }
.finder-score { display: flex; gap: 5px; }
.finder-score i { width: 29px; height: 5px; background: rgba(255,255,255,.16); border-radius: 4px; }
.finder-score i:first-child, .finder-score i:nth-child(2) { background: var(--mint); }
.finder-result-kicker { margin: 28px 0 5px; color: #aeb9c9 !important; font-size: .84rem; }
.finder-result h2 { margin: 0 0 13px; padding: 0; color: white; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.finder-result h2::before { display: none; }
.finder-result-lead { max-width: 700px; color: #dbe1ea !important; font-size: 1.05rem; }
.finder-reasons { margin: 30px 0 20px; padding: 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.finder-reasons h3 { margin: 0 0 12px; color: white; font-size: .94rem; }
.finder-reasons ul { margin: 0; padding-left: 1.25em; }
.finder-reasons li { padding: 4px 0; color: #d4dbe6; }
.finder-caution { padding: 19px 21px; color: #352f2e; background: var(--mint); border-radius: 14px; }
.finder-caution strong { font-size: .8rem; }
.finder-caution p { margin: 5px 0 0; color: #4d514f !important; font-size: .81rem; }
.finder-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.finder-result-actions .button-ghost { color: white; border-color: rgba(255,255,255,.3); }
.finder-reset { margin-top: 22px; padding: 0; color: #a9b4c5; background: transparent; border: 0; cursor: pointer; font: inherit; font-size: .78rem; text-decoration: underline; text-underline-offset: 4px; }
.finder-notes { margin-top: 74px; }

@media (max-width: 980px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 70px; }
  .home-hero-copy { max-width: 760px; }
  .editor-stage { width: min(720px, 100%); margin-inline: auto; }
  .decision-grid { grid-template-columns: 1fr 1fr; }
  .decision-featured { min-height: 390px; grid-column: span 2; grid-row: auto; }
  .pick-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pick-large { grid-column: span 2; grid-row: auto; min-height: 480px; }
  .library-grid { grid-template-columns: 1fr 1fr; }
  .library-ai, .library-basics { grid-column: span 2; }
  .editorial-grid { gap: 55px; }
  .finder-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .finder-hero-meter { max-width: 600px; }
  .finder-choices-three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 1180px); }
  .narrow { width: min(100% - 30px, 800px); }
  .desktop-only { display: none; }
  .header-inner { min-height: 68px; }
  .brand-copy small { display: none; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 68px; padding: 20px 15px 24px; align-items: stretch; flex-direction: column; gap: 4px; background: rgba(255,253,248,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav.open { display: flex; }
  .nav a { padding: 11px 12px; }
  .nav a::after { display: none; }
  .nav-cta { text-align: center; }
  .menu-button { display: block; }
  .section { padding: 78px 0; }
  .section-heading-row, .section-head, .final-cta-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading-row { margin-bottom: 32px; }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .home-hero-grid { min-height: auto; padding-top: 62px; padding-bottom: 36px; }
  .home-hero h1 { margin-top: 17px; }
  .hero-lead br { display: none; }
  .actions { display: grid; }
  .actions .button { width: 100%; }
  .editor-stage { padding: 16px 0 28px; }
  .editor-window { transform: none; border-radius: 14px; }
  .editor-main { min-height: 260px; grid-template-columns: 34px 1fr; }
  .editor-inspector { display: none; }
  .editor-topbar { grid-template-columns: auto 1fr; }
  .editor-topbar > span { text-align: right; }
  .editor-topbar strong { display: none; }
  .preview-panel { padding: 16px; }
  .phone-preview { width: 110px; }
  .timeline { padding-left: 52px; }
  .stage-note { width: 68px; height: 68px; padding: 10px; }
  .note-cut { left: -5px; bottom: 5px; }
  .note-caption { right: -3px; top: 64px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div { min-height: auto; padding: 18px 2px; }
  .hero-proof > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .decision-grid, .pick-grid, .library-grid, .editorial-grid, .grid-3, .grid-2, .footer-grid, .recommendation-grid, .kpi-strip { grid-template-columns: 1fr; }
  .decision-featured, .pick-large, .library-ai, .library-basics { grid-column: auto; }
  .decision-card, .decision-featured { min-height: 310px; }
  .price-art { right: -65px; opacity: .78; }
  .pick-large { min-height: 450px; }
  .pick-card { min-height: 300px; }
  .visual-bars { right: 22px; bottom: 33px; width: 150px; height: 110px; opacity: .42; }
  .editorial-grid { gap: 50px; }
  .final-cta { padding: 75px 0; }
  .final-cta .button { width: 100%; }
  .final-cta::after { font-size: 14rem; bottom: -95px; }
  .article-hero { padding: 72px 0 56px; }
  .article-hero h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .article { padding-top: 52px; }
  .article h2 { margin-top: 58px; }
  .comparison-table-wrap { margin-inline: -4px; }
  .recommendation-card.featured { transform: none; }
  .footer-grid { gap: 34px; }
  .copyright { align-items: flex-start; flex-direction: column; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .finder-hero { padding: 70px 0 62px; }
  .finder-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .finder-hero-meter { padding: 18px; }
  .finder-hero-meter span { width: 36px; height: 36px; }
  .finder-article { width: min(100% - 30px, 980px); }
  .finder-choices { grid-template-columns: 1fr; }
  .finder-question { padding: 23px 18px; }
  .finder-choice > span { min-height: 104px; }
  .finder-result { padding: 30px 22px; }
  .finder-result-actions { display: grid; }
  .finder-result-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header, .footer, .no-print, .article-hero { display: none !important; }
  .print-only { display: block; }
  body { background: white; }
  .article { padding: 0; }
  .print-card { padding: 0; border: 0; box-shadow: none; }
}

/* First client delivery kit */
.kit-page { background: #fbf8f1; }
.kit-hero { position: relative; overflow: hidden; padding: 78px 0 86px; color: white; background: #17243b; }
.kit-hero::before { content: ""; position: absolute; inset: 0; opacity: .32; background: radial-gradient(circle at 74% 18%, rgba(224,90,71,.45), transparent 27%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 56px 56px, 56px 56px; }
.kit-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.kit-hero-copy h1 { max-width: 640px; margin: 22px 0 24px; font-size: clamp(3.2rem, 6.6vw, 6.2rem); line-height: .98; }
.kit-hero-copy h1 em { color: #ff7b68; font-style: normal; }
.kit-hero-copy > p { max-width: 620px; margin: 0; color: #c8d2e0; font-size: 1.03rem; }
.kit-cover { margin: 0; transform: rotate(1.4deg); }
.kit-cover img { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: contain; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; box-shadow: 0 34px 90px rgba(0,0,0,.38); }
.kit-cover figcaption { margin-top: 13px; color: #8f9db1; font: 800 .66rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-align: right; }
.kit-price-row { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; margin: 30px 0 27px; padding: 18px 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; }
.kit-price-row > div { display: grid; grid-template-columns: auto auto; column-gap: 11px; align-items: end; }
.kit-price-row > div > small { grid-column: 1 / -1; color: #ff9d90; font-weight: 850; }
.kit-price-row strong { font-size: 2.3rem; line-height: 1; }
.kit-price-row strong small { font-size: .8rem; }
.kit-price-row span { color: #8fa0b5; font-size: .76rem; text-decoration: line-through; }
.kit-price-row p { margin: 0; color: #aab7c8; font-size: .73rem; line-height: 1.65; }
.kit-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kit-pain-grid article { min-height: 255px; padding: 30px; color: white; background: var(--navy); border-radius: 22px; box-shadow: 0 18px 45px rgba(27,38,58,.12); }
.kit-pain-grid article:nth-child(2) { color: var(--ink); background: var(--mint); }
.kit-pain-grid article:nth-child(3) { color: var(--ink); background: #ffd7cf; }
.kit-pain-grid article > span { display: inline-flex; color: #ff9b8d; font: 900 .7rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.kit-pain-grid article:nth-child(n+2) > span { color: var(--coral-dark); }
.kit-pain-grid h3 { margin: 60px 0 12px; font-size: 1.4rem; }
.kit-pain-grid p { margin: 0; color: #cbd4df; }
.kit-pain-grid article:nth-child(n+2) p { color: var(--muted); }
.kit-contents { color: white; background: #101827; }
.kit-contents .eyebrow { color: #ff8f80; }
.kit-contents .section-heading-row > p { color: #9ba8ba; }
.kit-bundle-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: auto auto; gap: 18px; }
.kit-bundle-grid article { min-height: 260px; padding: 30px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 21px; }
.kit-bundle-grid article:nth-child(3) { color: var(--ink); background: var(--cream); }
.kit-bundle-grid article:nth-child(4) { color: var(--ink); background: #dfe9f8; }
.kit-bundle-feature { grid-row: span 2; }
.kit-bundle-grid h3 { margin: 52px 0 12px; font-size: 1.5rem; }
.kit-bundle-feature h3 { margin-top: 88px; font-size: 2.15rem; }
.kit-bundle-grid p, .kit-bundle-grid li { color: #b7c2d1; }
.kit-bundle-grid article:nth-child(n+3) p { color: var(--muted); }
.kit-bundle-grid ul { padding-left: 1.2em; }
.kit-code { color: #ff8f80; font: 900 .66rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.kit-sample { background: var(--cream); }
.kit-sample-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.kit-sample-grid h2 { margin: 15px 0 19px; }
.kit-sample-grid p { max-width: 650px; color: var(--muted); }
.kit-sample-list { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 35px rgba(17,24,39,.055); }
.kit-sample-list strong { display: block; margin-bottom: 16px; }
.kit-sample-list ol { margin: 0; padding-left: 1.3em; }
.kit-sample-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.kit-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kit-fit-grid article { padding: 32px; background: white; border: 1px solid var(--line); border-radius: 21px; }
.kit-fit-grid ul { list-style: none; margin: 22px 0 0; padding: 0; }
.kit-fit-grid li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); }
.kit-fit-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.kit-fit-grid article:last-child li::before { content: "—"; color: var(--coral); }
.fit-label { display: inline-flex; padding: 7px 10px; color: #23604d; background: var(--mint); border-radius: 8px; font-size: .72rem; font-weight: 900; }
.fit-label.no { color: #8c352a; background: #f8dad4; }
.kit-buy { color: white; background: #152039; }
.kit-buy-card { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; padding: 48px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 26px; }
.kit-buy-card h2 { margin: 14px 0 16px; }
.kit-buy-card p { max-width: 670px; color: #aeb9c9; }
.kit-price-card { min-width: 280px; padding: 30px; color: var(--ink); background: var(--cream); border-radius: 20px; text-align: center; }
.kit-price-card small, .kit-price-card span { display: block; color: var(--muted); }
.kit-price-card strong { display: block; margin: 8px 0 2px; color: var(--navy); font-size: 2.5rem; }
.kit-price-card span { text-decoration: line-through; }
.kit-wait { display: block; margin-top: 18px; padding: 12px; color: white; background: var(--coral); border-radius: 10px; font-weight: 900; text-decoration: none; }
.kit-wait-disabled { color: #6d7788; background: #e3e6eb; }
.kit-faq { background: white; }
.kit-faq details { margin-top: 12px; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.kit-faq summary { cursor: pointer; font-weight: 900; }
.kit-faq details p { margin: 13px 0 0; color: var(--muted); }
.kit-home-promo { overflow: hidden; color: white; background: #1a2842; }
.kit-home-promo .eyebrow { color: #ff8f80; }
.kit-home-promo-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.kit-home-promo-copy h2 { margin: 15px 0 18px; }
.kit-home-promo-copy p { margin: 0; color: #b5c0d0; }
.kit-home-cover { display: block; width: 100%; overflow: hidden; aspect-ratio: 1672 / 941; background: #0f192b; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; box-shadow: 0 24px 65px rgba(0,0,0,.24); }
.kit-home-cover img { display: block; width: 100%; height: 100%; object-fit: contain; }
.kit-home-heading { max-width: 790px; margin-bottom: 38px; }
.kit-home-heading h2 { margin: 15px 0 18px; }
.kit-home-heading p { margin: 0; color: #b5c0d0; }
.kit-home-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.kit-home-product-card { overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; box-shadow: 0 25px 65px rgba(0,0,0,.2); }
.kit-home-product-card-featured { background: linear-gradient(145deg, rgba(255,112,94,.18), rgba(255,255,255,.07) 52%); border-color: rgba(255,143,128,.42); }
.kit-home-product-cover { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #0f192b; }
.kit-home-product-cover img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.kit-home-product-cover:hover img { transform: scale(1.025); }
.kit-home-product-copy { padding: 28px; }
.kit-home-stage { display: inline-flex; margin-bottom: 13px; padding: 6px 9px; color: #ffd0c9; background: rgba(255,112,94,.14); border: 1px solid rgba(255,143,128,.24); border-radius: 7px; font-size: .67rem; font-weight: 900; letter-spacing: .05em; }
.kit-home-status { display: inline-flex; margin: 0 0 13px 7px; padding: 6px 9px; border-radius: 7px; font-size: .67rem; font-weight: 900; }
.kit-home-status-live { color: #bdf3db; background: rgba(68,188,134,.14); border: 1px solid rgba(91,214,159,.28); }
.kit-home-status-review { color: #ffe1ab; background: rgba(232,171,58,.14); border: 1px solid rgba(244,192,91,.28); }
.kit-home-product-copy h3 { margin: 0 0 12px; color: white; font-size: 1.55rem; }
.kit-home-product-copy p { min-height: 5.1em; margin: 0; color: #b5c0d0; font-size: .91rem; }
.kit-home-price { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin: 22px 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.kit-home-price strong { color: white; font-size: 1.65rem; }
.kit-home-price span { color: #91a1b7; font-size: .72rem; }
.kit-home-product-card .actions { gap: 10px; }
.kit-home-product-card .button { padding: 11px 15px; }
.kit-home-product-card .button-secondary { color: white; border-color: rgba(255,255,255,.34); background: transparent; }

@media (max-width: 980px) {
  .kit-hero-grid, .kit-sample-grid, .kit-home-promo-grid, .kit-home-product-grid { grid-template-columns: 1fr; }
  .kit-home-product-copy p { min-height: 0; }
  .kit-cover { max-width: 820px; transform: none; }
  .kit-bundle-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .kit-bundle-feature { grid-column: span 2; grid-row: auto; }
  .kit-buy-card { grid-template-columns: 1fr; gap: 32px; }
  .kit-price-card { min-width: 0; }
}

@media (max-width: 760px) {
  .kit-hero { padding: 62px 0 70px; }
  .kit-hero-copy h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .kit-cover { width: 100%; max-width: none; }
  .kit-cover img { width: 100%; height: auto !important; max-height: none; aspect-ratio: 1672 / 941; object-fit: contain; border-radius: 12px; }
  .kit-home-promo-grid { gap: 28px; }
  .kit-home-cover { width: 100%; max-width: none; aspect-ratio: 1672 / 941; border-radius: 12px; }
  .kit-home-cover img { width: 100%; height: 100%; object-fit: contain; }
  .kit-price-row { grid-template-columns: 1fr; }
  .kit-pain-grid, .kit-bundle-grid, .kit-fit-grid { grid-template-columns: 1fr; }
  .kit-bundle-feature { grid-column: auto; }
  .kit-bundle-grid article, .kit-pain-grid article { min-height: 230px; }
  .kit-bundle-feature h3 { margin-top: 52px; font-size: 1.75rem; }
  .kit-buy-card { padding: 30px 22px; }
}
