/* FitMySetup visual system — no framework or external font dependency. */
:root {
  --ink: #0a0b0d;
  --ink-2: #111316;
  --ink-3: #191c20;
  --paper: #f3f1e9;
  --paper-2: #e8e5dc;
  --white: #fbfaf6;
  --muted: #a6a7a2;
  --line: rgba(255,255,255,.11);
  --dark-line: rgba(10,11,13,.13);
  --accent: #b7f75a;
  --accent-2: #d9ff9e;
  --blue: #9cb4ff;
  --radius: 22px;
  --radius-sm: 13px;
  --shadow: 0 30px 80px rgba(0,0,0,.25);
  --shell: 1200px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--font); font-size: 16px; -webkit-font-smoothing: antialiased; }
body.light-page { background: var(--paper); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
::selection { background: var(--accent); color: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: var(--accent); color: var(--ink); padding: 12px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

/* Header */
.site-header { height: 78px; position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.site-header.scrolled { background: rgba(10,11,13,.86); border-color: var(--line); backdrop-filter: blur(18px); }
.light-page .site-header { color: var(--white); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; font-weight: 760; letter-spacing: -.035em; white-space: nowrap; }
.brand-mark { width: 23px; height: 23px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; transform: skew(-7deg); }
.brand-mark i { background: var(--accent); border-radius: 1px; }
.brand-mark i:nth-child(1) { height: 55%; align-self: end; }
.brand-mark i:nth-child(2) { height: 78%; align-self: end; }
.brand-mark i:nth-child(3) { height: 100%; }
.primary-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; }
.primary-nav a { color: #c7c8c5; font-size: 13px; font-weight: 620; transition: color .2s; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.nav-cta { margin-left: 4px; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s; }

/* Buttons and typography */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 0 23px; background: var(--accent); border: 1px solid var(--accent); border-radius: 9px; color: #0a0b0d; font-size: 13px; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 12px 34px rgba(183,247,90,.15); }
.button-small { min-height: 42px; padding-inline: 17px; gap: 13px; font-size: 12px; }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--dark-line); }
.button-secondary:hover { background: rgba(10,11,13,.05); box-shadow: none; }
.button-light { background: var(--paper); border-color: var(--paper); }
.button-ghost-dark { color: var(--white); background: transparent; border-color: var(--line); }
.button-ghost-dark:hover { background: rgba(255,255,255,.06); box-shadow: none; }
.button:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.text-link { display: inline-flex; gap: 11px; align-items: center; color: #dadbd7; font-size: 13px; font-weight: 700; border-bottom: 1px solid #666964; padding-bottom: 5px; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #656862; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--accent); }
.section { padding: 118px 0; }
.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading h2, .process-intro h2, .final-cta h2 { font-size: clamp(40px, 5vw, 68px); line-height: .99; letter-spacing: -.06em; font-weight: 610; }
.section-heading h2 em, .hero h1 em { color: var(--accent); font-style: normal; }
.section-heading > p:last-child { color: #62645f; line-height: 1.7; }
.split-heading { display: grid; max-width: none; grid-template-columns: 1.6fr .75fr; gap: 100px; align-items: end; }
.split-heading > div h2 { margin: 0; }
.split-heading > p { padding-bottom: 3px; }

/* Hero */
.hero { min-height: 770px; padding: 158px 0 82px; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 40%, #19201e 0, #0a0b0d 48%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .26; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(to right, transparent 20%, black 80%); }
.ambient { position: absolute; border: 1px solid rgba(183,247,90,.12); border-radius: 50%; pointer-events: none; }
.ambient-one { width: 620px; height: 620px; right: -210px; top: 40px; }
.ambient-two { width: 360px; height: 360px; right: -80px; top: 170px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; position: relative; }
.hero-copy { padding-top: 12px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { max-width: 670px; margin-bottom: 26px; font-size: clamp(49px, 6vw, 81px); line-height: .96; letter-spacing: -.067em; font-weight: 600; }
.hero-lede { max-width: 620px; color: #b7b8b4; font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-reassurance { margin: 13px 0 0; color: #858782; font-size: 11px; letter-spacing: .01em; }
.hero-reassurance span { color: var(--accent); padding-inline: 5px; }
.hero-proof { margin-top: 54px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #747671; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 750; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: #494b47; }
.hero-proof b { color: var(--accent); margin: 0 4px; }
.hero-proof strong { color: #c2c4be; font-weight: 700; }

.setup-preview { min-height: 516px; background: linear-gradient(145deg, rgba(34,38,38,.96), rgba(17,19,21,.98)); border: 1px solid rgba(255,255,255,.13); border-radius: 21px; box-shadow: var(--shadow); overflow: hidden; transform: perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.preview-topline { height: 52px; border-bottom: 1px solid var(--line); padding: 0 19px; display: flex; align-items: center; justify-content: space-between; color: #777a75; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.preview-display { height: 215px; position: relative; background: radial-gradient(circle at 50% 40%, rgba(156,180,255,.16), transparent 57%), linear-gradient(180deg, #1c2224, #121517); border-bottom: 1px solid var(--line); overflow: hidden; }
.preview-display::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 24px 24px; }
.monitor { position: absolute; width: 235px; left: 50%; top: 24px; transform: translateX(-50%); }
.monitor-screen { height: 122px; border: 5px solid #111315; border-radius: 8px; background: linear-gradient(145deg, #4c5b6a, #252c30 55%, #9cc86a); box-shadow: 0 10px 25px rgba(0,0,0,.5); display: flex; flex-direction: column; justify-content: center; padding-left: 22px; position: relative; }
.monitor-screen::after { content: ""; position: absolute; width: 90px; height: 160px; background: rgba(255,255,255,.06); transform: rotate(35deg); left: 80px; top: -42px; }
.monitor-screen span { font-size: 31px; line-height: 1; font-weight: 250; letter-spacing: -.06em; }
.monitor-screen small { font-size: 7px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); }
.monitor-screen b { position: absolute; right: 9px; bottom: 9px; font-size: 7px; letter-spacing: .12em; color: var(--accent); }
.monitor-neck { width: 10px; height: 31px; margin: auto; background: #25292a; }
.monitor-foot { width: 65px; height: 5px; margin: auto; background: #2d3132; border-radius: 10px 10px 2px 2px; }
.desk-line { position: absolute; width: 83%; height: 7px; background: #2e3030; bottom: 29px; left: 8.5%; box-shadow: 0 9px 18px rgba(0,0,0,.5); }
.keyboard-shape { position: absolute; width: 104px; height: 13px; border-radius: 3px; background: #343837; left: 26%; bottom: 43px; transform: perspective(30px) rotateX(25deg); }
.mouse-shape { position: absolute; width: 13px; height: 18px; border-radius: 9px; background: #3c403f; right: 24%; bottom: 41px; }
.tower-shape { position: absolute; right: 8%; bottom: 36px; width: 40px; height: 105px; border-radius: 5px; background: #171a1b; border: 2px solid #373b3b; }
.tower-shape i { display: block; width: 24px; height: 24px; border: 1px solid rgba(183,247,90,.35); border-radius: 50%; margin: 9px auto; box-shadow: inset 0 0 9px rgba(183,247,90,.1); }
.preview-summary { display: flex; justify-content: space-between; align-items: center; padding: 21px 21px 16px; }
.preview-summary span { color: #7f817c; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.preview-summary h2 { margin: 5px 0 0; font-size: 18px; letter-spacing: -.035em; }
.preview-summary .fit-score { color: var(--accent); border: 1px solid rgba(183,247,90,.3); background: rgba(183,247,90,.06); padding: 7px 9px; border-radius: 99px; letter-spacing: .05em; }
.allocation-mini { display: grid; gap: 8px; padding: 0 21px 18px; }
.allocation-mini > span { display: grid; grid-template-columns: 54px 1fr 27px; align-items: center; gap: 9px; color: #92948f; font-size: 8px; }
.allocation-mini b { font-weight: 600; }
.allocation-mini i { height: 3px; background: rgba(255,255,255,.08); position: relative; }
.allocation-mini i::before { content: ""; position: absolute; width: var(--w); height: 100%; background: var(--accent); }
.allocation-mini small { text-align: right; }
.preview-footer { border-top: 1px solid var(--line); padding: 12px 21px; display: flex; justify-content: space-between; color: #666964; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }

.trust-strip { background: #101215; border-block: 1px solid var(--line); }
.trust-grid { min-height: 102px; display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); align-items: center; }
.trust-grid > p { margin: 0; color: #777974; font-size: 12px; }
.trust-grid > p strong { color: #d5d6d1; }
.trust-grid > div { height: 100%; border-left: 1px solid var(--line); display: flex; align-items: center; gap: 13px; padding-left: 27px; }
.trust-grid > div > span { color: var(--accent); font-family: ui-monospace, monospace; font-size: 9px; }
.trust-grid div p { margin: 0; display: grid; gap: 5px; }
.trust-grid div strong { font-size: 11px; }
.trust-grid div small { color: #686a66; font-size: 9px; }

/* Homepage content */
.value-section, .setup-types-section, .final-cta-section { background: var(--paper); color: var(--ink); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); }
.value-card { min-height: 335px; padding: 30px 38px 34px 0; border-right: 1px solid var(--dark-line); position: relative; }
.value-card + .value-card { padding-left: 38px; }
.value-card:last-child { border-right: 0; }
.card-number { display: block; color: #8b8c85; font: 10px ui-monospace, monospace; }
.value-icon { margin: 48px 0 35px; width: 46px; height: 46px; border: 1px solid #bbbdb5; border-radius: 50%; display: grid; place-items: center; font-size: 18px; }
.value-icon-grid { grid-template-columns: repeat(2, 7px); grid-template-rows: repeat(2, 7px); gap: 3px; }
.value-icon-grid i { background: var(--ink); }
.value-card h3 { font-size: 19px; letter-spacing: -.03em; }
.value-card p { color: #62645f; font-size: 13px; line-height: 1.75; max-width: 310px; }
.setup-types-section { padding-top: 35px; }
.setup-types-section .section-heading { text-align: center; margin-inline: auto; }
.setup-types-section .section-heading .eyebrow { justify-content: center; }
.setup-types-section .section-heading h2 { margin-bottom: 16px; }
.setup-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.setup-type-card { min-height: 290px; border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; background: #e7e4da; border: 1px solid rgba(10,11,13,.07); transition: transform .25s, box-shadow .25s; }
.setup-type-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(22,24,22,.12); }
.setup-card-featured { background: var(--ink-2); color: var(--white); }
.setup-art { position: relative; overflow: hidden; min-height: 290px; background: radial-gradient(circle at 50% 40%, #3a4241, #171a1c 65%); }
.setup-art::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 24px 24px; }
.setup-card-copy { padding: 32px 30px 30px; display: flex; flex-direction: column; position: relative; z-index: 1; }
.setup-card-copy > span { color: #858780; font: 8px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .14em; }
.setup-card-copy h3 { margin: auto 0 10px; font-size: 26px; letter-spacing: -.05em; }
.setup-card-copy p { color: #676963; font-size: 12px; line-height: 1.7; }
.setup-card-featured .setup-card-copy p { color: #9ea09a; }
.setup-card-copy b { margin-top: 19px; padding-top: 15px; border-top: 1px solid currentColor; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; display: flex; justify-content: space-between; }
.setup-card-copy b i { color: var(--accent); font-style: normal; }

.gaming-art .art-screen, .dual-art span, .creator-art span, .office-art span, .premium-art span { position: absolute; z-index: 2; border: 5px solid #111315; border-radius: 7px; background: linear-gradient(145deg, #38444e, #1e2427 55%, #739b4d); box-shadow: 0 13px 30px rgba(0,0,0,.4); }
.gaming-art .art-screen { width: 66%; height: 42%; top: 23%; left: 10%; }
.gaming-art .art-desk, .office-art b, .premium-art b { position: absolute; z-index: 2; width: 86%; height: 7px; background: #343838; left: 7%; bottom: 24%; }
.gaming-art .art-tower { position: absolute; z-index: 2; width: 18%; height: 42%; border: 3px solid #3a3e3e; border-radius: 5px; right: 6%; bottom: 27%; background: #17191a; }
.gaming-art .art-chair { position: absolute; z-index: 1; width: 23%; height: 32%; border-radius: 45% 45% 15% 15%; background: #292d2c; left: 24%; bottom: -8%; }
.dual-art { background: radial-gradient(circle, #515b63, #1d2225 70%); }
.dual-art span { width: 45%; height: 37%; top: 25%; }
.dual-art span:first-child { left: 5%; transform: rotate(-3deg); }
.dual-art span:nth-child(2) { right: 5%; transform: rotate(3deg); }
.dual-art i, .stream-art i, .creator-art i { position: absolute; z-index: 2; left: 8%; right: 8%; bottom: 25%; height: 7px; background: #383d3d; }
.stream-art { background: radial-gradient(circle at 40% 43%, #645f63, #201e22 68%); }
.stream-art span { position: absolute; z-index: 2; left: 25%; top: 19%; width: 50%; height: 45%; border: 5px solid #181619; border-radius: 8px; background: linear-gradient(145deg, #765268, #1e2028); }
.stream-art b { position: absolute; z-index: 3; width: 22px; height: 22px; border-radius: 50%; background: #222; border: 2px solid #555; top: 25%; left: 10%; box-shadow: 0 0 0 10px rgba(255,255,255,.04), 0 0 25px rgba(255,200,210,.25); }
.creator-art { background: radial-gradient(circle at 50% 40%, #5f635d, #242723 70%); }
.creator-art span { width: 65%; height: 41%; left: 13%; top: 22%; background: linear-gradient(135deg, #968064, #343a3b 55%, #577663); }
.creator-art b { position: absolute; z-index: 3; right: 8%; top: 13%; width: 22px; height: 65px; border-radius: 14px; border: 2px solid #555; }
.office-art, .premium-art { background: radial-gradient(circle at 45% 45%, #585c58, #202321 70%); }
.office-art span { width: 68%; height: 38%; left: 13%; top: 20%; background: linear-gradient(145deg, #6f827f, #293132); }
.office-art i, .premium-art i { position: absolute; z-index: 2; width: 9px; height: 26%; background: #343838; left: 44%; top: 57%; }
.premium-art { background: radial-gradient(circle at 45% 40%, #625e56, #23211e 72%); }
.premium-art span { width: 70%; height: 36%; left: 12%; top: 21%; background: linear-gradient(145deg, #8d806c, #323431); }

.process-section { background: #101215; }
.process-intro { display: grid; grid-template-columns: 1fr 1.25fr .7fr; align-items: end; gap: 60px; margin-bottom: 74px; }
.process-intro .eyebrow { align-self: start; margin-top: 12px; }
.process-intro h2 { margin: 0; }
.process-intro .button { justify-self: end; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-step { padding: 30px 46px 8px 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 46px; }
.process-step:last-child { border-right: 0; }
.process-step > span { color: #747671; font: 9px ui-monospace, monospace; }
.process-icon { width: 60px; height: 60px; margin: 51px 0 38px; border: 1px solid #4d514d; border-radius: 50%; display: flex; gap: 5px; align-items: center; justify-content: center; }
.process-icon i { width: 5px; height: 5px; border: 1px solid var(--accent); border-radius: 50%; }
.process-icon-balance { display: grid; grid-template-columns: repeat(4, 7px); gap: 3px; padding: 16px; }
.process-icon-balance i { border-radius: 1px; width: 7px; height: var(--h, 20px); align-self: end; background: var(--accent); border: 0; }
.process-icon-balance i:nth-child(1) { --h: 11px; }.process-icon-balance i:nth-child(2) { --h: 26px; }.process-icon-balance i:nth-child(3) { --h: 18px; }.process-icon-balance i:nth-child(4) { --h: 14px; }
.process-icon-layers { position: relative; display: block; }
.process-icon-layers i { position: absolute; width: 24px; height: 16px; border: 1px solid var(--accent); border-radius: 2px; left: 17px; top: 16px; transform: skewY(-17deg); }
.process-icon-layers i:nth-child(2) { top: 21px; }.process-icon-layers i:nth-child(3) { top: 26px; }
.process-step h3 { font-size: 18px; letter-spacing: -.03em; }
.process-step p { color: #868883; font-size: 12px; line-height: 1.75; max-width: 290px; }
.final-cta-section { padding-top: 128px; }
.final-cta { min-height: 485px; padding: 80px 10%; border-radius: 26px; position: relative; overflow: hidden; text-align: center; background: #e3e1d7; display: flex; flex-direction: column; align-items: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(10,11,13,.09); border-radius: 50%; }
.final-cta::before { left: -165px; top: -90px; }.final-cta::after { right: -155px; bottom: -130px; }
.final-cta h2 { max-width: 850px; font-size: clamp(37px, 4.8vw, 62px); }
.final-cta > p:not(.eyebrow) { color: #666861; }
.final-cta .button { margin-top: 21px; }

/* Footer */
.site-footer { background: #0c0d0f; }
.footer-top { padding: 82px 0 74px; display: grid; grid-template-columns: 1fr 1fr; }
.footer-brand p { color: #777974; font-size: 24px; line-height: 1.28; letter-spacing: -.04em; margin: 33px 0 0; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links > div { display: grid; gap: 15px; align-content: start; }
.footer-links span { color: #60625e; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 9px; }
.footer-links a { color: #b1b2ad; font-size: 12px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { min-height: 75px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #666864; font-size: 9px; }
.footer-bottom p { margin: 0; }

/* Builder */
.builder-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.builder-header { height: 74px; position: relative; border-bottom: 1px solid var(--dark-line); background: var(--paper); z-index: 20; }
.builder-header .nav-wrap { justify-content: space-between; }
.builder-header .brand-mark i { background: var(--ink); }
.builder-exit, .builder-reset { background: none; border: 0; cursor: pointer; color: #63655f; font-size: 11px; font-weight: 700; }
.builder-exit:hover, .builder-reset:hover { color: var(--ink); }
.builder-progress-wrap { height: 4px; background: #dedbd1; }
.builder-progress { height: 100%; background: var(--accent); transition: width .35s ease; }
.builder-main { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 285px 1fr; }
.builder-aside { background: #101215; color: var(--white); padding: 63px 38px; display: flex; flex-direction: column; }
.builder-aside-label { color: var(--accent); font: 9px ui-monospace, monospace; letter-spacing: .15em; text-transform: uppercase; }
.builder-aside h2 { margin: 28px 0 18px; font-size: 28px; line-height: 1.08; letter-spacing: -.05em; }
.builder-aside > p { color: #81837f; font-size: 12px; line-height: 1.7; }
.builder-formula { margin-top: auto; padding-top: 42px; border-top: 1px solid var(--line); display: grid; gap: 13px; }
.builder-formula span { color: #777975; font-size: 10px; display: flex; align-items: center; gap: 8px; }
.builder-formula i { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.builder-formula b { color: var(--accent); font-size: 10px; margin-top: 4px; }
.question-area { min-width: 0; padding: 58px clamp(28px, 7vw, 105px) 42px; display: flex; flex-direction: column; }
.question-shell { width: min(100%, 850px); margin: auto; }
.question-kicker { display: flex; justify-content: space-between; margin-bottom: 20px; color: #81837d; font: 10px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .12em; }
.question-title { font-size: clamp(34px, 4.5vw, 57px); letter-spacing: -.06em; line-height: 1.02; margin-bottom: 14px; }
.question-help { color: #6e706a; font-size: 13px; line-height: 1.6; margin-bottom: 33px; }
.answer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.answer-card { appearance: none; border: 1px solid #c9c7bf; background: rgba(255,255,255,.28); border-radius: var(--radius-sm); min-height: 78px; padding: 17px 19px; display: flex; align-items: center; gap: 15px; text-align: left; cursor: pointer; transition: border-color .18s, background .18s, transform .18s; }
.answer-card:hover { border-color: #8b8d87; transform: translateY(-1px); }
.answer-card.selected { border-color: var(--ink); background: var(--white); box-shadow: inset 0 0 0 1px var(--ink); }
.answer-card-marker { width: 21px; height: 21px; flex: 0 0 auto; border: 1px solid #a2a49e; border-radius: 50%; display: grid; place-items: center; }
.answer-card.multi .answer-card-marker { border-radius: 5px; }
.answer-card.selected .answer-card-marker { border-color: var(--ink); background: var(--ink); }
.answer-card.selected .answer-card-marker::after { content: "✓"; color: var(--accent); font-size: 11px; font-weight: 900; }
.answer-card-copy { display: grid; gap: 4px; }
.answer-card-copy strong { font-size: 13px; }
.answer-card-copy small { color: #777973; font-size: 10px; }
.custom-budget, .measurements { margin-top: 13px; padding: 20px; border: 1px solid var(--dark-line); border-radius: var(--radius-sm); background: rgba(255,255,255,.25); }
.custom-budget > small { display: block; margin-top: 8px; color: #777973; font-size: 10px; line-height: 1.5; }
.custom-budget label, .measurements label { display: block; font-size: 11px; font-weight: 750; margin-bottom: 8px; }
.money-input { position: relative; }
.money-input span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #73756f; }
.input { width: 100%; height: 48px; border: 1px solid #b9b8b0; border-radius: 8px; background: var(--white); color: var(--ink); padding: 0 14px; }
.money-input .input { padding-left: 31px; }
.measurements { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.question-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 37px; }
.question-actions .button { min-width: 142px; }
.back-button { background: none; border: 0; padding: 13px 0; color: #666861; font-size: 12px; cursor: pointer; }
.back-button:hover { color: var(--ink); }
.selection-warning { min-height: 19px; margin: 11px 0 -6px; color: #98512f; font-size: 11px; }
.question-enter { animation: questionIn .35s ease both; }
@keyframes questionIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

/* Results */
.results-page { background: var(--paper); color: var(--ink); }
.results-shell { min-width: 0; width: 100%; }
.results-hero { padding: 80px 0 60px; background: #111316; color: var(--white); position: relative; overflow: hidden; }
.results-hero::after { content: ""; width: 600px; height: 600px; position: absolute; right: -170px; top: -300px; border: 1px solid rgba(183,247,90,.16); border-radius: 50%; }
.results-hero .shell { position: relative; z-index: 1; }
.results-hero .eyebrow { color: var(--accent); }
.results-hero h1 { max-width: 820px; font-size: clamp(42px, 6vw, 72px); line-height: .98; letter-spacing: -.06em; margin-bottom: 20px; }
.results-hero .result-summary { color: #a6a7a2; max-width: 760px; line-height: 1.7; }
.budget-status { display: inline-flex; margin: 18px 0 0; padding: 8px 11px; border: 1px solid rgba(183,247,90,.24); border-radius: 999px; color: #c7c9c2; background: rgba(183,247,90,.06); font-size: 10px; }
.budget-status.over { color: #ffd0bd; border-color: rgba(255,148,100,.35); background: rgba(255,148,100,.08); }
.result-stats { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.result-stat { padding: 18px 22px 18px 0; }
.result-stat + .result-stat { padding-left: 22px; border-left: 1px solid var(--line); }
.result-stat span { display: block; color: #737570; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 7px; }
.result-stat strong { font-size: 13px; }
.result-content { padding: 75px 0 110px; }
.result-section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 27px; }
.result-section-heading h2 { font-size: 34px; letter-spacing: -.05em; margin: 0; }
.result-section-heading p { margin: 0; color: #74766f; font-size: 11px; }
.disclosure-inline { padding: 15px 18px; margin-bottom: 20px; border-left: 3px solid var(--accent); background: #e6e4da; color: #5f615b; font-size: 11px; line-height: 1.6; }
.result-decision-panel { margin-bottom: 56px; }
.result-decision-panel .result-section-heading { align-items: start; }
.result-decision-panel .result-section-heading > div { max-width: 650px; }
.result-decision-panel .eyebrow { margin-bottom: 15px; }
.decision-signal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--dark-line); }
.decision-signal-grid article { min-height: 178px; padding: 23px 22px 24px 0; }
.decision-signal-grid article + article { padding-left: 22px; border-left: 1px solid var(--dark-line); }
.decision-signal-grid article > span { color: #8b8d86; font: 9px ui-monospace, monospace; letter-spacing: .12em; }
.decision-signal-grid h3 { margin: 28px 0 9px; font-size: 16px; letter-spacing: -.03em; }
.decision-signal-grid p { margin: 0; color: #686a64; font-size: 11px; line-height: 1.6; }
.layout-guide { margin: 0 0 68px; padding: 38px; border-radius: 20px; background: #111316; color: var(--white); display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: center; overflow: hidden; }
.layout-guide-copy h2 { margin: 15px 0 15px; font-size: 35px; line-height: 1; letter-spacing: -.05em; }
.layout-guide-copy > p:not(.eyebrow) { color: #9b9d98; font-size: 12px; line-height: 1.7; }
.layout-guide-copy ul { list-style: none; margin: 25px 0 0; padding: 0; display: grid; gap: 10px; }
.layout-guide-copy li { color: #8c8e89; font-size: 10px; line-height: 1.55; }
.layout-guide-copy li strong { color: #d6d8d2; }
.setup-blueprint { min-width: 0; margin: 0; }
.blueprint-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 12px; color: #777a75; font: 8px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.blueprint-label strong { color: var(--accent); font: inherit; }
.blueprint-stage { min-height: 330px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: radial-gradient(circle at 50% 25%, rgba(183,247,90,.08), transparent 34%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 22px 22px, 22px 22px; }
.blueprint-wall { position: absolute; inset: 19px 8% auto; height: 4px; background: rgba(255,255,255,.12); }
.blueprint-desk { position: absolute; left: 11%; right: 11%; top: 71px; height: 176px; border: 1px solid rgba(255,255,255,.28); border-radius: 9px; background: rgba(255,255,255,.035); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.blueprint-monitor { position: absolute; top: 91px; width: 30%; height: 68px; border: 1px solid var(--accent); border-radius: 5px; display: grid; place-items: center; color: #aeb3aa; background: #1b1f20; font: 8px ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.blueprint-monitor::after { content: ""; position: absolute; width: 1px; height: 17px; left: 50%; bottom: -17px; background: rgba(183,247,90,.55); }
.blueprint-monitor.primary { left: 35%; }
.blueprint-monitor.secondary { width: 21%; left: 12%; border-color: rgba(255,255,255,.35); }
.blueprint-keyboard { position: absolute; left: 37%; top: 186px; width: 26%; height: 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(255,255,255,.06) 9px 10px); }
.blueprint-mouse { position: absolute; left: 67%; top: 190px; width: 17px; height: 26px; border: 1px solid rgba(255,255,255,.35); border-radius: 50% 50% 44% 44%; }
.blueprint-chair { position: absolute; left: calc(50% - 37px); bottom: 20px; width: 74px; height: 54px; border: 1px solid rgba(255,255,255,.22); border-radius: 35px 35px 13px 13px; background: rgba(255,255,255,.035); }
.blueprint-node { position: absolute; z-index: 2; min-width: 45px; padding: 6px 7px; border-radius: 999px; border: 1px solid rgba(255,255,255,.24); background: #171a1c; color: #9fa19c; font: 7px ui-monospace, monospace; text-align: center; text-transform: uppercase; }
.blueprint-node.audio { right: 13%; top: 180px; }.blueprint-node.camera { left: calc(50% - 27px); top: 49px; }.blueprint-node.light { right: 8%; top: 49px; border-color: rgba(183,247,90,.5); color: var(--accent); }
.setup-blueprint.is-compact .blueprint-desk { left: 20%; right: 20%; }.setup-blueprint.is-compact .blueprint-monitor.primary { left: 35%; }.setup-blueprint.is-compact .blueprint-monitor.secondary { display: none; }
.setup-blueprint figcaption { margin-top: 11px; color: #6f726d; font-size: 8px; line-height: 1.5; }
.budget-advisory { margin-bottom: 34px; padding: 30px; border: 1px solid #cfb9a9; border-radius: 17px; background: #f3e9df; }
.budget-advisory .eyebrow { margin-bottom: 13px; color: #7d593e; }
.budget-advisory h2 { max-width: 760px; margin-bottom: 11px; font-size: 29px; letter-spacing: -.045em; }
.budget-advisory > p:not(.eyebrow) { max-width: 760px; color: #6d6259; font-size: 12px; line-height: 1.7; }
.purchase-phases { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 21px; }
.purchase-phases > div { padding: 15px 17px; border-radius: 10px; background: rgba(255,255,255,.52); }
.purchase-phases span { display: block; margin-bottom: 7px; color: #8a7565; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.purchase-phases strong { color: #443c35; font-size: 11px; line-height: 1.55; }
.product-list { display: grid; gap: 12px; }
.product-card { background: var(--white); border: 1px solid var(--dark-line); border-radius: 17px; padding: 25px; display: grid; grid-template-columns: 125px minmax(0, 1fr) 150px; gap: 25px; align-items: center; }
.product-category { align-self: stretch; border-right: 1px solid var(--dark-line); display: flex; flex-direction: column; justify-content: space-between; }
.product-category span { color: #858780; font: 9px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .14em; }
.product-category strong { font-size: 24px; letter-spacing: -.05em; }
.estimated-price-label { margin: 0 0 5px; color: #898b84; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.product-title-row { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: start; }
.product-main h3 { min-width: 0; font-size: 18px; margin-bottom: 15px; letter-spacing: -.025em; overflow-wrap: anywhere; }
.estimated-price { flex: 0 0 auto; font-size: 18px; letter-spacing: -.04em; white-space: nowrap; }
.product-reasons { display: grid; grid-template-columns: 1.35fr .9fr .9fr; gap: 22px; }
.product-reasons div { color: #60625c; font-size: 11px; line-height: 1.55; }
.product-reasons span { color: #8a8c85; display: block; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.fit-signal-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.fit-signal-list li { padding: 6px 8px; border: 1px solid #d8d6ce; border-radius: 999px; color: #696b65; background: #f8f6f0; font-size: 8px; line-height: 1.2; }
.compatibility-note { margin: 15px 0 0; padding-top: 12px; border-top: 1px solid var(--dark-line); color: #72746e; font-size: 10px; line-height: 1.55; }
.compatibility-note strong { color: #555750; }
.product-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 17px; }
.product-choice { min-width: 0; min-height: 94px; padding: 10px; border: 1px solid #d1cfc7; border-radius: 10px; background: #f7f5ee; color: var(--ink); text-align: left; cursor: pointer; display: flex; flex-direction: column; gap: 5px; transition: border-color .18s, background .18s, transform .18s; }
.product-choice:hover { border-color: #92948d; transform: translateY(-1px); }
.product-choice.selected { border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: inset 0 0 0 1px var(--ink); }
.product-choice.over-budget-option:not(.selected) { border-color: #c89579; background: #fff8f3; }
.choice-role { color: #6e7069; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-choice.selected .choice-role { color: var(--accent); }
.product-choice > strong { font-size: 9px; line-height: 1.35; overflow-wrap: anywhere; }
.choice-detail { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; margin-top: auto; color: #777973; font-size: 8px; }
.choice-detail b { color: currentColor; }
.product-choice.selected .choice-detail { color: #c7c9c3; }
.product-actions { width: 162px; display: grid; gap: 8px; }
.product-actions .button { width: 100%; min-height: 43px; }
.product-actions > span { color: #82847d; font-size: 8px; line-height: 1.4; text-align: center; }
.budget-panel { margin-top: 72px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; padding: 45px; border-radius: var(--radius); background: #e5e2d8; }
.budget-panel h2 { font-size: 33px; letter-spacing: -.05em; }
.budget-panel > div:first-child p { color: #656761; font-size: 12px; line-height: 1.7; }
.budget-total { display: flex; align-items: baseline; gap: 8px; margin-top: 26px; }
.budget-total strong { font-size: 35px; letter-spacing: -.05em; }.budget-total span { color: #73756f; font-size: 10px; }
.budget-bars { display: grid; gap: 14px; }
.budget-bar-row { display: grid; grid-template-columns: 120px 1fr 43px; gap: 15px; align-items: center; font-size: 10px; }
.budget-bar-track { height: 7px; background: rgba(10,11,13,.09); border-radius: 10px; overflow: hidden; }
.budget-bar-fill { height: 100%; width: var(--bar); background: var(--ink); border-radius: inherit; animation: barGrow .7s ease both; transform-origin: left; }
@keyframes barGrow { from { transform: scaleX(0); } }
.budget-bar-row strong { text-align: right; }
.price-notice { margin: 25px 0 0; color: #74766f; font-size: 10px; }
.checkout-checklist { margin-top: 58px; padding: 38px; border: 1px solid var(--dark-line); border-radius: 18px; background: var(--white); display: grid; grid-template-columns: .76fr 1.24fr; gap: 55px; }
.checkout-checklist h2 { max-width: 410px; margin: 14px 0 13px; font-size: 32px; line-height: 1.02; letter-spacing: -.05em; }
.checkout-checklist > div > p:not(.eyebrow) { color: #696b65; font-size: 11px; line-height: 1.65; }
.checkout-checklist ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.checkout-checklist li { padding: 16px; border-radius: 11px; background: #efede5; display: grid; grid-template-columns: 22px 1fr; gap: 9px; }
.checkout-checklist li > span { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-size: 9px; }
.checkout-checklist li strong { display: block; margin: 2px 0 6px; font-size: 11px; }
.checkout-checklist li p { margin: 0; color: #6a6c66; font-size: 9px; line-height: 1.55; }
.result-error { min-height: calc(100vh - 78px); padding-block: 110px; }
.result-error h1 { max-width: 700px; font-size: clamp(42px, 6vw, 70px); line-height: 1; letter-spacing: -.06em; }
.result-error > p:not(.eyebrow) { max-width: 620px; color: #62645e; line-height: 1.7; }
.result-error > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.status-toast { position: fixed; right: 22px; bottom: 22px; z-index: 200; max-width: 340px; background: #111316; color: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 12px; padding: 15px 18px; font-size: 11px; line-height: 1.5; animation: toastIn .25s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } }

/* Guides */
.page-hero { padding: 166px 0 89px; background: #111316; color: var(--white); }
.page-hero h1 { max-width: 800px; font-size: clamp(48px, 7vw, 78px); line-height: .96; letter-spacing: -.065em; margin-bottom: 23px; }
.page-hero > .shell > p:last-child { max-width: 660px; color: #9c9e99; font-size: 16px; line-height: 1.7; }
.guide-section { padding: 86px 0 120px; background: var(--paper); color: var(--ink); }
.guide-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; }
.guide-toolbar p { margin: 0; color: #777973; font-size: 11px; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.guide-card { min-height: 310px; border: 1px solid var(--dark-line); border-radius: var(--radius); overflow: hidden; background: var(--white); display: grid; grid-template-rows: 155px 1fr; transition: transform .2s, box-shadow .2s; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(20,20,18,.09); }
.guide-card-art { background: #16191c; position: relative; overflow: hidden; padding: 21px; color: var(--white); }
.guide-card-art::before { content: ""; position: absolute; width: 190px; height: 190px; right: -45px; top: -65px; border: 1px solid rgba(183,247,90,.25); border-radius: 50%; }
.guide-card-art span { font: 9px ui-monospace, monospace; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; }
.guide-card-art strong { position: absolute; bottom: 17px; left: 21px; font-size: 31px; letter-spacing: -.05em; }
.guide-card-art .guide-bars { position: absolute; right: 21px; bottom: 21px; width: 120px; display: grid; gap: 5px; }
.guide-bars i { display: block; height: 3px; width: var(--w); background: rgba(255,255,255,.3); margin-left: auto; }.guide-bars i:first-child { background: var(--accent); }
.guide-card-copy { padding: 22px; display: grid; grid-template-columns: 1fr auto; column-gap: 20px; }
.guide-card h2 { font-size: 18px; margin: 0; letter-spacing: -.03em; }
.guide-card p { grid-column: 1 / -1; color: #6d6f69; font-size: 11px; line-height: 1.6; margin: 9px 0 0; }
.guide-card .view-guide { align-self: start; border: 0; border-bottom: 1px solid currentColor; background: none; padding: 1px 0 4px; color: var(--ink); font-size: 10px; font-weight: 800; white-space: nowrap; cursor: pointer; }
.guide-card:hover .view-guide { color: #4c6c18; }
.guide-crawl-index { margin-top: 72px; padding-top: 30px; border-top: 1px solid var(--dark-line); }
.guide-crawl-index h2 { margin-bottom: 20px; font-size: 20px; letter-spacing: -.035em; }
.guide-crawl-index > div { display: flex; flex-wrap: wrap; gap: 8px; }
.guide-crawl-index a { padding: 9px 11px; border: 1px solid #d1cfc7; border-radius: 999px; color: #5f615b; background: rgba(255,255,255,.35); font-size: 9px; }
.guide-crawl-index a:hover { border-color: #8b8d86; color: var(--ink); }
/* Indexable setup guides */
.setup-detail-page { background: var(--paper); }
.setup-detail-hero { min-height: 680px; padding: 135px 0 88px; background: radial-gradient(circle at 78% 38%, #253027 0, #111316 47%); color: var(--white); display: flex; align-items: center; }
.setup-detail-hero .shell { position: relative; }
.setup-detail-hero h1 { max-width: 900px; margin-bottom: 25px; font-size: clamp(52px, 7vw, 88px); line-height: .94; letter-spacing: -.067em; }
.setup-detail-hero .shell > p:not(.eyebrow) { max-width: 700px; color: #aaaCA7; font-size: 17px; line-height: 1.75; }
.setup-detail-hero .button { margin-top: 19px; }
.setup-detail-hero small { display: block; margin-top: 13px; color: #777a75; font-size: 10px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 48px; color: #777a75; font-size: 10px; }
.breadcrumbs a { color: #c4c6bf; text-decoration: underline; text-underline-offset: 3px; }
.setup-detail-body { padding: 95px 0 120px; }
.setup-content { display: grid; gap: 78px; }
.setup-content > article, .setup-content > section { max-width: 850px; }
.setup-content h2 { max-width: 740px; margin-bottom: 17px; font-size: clamp(32px, 4vw, 49px); line-height: 1.02; letter-spacing: -.055em; }
.setup-content p { color: #5d5f59; font-size: 14px; line-height: 1.85; }
.setup-content .eyebrow { margin-bottom: 20px; font-size: 9px; }
.section-intro { margin-top: -6px; }
.category-plan { width: min(100%, 1040px); margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--dark-line); }
.category-plan article { min-height: 180px; padding: 25px 28px 24px 0; border-bottom: 1px solid var(--dark-line); }
.category-plan article:nth-child(odd) { border-right: 1px solid var(--dark-line); }
.category-plan article:nth-child(even) { padding-left: 28px; }
.category-plan span { display: block; color: #858780; font: 9px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .13em; }
.category-plan strong { display: block; margin: 18px 0 9px; font-size: 23px; letter-spacing: -.04em; }
.category-plan p { margin: 0; font-size: 12px; line-height: 1.65; }
.tradeoff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.tradeoff-grid article { min-height: 280px; padding: 34px; border-radius: 18px; background: var(--white); border: 1px solid var(--dark-line); }
.tradeoff-grid article:last-child { background: #111316; color: var(--white); }
.tradeoff-grid > article > span { color: #777a75; font: 9px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .13em; }
.tradeoff-grid article:last-child > span { color: var(--accent); }
.tradeoff-grid h2 { margin-top: 42px; font-size: 31px; }
.tradeoff-grid article:last-child p { color: #a0a29c; }
.catalog-notice { max-width: 850px; padding: 20px 23px; border-left: 3px solid var(--accent); background: #e6e4da; }
.catalog-notice strong { display: block; margin-bottom: 7px; font-size: 12px; }
.catalog-notice p { margin: 0; font-size: 11px; line-height: 1.7; }
.setup-faq { max-width: 920px!important; }
.setup-faq > div { margin-top: 28px; border-top: 1px solid var(--dark-line); }
.setup-faq details { border-bottom: 1px solid var(--dark-line); }
.setup-faq summary { min-height: 68px; padding: 20px 42px 20px 0; display: flex; align-items: center; position: relative; font-size: 14px; font-weight: 750; cursor: pointer; list-style: none; }
.setup-faq summary::-webkit-details-marker { display: none; }
.setup-faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: #73756f; font-size: 20px; font-weight: 400; }
.setup-faq details[open] summary::after { content: "−"; }
.setup-faq details p { max-width: 760px; margin: -4px 0 23px; font-size: 12px; line-height: 1.75; }
.related-guides { max-width: none!important; }
.related-guides > div { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.related-guides a { min-height: 170px; padding: 24px; border: 1px solid var(--dark-line); border-radius: 14px; background: var(--white); display: flex; flex-direction: column; transition: transform .18s, border-color .18s; }
.related-guides a:hover { transform: translateY(-2px); border-color: #8f918a; }
.related-guides a > span { color: #878982; font: 8px ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; }
.related-guides a > strong { margin: 26px 0 12px; font-size: 17px; line-height: 1.2; letter-spacing: -.03em; }
.related-guides a > small { margin-top: auto; color: #666861; font-size: 9px; }
.setup-customize { max-width: none!important; padding: 64px; border-radius: 22px; background: #dfddd3; position: relative; overflow: hidden; }
.setup-customize::after { content: ""; position: absolute; right: -130px; top: -180px; width: 390px; height: 390px; border: 1px solid rgba(10,11,13,.1); border-radius: 50%; }
.setup-customize > * { position: relative; z-index: 1; }
.setup-customize p:not(.eyebrow) { max-width: 680px; }
.setup-customize .button { margin-top: 18px; }

/* Editorial/legal pages */
.editorial-page { background: var(--paper); color: var(--ink); }
.editorial-hero { padding: 160px 0 75px; background: #111316; color: var(--white); }
.editorial-hero h1 { font-size: clamp(48px, 7vw, 74px); letter-spacing: -.065em; line-height: .98; }
.editorial-hero p { max-width: 650px; color: #9b9d98; line-height: 1.7; }
.editorial-body { padding: 75px 0 115px; }
.article-shell { width: min(calc(100% - 48px), 780px); margin-inline: auto; }
.article-shell h2 { font-size: 27px; letter-spacing: -.04em; margin: 50px 0 15px; }
.article-shell h2:first-child { margin-top: 0; }
.article-shell h3 { margin: 31px 0 10px; font-size: 16px; }
.article-shell p, .article-shell li { color: #565852; font-size: 14px; line-height: 1.85; }
.article-shell a { text-decoration: underline; text-underline-offset: 3px; }
.article-shell .button { text-decoration: none; }
.article-shell ul { padding-left: 22px; }
.legal-highlight { border-left: 3px solid var(--accent); background: #e5e2d8; padding: 22px 24px; margin: 28px 0; }
.legal-highlight p { margin: 0; color: var(--ink); font-weight: 650; }
.about-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 35px 0; }
.about-principles article { padding: 25px; border: 1px solid var(--dark-line); border-radius: 13px; }
.about-principles span { color: #858780; font: 9px ui-monospace, monospace; }.about-principles h3 { margin: 15px 0 8px; }.about-principles p { margin: 0; font-size: 12px; }

/* Motion and responsive */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms!important; transition-duration: .001ms!important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .builder-main { grid-template-columns: 220px minmax(0, 1fr); }
  .builder-aside { padding-inline: 26px; }
  .question-area { padding-inline: 30px; }
  .product-card { grid-template-columns: 105px minmax(0, 1fr); }
  .product-actions { grid-column: 2; width: auto; grid-template-columns: minmax(140px, 220px); }
}

@media (max-width: 980px) {
  .primary-nav { gap: 19px; }.nav-cta { display: none; }
  .hero { padding-top: 137px; }.hero-grid { grid-template-columns: 1fr; gap: 53px; }.hero-copy { max-width: 760px; }.setup-preview { width: min(100%, 620px); margin-inline: auto; transform: none; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }.trust-grid > p { display: none; }.trust-grid > div:first-of-type { border-left: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }.split-heading > p { max-width: 610px; }
  .setup-type-card { grid-template-columns: 1fr; grid-template-rows: 200px auto; }.setup-art { min-height: 200px; }.setup-card-copy { min-height: 220px; }
  .process-intro { grid-template-columns: 1fr 1fr; }.process-intro .eyebrow { grid-column: 1 / -1; }.process-intro .button { align-self: center; }
  .question-area { padding-inline: 28px; }
  .decision-signal-grid { grid-template-columns: repeat(2, 1fr); }.decision-signal-grid article:nth-child(3) { border-left: 0; }.decision-signal-grid article { border-bottom: 1px solid var(--dark-line); }
  .layout-guide { grid-template-columns: 1fr; gap: 35px; }.setup-blueprint { width: min(100%, 680px); }
  .checkout-checklist { grid-template-columns: 1fr; gap: 28px; }
  .product-card { grid-template-columns: 105px minmax(0, 1fr); }.product-actions { grid-column: 2; width: auto; grid-template-columns: minmax(140px, 220px); }.product-choice-grid { grid-template-columns: 1fr; }.product-choice { min-height: 76px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { height: 68px; }.nav-wrap { justify-content: space-between; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(1) { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 68px 0 auto; padding: 23px 16px 28px; background: rgba(10,11,13,.98); border-bottom: 1px solid var(--line); display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.open { display: flex; }.primary-nav a { padding: 14px; font-size: 14px; }
  .hero { padding: 122px 0 62px; }.hero h1 { font-size: 50px; }.hero-lede { font-size: 15px; }.hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof { max-width: 390px; line-height: 1.8; }.setup-preview { min-height: 480px; }.preview-display { height: 200px; }
  .trust-grid { display: block; padding: 16px; }.trust-grid > div { min-height: 67px; border-left: 0; border-bottom: 1px solid var(--line); padding-left: 0; }.trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 84px 0; }.section-heading { margin-bottom: 38px; }.section-heading h2, .process-intro h2, .final-cta h2 { font-size: 42px; }
  .value-grid { grid-template-columns: 1fr; }.value-card, .value-card + .value-card { min-height: auto; padding: 28px 0 35px; border-right: 0; border-bottom: 1px solid var(--dark-line); }.value-card:last-child { border-bottom: 0; }.value-icon { margin: 31px 0 24px; }
  .setup-types-section { padding-top: 20px; }.setup-type-grid { grid-template-columns: 1fr; }.setup-type-card { grid-template-columns: 1fr 1fr; grid-template-rows: none; min-height: 250px; }.setup-art { min-height: 250px; }.setup-card-copy { min-height: 250px; padding: 25px 22px; }
  .process-intro { grid-template-columns: 1fr; gap: 25px; }.process-intro .eyebrow { grid-column: auto; }.process-intro .button { justify-self: start; }
  .process-steps { grid-template-columns: 1fr; }.process-step, .process-step + .process-step { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0 34px; }.process-icon { margin: 30px 0 24px; }
  .final-cta { min-height: 440px; padding: 60px 25px; }.footer-top { grid-template-columns: 1fr; gap: 60px; }.footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; line-height: 1.5; }
  .builder-main { display: block; }.builder-aside { display: none; }.builder-header .brand { font-size: 16px; }.question-area { padding: 40px 20px 30px; min-height: calc(100vh - 78px); }.answer-grid { grid-template-columns: 1fr; }.answer-card { min-height: 67px; }.question-title { font-size: 39px; }.question-actions { position: sticky; bottom: 0; background: linear-gradient(transparent, var(--paper) 18%); padding-top: 30px; padding-bottom: 7px; }
  .result-decision-panel { margin-bottom: 42px; }.decision-signal-grid { grid-template-columns: 1fr; }.decision-signal-grid article, .decision-signal-grid article + article { min-height: auto; padding: 21px 0; border-left: 0; border-bottom: 1px solid var(--dark-line); }.decision-signal-grid h3 { margin-top: 16px; }.layout-guide { margin-bottom: 48px; padding: 27px 21px; }.layout-guide-copy h2 { font-size: 31px; }.blueprint-stage { min-height: 270px; }.blueprint-desk { top: 63px; height: 145px; }.blueprint-monitor { top: 79px; height: 56px; }.blueprint-keyboard { top: 158px; }.blueprint-mouse { top: 161px; }.blueprint-node.audio { top: 151px; }.blueprint-node.camera, .blueprint-node.light { top: 43px; }.blueprint-chair { bottom: 13px; }.checkout-checklist { padding: 26px 21px; }.checkout-checklist ol { grid-template-columns: 1fr; }.checkout-checklist h2 { font-size: 29px; }
  .result-stats { grid-template-columns: repeat(2, 1fr); }.result-stat:nth-child(3) { border-left: 0; }.result-stat { border-bottom: 1px solid var(--line); }.budget-advisory { padding: 24px 21px; }.purchase-phases { grid-template-columns: 1fr; }.product-card { grid-template-columns: 1fr; gap: 18px; padding: 21px; }.product-category { border-right: 0; border-bottom: 1px solid var(--dark-line); padding-bottom: 13px; flex-direction: row; align-items: end; }.product-main, .product-actions { grid-column: 1; }.product-actions { width: 100%; grid-template-columns: 1fr; }.product-reasons { grid-template-columns: 1fr; }.product-choice-grid { grid-template-columns: 1fr; }.product-choice { min-height: 80px; }.budget-panel { grid-template-columns: 1fr; gap: 34px; padding: 29px 23px; }.result-section-heading { display: block; }.result-section-heading p { margin-top: 8px; }.budget-bar-row { grid-template-columns: 90px 1fr 36px; gap: 9px; }
  .page-hero, .editorial-hero { padding: 128px 0 66px; }.guide-grid { grid-template-columns: 1fr; }.guide-toolbar { align-items: flex-start; gap: 8px; flex-direction: column; }.about-principles { grid-template-columns: 1fr; }
  .setup-detail-hero { min-height: 600px; padding: 115px 0 70px; }.setup-detail-hero h1 { font-size: 51px; }.breadcrumbs { margin-bottom: 38px; }.setup-detail-body { padding: 75px 0 90px; }.setup-content { gap: 62px; }.category-plan { grid-template-columns: 1fr; }.category-plan article, .category-plan article:nth-child(even) { padding: 23px 0; border-right: 0; }.tradeoff-grid { grid-template-columns: 1fr; }.tradeoff-grid article { min-height: 240px; padding: 28px 24px; }.setup-customize { padding: 42px 24px; }
  .related-guides > div { grid-template-columns: 1fr; }.related-guides a { min-height: 145px; }
}

@media (max-width: 470px) {
  .hero h1 { font-size: 43px; }.setup-preview { min-height: 460px; }.monitor { width: 205px; }.tower-shape { display: none; }.setup-type-card { grid-template-columns: 1fr; grid-template-rows: 175px auto; }.setup-art { min-height: 175px; }.setup-card-copy { min-height: 210px; }.footer-links { gap: 25px; }.measurements { grid-template-columns: 1fr; }.result-stat strong { font-size: 11px; }.builder-header .nav-wrap { gap: 14px; }.builder-reset { margin-left: auto; }.builder-exit { font-size: 0; }.builder-exit span { display: inline-grid; place-items: center; width: 40px; height: 40px; font-size: 18px; }
}
