@layer reset, base, components, responsive;
@layer reset {
  * { box-sizing: border-box; }
  body, h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
  button, input, textarea, select { font: inherit; }
  img, canvas { max-width: 100%; }
  [hidden] { display: none !important; }
}
@layer base {
  :root { --blue: #1649ef; --ink: #15213a; --muted: #536079; --yellow: #f6dd54; --line: #dce1eb; --paper: #f7f9fc; --radius: 12px; }
  html { scroll-behavior: smooth; scroll-padding-top: 30px; }
  body { background: #fff; color: var(--ink); font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
  a { color: inherit; text-decoration: none; text-underline-offset: 5px; }
  button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid #996800; outline-offset: 5px; }
  a:hover { color: var(--blue); }
  button { cursor: pointer; }
  button:disabled { cursor: not-allowed; opacity: .6; }
  h1, h2, h3 { font-weight: 650; line-height: 1.12; letter-spacing: -.045em; text-wrap: balance; }
  h1 { font-size: clamp(2.8rem, 5.6vw, 5.5rem); }
  h2 { font-size: clamp(2rem, 3.1vw, 3rem); }
  h3 { font-size: 1.5rem; letter-spacing: -.035em; }
  p { color: var(--muted); }
  p + p { margin-top: 1.2rem; }
  ::selection { background: var(--yellow); color: var(--ink); }
  .container { width: min(1200px, calc(100% - 80px)); margin-inline: auto; }
  .small, small { font-size: .875rem; line-height: 1.6; color: var(--muted); }
  .eyebrow { display: block; font-size: .75rem; letter-spacing: .115em; font-weight: 750; line-height: 1.6; margin-bottom: 20px; }
  .lead { font-size: 1.2rem; line-height: 1.65; }
  .blue-text { color: var(--blue); }
}
@layer components {
  .skip { position: fixed; z-index: 20; top: -80px; left: 15px; padding: 14px; background: var(--yellow); clip-path: inset(100%); }
  .skip:focus { top: 10px; clip-path: none; }
  .offer-strip { text-align: center; padding: 7px 18px; font-size: .75rem; background: var(--blue); color: white; letter-spacing: .01em; }
  .offer-strip span { font-weight: 750; margin-right: 14px; letter-spacing: .09em; }
  header { border-bottom: 1px solid #ecedf2; background: white; }
  .nav-wrap { min-height: 92px; display: flex; align-items: center; gap: 38px; }
  .brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; font-size: 1.5rem; letter-spacing: -.055em; white-space: nowrap; }
  .brand-icon { background: var(--blue); color: white; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; font-size: 2.2rem; line-height: 1; position: relative; padding-bottom: 3px; }
  .brand-icon span { color: var(--yellow); position: absolute; font-size: 1.6rem; right: 5px; top: -5px; }
  #main-nav { display: flex; align-items: center; justify-content: center; gap: 27px; flex: 1; }
  #main-nav a { font-size: .875rem; font-weight: 600; padding: 10px 0; }
  #main-nav a[aria-current] { color: var(--blue); box-shadow: 0 2px var(--blue); }
  .support-link { font-size: .875rem; border-bottom: 1px solid var(--ink); padding-block: 4px; font-weight: 600; }
  .support-link span { margin-left: 8px; }
  .menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 9px 13px; }
  .hero { display: grid; grid-template-columns: 1.02fr 1fr; gap: 60px; align-items: center; padding-block: 78px 82px; }
  .hero-copy .eyebrow { color: var(--blue); }
  .hero h1 { font-size: clamp(3rem, 5.6vw, 5.05rem); line-height: 1.02; letter-spacing: -.065em; margin-bottom: 27px; }
  .hero .lead { max-width: 480px; font-size: 1.1rem; }
  .hero-actions { display: flex; align-items: center; gap: 23px; margin-top: 32px; flex-wrap: wrap; }
  .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 50px; padding: 13px 22px; font-size: .9375rem; line-height: 1.4; font-weight: 650; border: 1px solid transparent; border-radius: 6px; transition: background .15s ease, transform .15s ease; }
  .button span { font-size: 1.2rem; line-height: 1; }
  .primary { background: var(--blue); color: white; }
  .primary:hover { background: #0d35b9; color: white; }
  .yellow { color: var(--ink); background: var(--yellow); }
  .yellow:hover { background: #ffe976; color: var(--ink); }
  .outline { border: 1px solid var(--ink); background: transparent; }
  .outline:hover { background: var(--ink); color: white; }
  .text-link { font-size: .9375rem; display: inline-flex; gap: 15px; align-items: center; font-weight: 650; }
  .text-link:hover { text-decoration: underline; }
  .hero-note { margin-top: 25px; font-size: .8125rem; max-width: 385px; }
  .project-board { border-radius: 13px; background: #f8df59; padding: 29px; transform: rotate(1deg); }
  .board-header { display: flex; justify-content: space-between; align-items: start; }
  .board-header .eyebrow { margin-bottom: 15px; }
  .board-marker { border: 1px solid #aa922e; border-radius: 50%; width: 55px; height: 55px; display: grid; place-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
  .project-board h2 { font-size: 2.5rem; line-height: 1.03; letter-spacing: -.06em; margin: -7px 0 28px; max-width: 350px; }
  .board-rows { display: grid; gap: 10px; }
  .project-row { display: flex; align-items: center; gap: 14px; padding: 17px 15px; background: white; border: 1px solid rgba(21,33,58,.08); border-radius: 7px; box-shadow: 0 2px 0 rgba(21,33,58,.06); transition: transform .15s; }
  .project-row:hover { transform: translateX(4px); }
  .project-icon { font-size: .75rem; font-weight: 700; display: grid; place-items: center; background: #edf1ff; color: var(--blue); width: 36px; height: 42px; border-radius: 5px; flex-shrink: 0; }
  .project-row strong { display: block; font-size: .925rem; letter-spacing: -.02em; }
  .project-row div > span { display: block; font-size: .75rem; color: var(--muted); line-height: 1.5; margin-top: 3px; }
  .project-price { margin-left: auto; font-weight: 750; font-size: 1.5rem; line-height: 1.2; white-space: nowrap; }
  .project-price small { display: block; font-size: .75rem; text-align: right; font-weight: 400; }
  .board-footer { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid #c6af41; padding-top: 17px; margin-top: 23px; }
  .board-footer > span:first-child { max-width: 185px; font-size: .875rem; line-height: 1.4; font-weight: 650; }
  .board-footer .small { font-size: .75rem; max-width: 118px; text-align: right; color: #5e511e; }
  .principles { background: var(--paper); border-block: 1px solid #e8ecf4; padding-block: 37px; }
  .principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
  .principles-grid > div + div { border-left: 1px solid var(--line); padding-left: 35px; }
  .principles span { font-size: .75rem; letter-spacing: .08em; color: var(--blue); font-weight: 700; }
  .principles h2 { font-size: 1.375rem; margin: 10px 0; letter-spacing: -.03em; }
  .principles p { font-size: .9375rem; line-height: 1.6; }
  .section { padding-block: 84px; }
  .no-top { padding-top: 0; }
  .section-heading { display: flex; gap: 50px; align-items: flex-end; justify-content: space-between; margin-bottom: 38px; }
  .section-heading .eyebrow { color: var(--blue); margin-bottom: 15px; }
  .section-heading h2 { max-width: 710px; }
  .section-heading > p { max-width: 350px; font-size: .9375rem; flex-shrink: 0; }
  .section-heading > a { flex-shrink: 0; margin-bottom: 5px; }
  .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .plan-card { border: 1px solid var(--line); border-radius: 10px; padding: 27px; position: relative; overflow: hidden; background: #fff; }
  .plan-card:before { content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: #1649ef; }
  .plan-card.yellow { background: #fffef5; }
  .plan-card.yellow:before { background: #ebce26; }
  .plan-card.mint:before { background: #74c2ad; }
  .plan-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
  .tag { font-size: .8125rem; color: var(--muted); }
  .plan-number { color: #66738d; font-size: .75rem; font-weight: 600; }
  .plan-card h3 { font-size: 1.8rem; }
  .price { display: flex; gap: 12px; align-items: baseline; margin: 18px 0; }
  .price > span:first-child { font-size: 3.7rem; line-height: 1; letter-spacing: -.07em; font-weight: 650; }
  .price > span:last-child { font-size: .875rem; color: var(--muted); }
  .plan-card p { font-size: .9375rem; min-height: 100px; }
  .specs { margin: 18px 0 23px; border-top: 1px solid var(--line); padding-top: 15px; }
  .specs > div { display: flex; justify-content: space-between; gap: 15px; font-size: .875rem; margin: 7px 0; }
  .specs dt { color: var(--muted); }
  .specs dd { font-weight: 650; }
  .plan-card .button { width: 100%; }
  .plan-card .text-link { font-size: .875rem; margin-block: 16px; width: 100%; justify-content: center; }
  .plan-card small { display: block; font-size: .75rem; line-height: 1.5; text-align: center; }
  .responsibility { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: #edf2ff; padding: 50px; border-radius: 12px; }
  .responsibility h2 { font-size: 2.65rem; margin-bottom: 23px; }
  .responsibility .eyebrow { color: var(--blue); }
  .responsibility .text-link { margin-top: 22px; }
  .responsibility-list { align-self: center; }
  .responsibility-list div { border-bottom: 1px solid #cad4ec; padding: 17px 0; }
  .responsibility-list span { display: block; font-size: .75rem; letter-spacing: .06em; color: var(--blue); margin-bottom: 5px; font-weight: 700; }
  .responsibility-list strong { font-size: 1.05rem; font-weight: 600; }
  .responsibility-list p { margin-top: 14px; }
  .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .guide-card { display: block; }
  .guide-cover { height: 205px; background: #e6ecff; padding: 23px; border-radius: 8px; margin-bottom: 23px; position: relative; overflow: hidden; color: #153fb2; }
  .guide-card:nth-child(2) .guide-cover { background: #fbec99; color: #736017; }
  .guide-card:nth-child(3) .guide-cover { background: #dfefe9; color: #35675b; }
  .guide-cover .eyebrow { font-size: .75rem; }
  .guide-number { font-size: 7rem; line-height: .95; font-weight: 450; letter-spacing: -.08em; }
  .guide-arrow { position: absolute; right: 25px; bottom: 22px; font-size: 2.3rem; font-weight: 400; }
  .guide-card h3 { font-size: 1.5rem; line-height: 1.2; margin: 12px 0; }
  .guide-card p { font-size: .9375rem; }
  .guide-card:hover h3 { text-decoration: underline; }
  .crypto-band { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr; gap: 50px; padding-block: 45px 70px; }
  .crypto-label { align-self: start; font-weight: 600; font-size: 1.5rem; letter-spacing: -.04em; padding-top: 6px; }
  .crypto-label span { color: var(--blue); padding-inline: 4px; }
  .crypto-band h2 { font-size: 1.65rem; margin-bottom: 12px; }
  .crypto-band p { margin-bottom: 15px; }
  .closing { background: var(--blue); color: white; padding: 50px 0; }
  .closing-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
  .closing .eyebrow { font-size: .75rem; margin-bottom: 14px; color: #d8e2ff; }
  .closing h2 { font-size: 2.55rem; max-width: 670px; }
  .closing .button { flex-shrink: 0; }
  footer { background: #f7f9fc; padding: 53px 0 25px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1fr; gap: 50px; }
  .footer-grid p { font-size: .875rem; max-width: 270px; margin: 17px 0 12px; }
  .footer-grid > div > strong { display: block; font-size: .875rem; margin-bottom: 17px; }
  .footer-grid > div:not(:first-child) > a { display: block; font-size: .875rem; color: var(--muted); margin: 9px 0; }
  .footer-grid > div > a:hover { color: var(--blue); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; padding-top: 22px; border-top: 1px solid var(--line); margin-top: 45px; font-size: .75rem; color: var(--muted); }
  .page-head { padding: 70px 0 60px; }
  .page-head .eyebrow { color: var(--blue); }
  .page-head h1 { max-width: 940px; line-height: 1.06; font-size: clamp(2.8rem, 5.4vw, 4.75rem); }
  .page-head p { max-width: 740px; margin-top: 25px; font-size: 1.125rem; }
  .page-head.compact { padding-block: 52px 38px; }
  .page-head.compact h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); }
  .notice, .article-note { background: #fff7d7; border-left: 3px solid #d1a826; padding: 18px 22px; color: #5c4c1b; font-size: .9375rem; margin: 0 0 30px; }
  .article-note { margin-top: 36px; }
  .table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
  table { width: 100%; border-collapse: collapse; text-align: left; font-size: .9375rem; }
  caption { padding: 14px 20px; background: var(--paper); font-size: .8125rem; color: var(--muted); text-align: left; }
  th, td { padding: 17px 22px; border-bottom: 1px solid var(--line); }
  thead { background: #edf2ff; }
  th { font-weight: 600; }
  tbody tr:last-child > * { border: none; }
  tbody th { min-width: 185px; }
  td { min-width: 150px; color: var(--muted); }
  .two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .plain-columns { padding-block: 38px 0; }
  .plain-columns h2 { font-size: 1.65rem; margin: 0 0 17px; }
  .plain-columns h3 { margin: 0 0 17px; }
  .plain-columns p { margin-bottom: 35px; }
  .article-layout { display: grid; grid-template-columns: 270px minmax(0, 720px); gap: 80px; padding-bottom: 65px; justify-content: space-between; }
  .article-layout aside { align-self: start; position: sticky; top: 35px; }
  .article-layout aside .eyebrow { margin: 34px 0 10px; color: var(--muted); }
  .article-layout aside nav a { display: block; font-size: .875rem; line-height: 1.5; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .prose h2 { font-size: 1.8rem; letter-spacing: -.035em; margin-bottom: 20px; }
  .prose section { margin-bottom: 42px; }
  .prose p { font-size: 1.0625rem; line-height: 1.85; }
  .detail-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) 1fr; gap: 75px; padding-bottom: 75px; }
  .detail-layout section h2 { font-size: 1.7rem; margin: 35px 0 15px; }
  .detail-price { display: flex; align-items: center; gap: 22px; margin: 30px 0; }
  .detail-price > span:first-child { font-size: 5rem; letter-spacing: -.07em; font-weight: 650; line-height: 1; }
  .detail-price > span:last-child { color: var(--muted); font-size: .9375rem; }
  .resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); margin-bottom: 18px; gap: 22px; padding: 25px 0; }
  .resource-grid span { display: block; font-size: .8125rem; color: var(--muted); }
  .resource-grid strong { display: block; font-size: 1.4rem; margin-top: 8px; }
  .detail-order { background: #edf2ff; padding: 35px; border-radius: 10px; align-self: start; }
  .detail-order h2 { font-size: 2.2rem; margin-bottom: 20px; }
  .detail-order .button { margin-block: 25px 15px; width: 100%; }
  .detail-order hr { border: none; border-top: 1px solid #c8d4ef; margin: 25px 0; }
  .faq-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 90px; padding-bottom: 85px; }
  .faq-layout aside h2 { font-size: 1.8rem; margin-bottom: 15px; }
  .faq-layout aside .button { margin-top: 25px; }
  .faq { border-bottom: 1px solid var(--line); padding-block: 21px; }
  .faq:first-child { border-top: 1px solid var(--line); }
  .faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: start; gap: 25px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary span { color: var(--blue); font-size: 1.4rem; line-height: 1.2; }
  .faq[open] summary span { transform: rotate(45deg); }
  .faq p { margin: 17px 35px 0 0; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; border-bottom: 1px solid var(--line); padding-bottom: 40px; margin-bottom: 60px; }
  .steps-grid article > span { font-size: .75rem; letter-spacing: .07em; font-weight: 700; color: var(--blue); }
  .steps-grid h2 { font-size: 1.75rem; margin: 15px 0; }
  .support-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-bottom: 80px; }
  .support-layout h2 { font-size: 1.75rem; margin: 0 0 18px; }
  .support-layout p { margin-bottom: 30px; }
  .brief-form { padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; align-self: start; }
  label { display: block; font-size: .875rem; font-weight: 650; margin-bottom: 9px; }
  select, textarea, input { width: 100%; border: 1px solid #abb5c8; background: white; border-radius: 5px; padding: 12px; color: var(--ink); min-height: 48px; line-height: 1.5; }
  select { padding-right: 28px; }
  textarea { resize: vertical; }
  .brief-form select, .brief-form textarea { margin-bottom: 23px; }
  .brief-form .button { width: 100%; }
  .brief-form #brief-status { font-size: .875rem; margin: 15px 0 0; }
  #brief-output-label { margin-top: 23px; }
  .checkout-section { padding-bottom: 80px; }
  .payment-warning { display: flex; flex-direction: column; gap: 3px; background: #fff4c2; border: 1px solid #c9a934; border-left: 5px solid #ad7b00; padding: 18px 22px; border-radius: 5px; margin-bottom: 30px; }
  .payment-warning strong { font-size: .9375rem; }
  .payment-warning span { font-size: .875rem; color: #624e12; }
  .checkout-layout { display: grid; grid-template-columns: .85fr 1.3fr; gap: 50px; }
  .checkout-controls { padding: 22px 0; }
  .step-label { color: var(--blue); font-size: .75rem; font-weight: 750; letter-spacing: .1em; margin: 0 0 20px; }
  .selection-summary { font-size: .875rem; color: var(--muted); padding-block: 13px 28px; }
  .checkout-controls form .small { margin: 12px 0 22px; }
  #generate-quote { width: 100%; }
  .quote-status { margin-top: 20px; font-size: .9375rem; }
  .text-button { border: none; border-bottom: 1px solid var(--ink); background: transparent; padding: 5px 0; font-size: .875rem; color: var(--ink); margin-top: 14px; }
  .checkout-fine { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 25px; }
  .checkout-fine h3 { font-size: 1.15rem; margin-bottom: 12px; }
  .checkout-fine p { font-size: .875rem; margin-bottom: 17px; }
  .quote-panel { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; min-height: 450px; min-width: 0; }
  #quote-empty { text-align: center; padding: 22px 40px 45px; }
  .empty-symbol { color: var(--blue); font-size: 4.5rem; letter-spacing: -.12em; font-weight: 700; margin-bottom: 15px; }
  #quote-empty h2 { font-size: 2.1rem; margin-bottom: 22px; }
  #quote-empty p { margin-bottom: 22px; }
  .quote-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 7px; }
  .quote-heading h2 { font-size: 1.75rem; }
  .timer-wrap { text-align: right; }
  .timer-wrap > span { display: block; font-size: .75rem; color: var(--muted); }
  #quote-timer { display: block; font-variant-numeric: tabular-nums; font-size: 1.75rem; font-weight: 650; line-height: 1.2; color: var(--blue); }
  #quote-timer.expired { color: #95530a; }
  .payment-field { margin-top: 23px; }
  .copy-field { display: flex; gap: 7px; }
  .payment-field input, .payment-field textarea { font-family: Consolas, 'Courier New', monospace; font-size: .875rem; overflow-wrap: anywhere; }
  .payment-field input { min-width: 0; padding: 10px; }
  .payment-field textarea { min-height: 7rem; }
  .copy-button { padding: 8px 12px; min-height: 44px; background: white; border: 1px solid #8191b0; border-radius: 5px; font-size: .8125rem; white-space: nowrap; font-weight: 600; }
  .payment-field > .copy-button { margin-top: 6px; }
  .copy-button:hover:not(:disabled) { background: #e8edff; }
  .qr-section { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: 22px; align-items: center; margin: 25px 0; }
  .qr-section canvas { width: 232px; height: 232px; max-width: none; image-rendering: pixelated; outline: 1px solid var(--line); }
  .qr-section p { font-size: .875rem; margin-top: 6px; line-height: 1.6; }
  .qr-section strong { font-size: .9375rem; }
  .qr-section .small { display: block; font-size: .8125rem; margin-top: 10px; color: #795509; font-weight: 600; }
  .quote-audit { border-block: 1px solid var(--line); padding-block: 14px; margin-bottom: 16px; }
  .quote-audit > div { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; font-size: .8125rem; padding: 5px 0; }
  .quote-audit dt { color: var(--muted); }
  .quote-audit dd { text-align: right; overflow-wrap: anywhere; }
  #expiry-notice { margin-top: 20px; }
  #storage-warning { margin-top: 15px; }
  .source-note { padding-bottom: 45px; font-size: .875rem; }
  .source-note a { color: var(--blue); text-decoration: underline; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .configure-section { padding-bottom: 85px; }
  #configuration-notice { margin: 0 0 25px; }
  #configuration-notice:empty { display: none; }
  .configurator-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, 1fr); gap: 65px; align-items: start; }
  .config-step { border-bottom: 1px solid var(--line); padding: 30px 0 34px; }
  .config-step:first-child { padding-top: 0; }
  .config-step h2 { font-size: 1.9rem; margin: 0 0 26px; }
  .config-step .step-label { margin-bottom: 12px; }
  .resource-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin: 28px 0 20px; }
  .resource-control label { display: flex; flex-direction: column; gap: 3px; }
  [data-resource-total] { display: block; color: var(--blue); font-size: 1.2rem; font-weight: 650; }
  .resource-control select { font-size: .875rem; }
  .image-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0; border: 0; margin: 0 0 20px; }
  .image-option { display: flex; align-items: start; gap: 12px; border: 1px solid #abb5c8; border-radius: 7px; padding: 16px 13px; cursor: pointer; margin: 0; }
  .image-option input, .check-option input { width: 18px; height: 18px; min-height: 0; accent-color: var(--blue); flex-shrink: 0; margin: 4px 0 0; }
  .image-option:has(input:checked) { background: #edf2ff; border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
  .image-option strong { display: block; font-weight: 650; }
  .image-option small { display: block; font-size: .8125rem; line-height: 1.5; margin-top: 4px; font-weight: 400; }
  .image-option.unavailable { background: var(--paper); border-style: dashed; color: var(--muted); cursor: not-allowed; }
  .image-option.unavailable:has(input:checked) { border-color: #a56b07; box-shadow: inset 0 0 0 1px #a56b07; }
  .field-note { margin: 10px 0 25px; }
  .check-option { display: flex; align-items: start; gap: 12px; font-weight: 500; margin: 19px 0 0; cursor: pointer; }
  .check-option small { display: block; font-size: .8125rem; margin-top: 3px; font-weight: 400; }
  .access-options { margin: 25px 0; padding: 0; border: 0; }
  .access-options legend { font-size: .875rem; font-weight: 650; }
  #sshPublicKey { font-family: Consolas, monospace; font-size: .875rem; }
  .configuration-budget { position: sticky; top: 22px; padding: 28px; background: #fff4b1; border: 1px solid #e2c849; border-radius: 10px; }
  .configuration-budget h2, #checkout-configuration h2 { font-size: 1.9rem; }
  .config-period-label { display: block; font-size: .875rem; font-weight: 500; letter-spacing: 0; line-height: 1.6; margin-top: 9px; }
  .configuration-specs { border-block: 1px solid #d6cc95; padding: 15px 0; margin: 22px 0; }
  .configuration-specs > div, .config-cost-lines > div { display: grid; grid-template-columns: 1.1fr 1fr; gap: 12px; padding: 5px 0; font-size: .875rem; line-height: 1.5; }
  .configuration-specs dt, .config-cost-lines dt { color: #4d5261; }
  .configuration-specs dd, .config-cost-lines dd { text-align: right; overflow-wrap: anywhere; min-width: 0; }
  .config-line-title { font-size: .875rem; font-weight: 650; margin-bottom: 7px; }
  .config-cost-lines > div { grid-template-columns: 1.7fr 1fr; }
  .config-subtotal { border-top: 1px solid #d6cc95; padding-top: 14px; margin-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 7px; font-size: .875rem; }
  .config-total { margin: 19px 0; padding: 20px 0; border-block: 1px solid #d6cc95; }
  .config-total > span { font-size: .875rem; display: block; }
  .config-total > strong { display: block; font-size: 2.9rem; line-height: 1.15; letter-spacing: -.05em; margin-top: 8px; overflow-wrap: anywhere; }
  .config-total small { font-size: .875rem; letter-spacing: 0; padding-left: 9px; font-weight: 500; color: var(--ink); }
  .configuration-budget .button { width: 100%; margin: 25px 0 13px; }
  .configuration-budget p { font-size: .8125rem; color: #575037; }
  #configuration-error { margin: 25px 0 0; }
  .config-mobile-bar { display: none; }
  #edit-configuration { margin: 0 0 23px; color: var(--blue); }
  #checkout-configuration { padding: 23px; background: #fff7cc; border-radius: 8px; margin-bottom: 28px; }
  #checkout-configuration .eyebrow { margin-bottom: 12px; }
  #checkout-configuration .configuration-specs > div { grid-template-columns: 1fr 1.3fr; }
  #checkout-configuration .config-total strong { font-size: 2.5rem; }
  #checkout-configuration p { font-size: .8125rem; }
}
@layer responsive {
  @media (min-width: 1500px) { .container { width: min(1280px, calc(100% - 100px)); } .hero { padding-block: 96px; } }
  @media (max-width: 1100px) {
    .container { width: calc(100% - 50px); }
    .nav-wrap { gap: 25px; }
    #main-nav { gap: 20px; }
    .support-link { display: none; }
    #main-nav { justify-content: flex-end; }
    .hero { gap: 30px; }
    .project-board { padding: 22px; }
    .project-row { padding: 14px 10px; gap: 9px; }
    .project-icon { display: none; }
    .hero-actions { gap: 17px; }
    .plan-card { padding: 23px; }
    .plan-card p { min-height: 145px; }
    .responsibility { gap: 40px; padding: 35px; }
    .section-heading > p { max-width: 300px; }
    .footer-grid { gap: 30px; }
    .article-layout { gap: 40px; grid-template-columns: 230px minmax(0, 1fr); }
    .checkout-layout { gap: 30px; }
    .quote-panel { padding: 23px; }
    .qr-section { grid-template-columns: 1fr; gap: 16px; }
    .qr-section canvas { margin-inline: auto; }
    .support-layout, .faq-layout, .detail-layout { gap: 45px; }
    .resource-grid { grid-template-columns: 1fr 1fr; }
    .configurator-grid { gap: 28px; grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr); }
    .resource-controls, .image-options { grid-template-columns: 1fr; }
    .configuration-budget { padding: 24px; }
  }
  @media (max-width: 760px) {
    .container { width: calc(100% - 36px); }
    .offer-strip { font-size: .75rem; line-height: 1.5; }
    .offer-strip span { display: inline; margin-right: 8px; }
    .nav-wrap { min-height: 78px; position: relative; justify-content: space-between; }
    .brand { font-size: 1.4rem; }
    .brand-icon { width: 36px; height: 36px; font-size: 2rem; border-radius: 9px; }
    .menu-toggle { display: flex; gap: 12px; align-items: center; font-size: .875rem; }
    #main-nav { display: none; position: absolute; top: 78px; left: -18px; right: -18px; background: white; padding: 17px 25px 22px; border-bottom: 1px solid var(--line); z-index: 10; box-shadow: 0 8px 12px #15213a08; }
    #main-nav.is-open { display: grid; gap: 4px; justify-content: stretch; }
    #main-nav a { font-size: 1rem; padding: 12px 0; }
    .hero { grid-template-columns: 1fr; padding-block: 46px 50px; gap: 40px; }
    .hero h1 { font-size: clamp(3.3rem, 9.3vw, 4.4rem); max-width: 580px; }
    .hero .lead { max-width: 560px; }
    .hero-note { max-width: 100%; }
    .project-board { padding: 25px; transform: rotate(0); }
    .project-board h2 { font-size: 2.4rem; }
    .project-icon { display: grid; }
    .project-row { padding: 16px 13px; gap: 12px; }
    .board-footer .small { max-width: none; }
    .principles { padding-block: 27px; }
    .principles-grid { grid-template-columns: 1fr; gap: 23px; }
    .principles-grid > div + div { padding: 23px 0 0; border-left: none; border-top: 1px solid var(--line); }
    .principles h2 { margin: 8px 0; }
    .section { padding-block: 50px; }
    .section.no-top { padding-top: 0; }
    .section-heading { display: block; margin-bottom: 28px; }
    .section-heading > p { margin-top: 20px; max-width: 100%; }
    .section-heading > a { margin-top: 20px; }
    .plan-grid { grid-template-columns: 1fr; gap: 22px; }
    .plan-card { padding: 26px; }
    .plan-top { margin-bottom: 20px; }
    .plan-card p { min-height: 0; }
    .responsibility { grid-template-columns: 1fr; padding: 30px 25px; gap: 12px; }
    .responsibility h2 { font-size: 2.2rem; }
    .guide-grid { grid-template-columns: 1fr; gap: 35px; }
    .guide-cover { height: 190px; }
    .guide-card h3 { max-width: 500px; }
    .guide-card p { max-width: 530px; }
    .crypto-band { grid-template-columns: 1fr; gap: 25px; padding-block: 35px 45px; }
    .closing { padding: 38px 0; }
    .closing-inner { display: block; }
    .closing h2 { font-size: 2.25rem; margin-bottom: 27px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid p { max-width: 390px; }
    .footer-bottom { margin-top: 30px; }
    .page-head { padding-block: 44px 38px; }
    .page-head h1 { font-size: 2.95rem; }
    .page-head.compact { padding-block: 38px 28px; }
    .page-head.compact h1 { font-size: 2.8rem; }
    .page-head p { font-size: 1.0625rem; margin-top: 22px; }
    .two-column, .detail-layout, .support-layout, .checkout-layout, .steps-grid, .faq-layout, .article-layout { grid-template-columns: 1fr; gap: 35px; }
    .article-layout, .detail-layout, .support-layout, .faq-layout { padding-bottom: 50px; }
    .article-layout aside { position: static; }
    .article-layout aside .eyebrow, .article-layout aside nav { display: none; }
    .article-layout { gap: 27px; }
    .prose h2 { font-size: 1.65rem; }
    .prose p { font-size: 1rem; }
    .plain-columns { gap: 0; padding-top: 28px; }
    .steps-grid { gap: 30px; padding-bottom: 35px; margin-bottom: 35px; }
    .detail-order { padding: 28px; }
    .brief-form { padding: 25px; }
    .faq-layout { gap: 35px; }
    .payment-warning { padding: 16px; }
    .checkout-layout { gap: 12px; }
    .checkout-controls { padding-block: 8px; }
    .checkout-fine { display: none; }
    .quote-panel { padding: 20px; }
    #quote-empty { padding-inline: 15px; }
    .qr-section { grid-template-columns: 1fr; gap: 16px; }
    .copy-field { flex-wrap: wrap; }
    .copy-field .copy-button { width: 100%; }
    .quote-heading h2 { font-size: 1.5rem; }
    .quote-audit > div { grid-template-columns: 1fr; gap: 1px; }
    .quote-audit dd { text-align: left; }
    .table-scroll th, .table-scroll td { padding: 14px; }
    .table-scroll th { min-width: 145px; }
    .configurator-grid { grid-template-columns: 1fr; gap: 32px; }
    .config-step h2 { font-size: 1.65rem; }
    .configuration-budget { position: static; padding: 24px; }
    .configure-section { padding-bottom: 110px; }
    .config-mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 18px max(12px, env(safe-area-inset-bottom)); gap: 16px; align-items: center; justify-content: space-between; background: #fff2a0; border-top: 1px solid #d6bc30; z-index: 5; box-shadow: 0 -3px 12px #15213a0d; }
    .config-mobile-bar > div { min-width: 0; }
    .config-mobile-bar span { display: block; font-size: .75rem; line-height: 1.5; }
    .config-mobile-bar strong { display: block; font-size: 1.35rem; line-height: 1.4; letter-spacing: -.025em; }
    .config-mobile-bar .button { padding: 12px 16px; gap: 12px; flex-shrink: 0; }
    #checkout-configuration { padding: 20px; }
    #checkout-configuration .configuration-specs > div { grid-template-columns: 1fr; gap: 2px; padding-block: 7px; }
    #checkout-configuration .configuration-specs dd { text-align: left; }
  }
  @media (max-width: 390px) {
    .hero h1 { font-size: 3rem; }
    .project-board { padding: 21px 17px; }
    .project-row { padding-inline: 10px; }
    .project-icon { display: none; }
    .project-row strong { font-size: .875rem; }
    .qr-section { grid-template-columns: 1fr; }
    .qr-section canvas { margin-inline: auto; }
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
}

.plan-period-offers { display:grid; gap:12px; margin:22px 0; padding:16px; background:#fff5bc; border-left:3px solid #1649ef; }
.plan-period-offers strong,.plan-period-offers span,.plan-period-offers small { display:block; }
.plan-period-offers strong { font-size:.9375rem; color:#1649ef; }
.plan-period-offers span { font-size:.875rem; margin-top:4px; }
.plan-period-offers small { font-size:.8125rem; margin-top:3px; }
.plan-period-offers s { color:#67718a; margin-right:5px; }
.period-breakdown { padding:18px 0 8px; }
.saving-line { color:#1649ef; font-weight:700; }
#quote-reference { overflow-wrap:anywhere; }
.offshore-benefits .steps-grid { margin-bottom:20px; padding-bottom:28px; }
.offshore-benefits h3 { font-size:1.5rem; margin:16px 0; }
.offshore-benefits .text-link { margin-top:18px; }
.offshore-plan-note { margin:30px 0; padding:22px; background:#f0f4ff; border-left:3px solid #1649ef; }
.offshore-plan-note h2 { font-size:1.6rem; margin:0 0 15px !important; }
.offshore-plan-note a,.checkout-contact a { color:#1649ef; text-decoration:underline; }
.checkout-contact { padding:22px; margin:26px 0 30px; border:1px solid #aebddd; border-radius:8px; background:#f5f8ff; }
.checkout-contact h2 { font-size:1.45rem; margin-bottom:15px; }
.checkout-contact > p { font-size:.9375rem; margin-bottom:20px; }
.checkout-contact .small { font-size:.8125rem; margin:12px 0 18px !important; }
.contact-actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.contact-actions .button { padding:11px 15px; min-height:44px; font-size:.875rem; }
.contact-actions .text-button { margin:0; }
.contact-error { color:#932b24; font-size:.875rem !important; margin:10px 0 !important; }
.contact-error:empty,#contact-status:empty { display:none; }
#contact-email[aria-invalid="true"] { border-color:#a2352e; outline:1px solid #a2352e; }
@media(max-width:760px) { .offshore-benefits { padding-top:20px; } .checkout-contact { padding:20px; } .hero h1 { overflow-wrap:normal; font-size:clamp(2.7rem,9.3vw,4.1rem); } }

/* Editorial pages share the existing PrivateHostLab type, color and card system. */
@layer components {
  .editorial-breadcrumbs { padding-top:24px; font-size:.8125rem; color:var(--muted); }
  .editorial-breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:7px 12px; padding:0; }
  .editorial-breadcrumbs li + li::before { content:'/'; margin-right:12px; color:#8191b0; }
  .editorial-breadcrumbs a:hover { text-decoration:underline; }
  .editorial-breadcrumbs + .page-head { padding-top:36px; }
  .editorial-article { grid-template-columns:240px minmax(0,1fr); gap:65px; }
  .editorial-article .prose { min-width:0; max-width:850px; }
  .editorial-article aside { max-height:calc(100vh - 40px); overflow-y:auto; }
  .editorial-article aside nav a { padding:7px 0; line-height:1.45; }
  .editorial-article .prose section { scroll-margin-top:25px; }
  .editorial-article .prose ul, .editorial-article .prose ol, .editorial-plan-notes ul { padding-left:24px; margin:22px 0; }
  .editorial-article .prose li, .editorial-plan-notes li { padding:4px 0 4px 5px; line-height:1.75; }
  .editorial-article .prose a, .editorial-faq a, .editorial-extra a, .editorial-facts p a, .editorial-plan-notes a, .editorial-resource-group p a, .editorial-glossary a, .editorial-paths a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
  .editorial-article .prose a.button.primary { color:#fff; text-decoration:none; }
  .editorial-byline { font-size:.8125rem !important; color:var(--muted); border-bottom:1px solid var(--line); padding-bottom:20px; margin-bottom:34px !important; }
  .editorial-table { margin:25px 0 30px; max-width:100%; border:1px solid var(--line); border-radius:8px; }
  .editorial-table table { width:100%; border-collapse:collapse; }
  .editorial-table-hint { display:none; }
  .editorial-table caption { text-align:left; padding:16px 20px; font-size:.875rem; font-weight:650; background:var(--paper); color:var(--ink); }
  .editorial-table th, .editorial-table td { padding:16px; font-size:.875rem; line-height:1.6; vertical-align:top; min-width:140px; }
  .editorial-table tbody th { font-weight:600; background:#f8faff; }
  .editorial-table a { overflow-wrap:anywhere; }
  .editorial-article code { background:var(--paper); font-size:.9em; padding:2px 5px; overflow-wrap:anywhere; }
  .editorial-example { background:#fff9da; border-left:4px solid var(--blue); border-radius:0 8px 8px 0; padding:24px; margin:28px 0; }
  .editorial-example h3 { margin:15px 0; font-size:1.4rem; }
  .editorial-example p { font-size:.9375rem !important; }
  .editorial-example .editorial-table { background:white; }
  .editorial-sources { border-top:1px solid var(--line); padding-top:30px; }
  .editorial-sources p, .editorial-sources li { font-size:.875rem !important; }
  .editorial-jump { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
  .editorial-jump a { border:1px solid #adb9d4; border-radius:5px; padding:11px 16px; font-size:.875rem; font-weight:600; }
  .editorial-jump a:hover { background:#edf2ff; border-color:var(--blue); }
  .editorial-paths { padding:30px; background:var(--paper); border-left:4px solid var(--blue); margin:32px 0 55px; }
  .editorial-paths h2 { font-size:1.75rem; margin-bottom:18px; }
  .editorial-paths ol { padding-left:24px; }
  .editorial-paths li { padding:6px 0 6px 4px; line-height:1.7; }
  .editorial-resource-group { margin:60px 0 0; scroll-margin-top:25px; }
  .editorial-resource-group > h2 { margin-bottom:22px; }
  .editorial-resource-group > p { max-width:850px; margin:16px 0 28px; }
  .editorial-card-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:26px; }
  .editorial-card { padding:30px; border:1px solid var(--line); border-top:4px solid var(--blue); border-radius:8px; background:#f8faff; }
  .editorial-card:nth-child(2) { border-top-color:#d6b634; background:#fffcf0; }
  .editorial-card h2, .editorial-card h3 { font-size:1.65rem; line-height:1.2; margin:20px 0 18px; max-width:450px; }
  .editorial-card p { margin-bottom:25px; }
  .editorial-bottom-links { display:flex; flex-wrap:wrap; gap:14px 28px; margin-top:30px; }
  .editorial-bottom-links a { color:var(--blue); text-decoration:underline; }
  .editorial-glossary { display:grid; grid-template-columns:1fr 1fr; gap:0 36px; margin-top:30px; }
  .editorial-glossary > div { padding:22px 0; border-top:1px solid var(--line); scroll-margin-top:25px; }
  .editorial-glossary dt { font-weight:650; font-size:1.125rem; margin-bottom:8px; }
  .editorial-glossary dt a { color:var(--ink); text-decoration:none; }
  .editorial-glossary dd { font-size:.9375rem; line-height:1.75; color:var(--muted); }
  .editorial-faq { grid-template-columns:260px minmax(0,1fr); }
  .editorial-faq aside > p { font-size:.9375rem; margin-top:25px; }
  .editorial-category-nav { display:grid; gap:4px; margin-top:22px; }
  .editorial-category-nav a { display:flex; align-items:baseline; gap:12px; justify-content:space-between; padding:10px 0; line-height:1.5; font-size:.9375rem; text-decoration:none; }
  .editorial-category-nav span { color:var(--muted); font-size:.8125rem; }
  .editorial-faq-group { margin-bottom:45px; scroll-margin-top:25px; }
  .editorial-faq-group > h2 { font-size:1.8rem; margin:0 0 18px; }
  .editorial-faq .faq { scroll-margin-top:25px; }
  .editorial-faq .faq summary { align-items:start; }
  .editorial-faq-answer { padding-bottom:22px; }
  .editorial-faq-answer p { margin-bottom:10px; }
  .editorial-facts > section { margin:42px 0; scroll-margin-top:25px; }
  .editorial-facts h2 { font-size:2rem; margin:0 0 20px; }
  .editorial-facts p, .editorial-extra p { max-width:900px; margin-bottom:22px; }
  .editorial-extra > h2 { font-size:2rem; margin:28px 0 20px; }
  .editorial-plan-notes { border-top:1px solid var(--line); margin-top:30px; padding-top:5px; }
  .editorial-plan-notes h3 { font-size:1.25rem; margin:26px 0 15px; }
}
@layer responsive {
  @media (max-width:1100px) { .editorial-article { gap:35px; grid-template-columns:210px minmax(0,1fr); } .editorial-faq { grid-template-columns:220px minmax(0,1fr); gap:35px; } }
  @media (max-width:760px) {
    .editorial-breadcrumbs { padding-top:20px; font-size:.75rem; }
    .editorial-breadcrumbs + .page-head { padding-top:30px; }
    .editorial-article, .editorial-faq, .editorial-card-grid, .editorial-glossary { grid-template-columns:minmax(0,1fr); }
    .editorial-article aside { max-height:none; overflow:visible; padding:20px; background:var(--paper); border-radius:7px; }
    .editorial-article aside .eyebrow { display:block; margin-top:23px; }
    .editorial-article aside nav { display:grid; }
    .editorial-article aside nav a { font-size:.875rem; }
    .editorial-article .prose { max-width:100%; }
    .editorial-example { padding:18px; }
    .editorial-table th, .editorial-table td { padding:12px; }
    .editorial-table-hint { display:block; margin:18px 0 -12px !important; font-size:.75rem !important; color:var(--muted); }
    .editorial-table caption { padding:14px; }
    .editorial-card { padding:25px; }
    .editorial-card h2, .editorial-card h3 { font-size:1.5rem; }
    .editorial-paths { padding:23px; margin-bottom:35px; }
    .editorial-resource-group { margin-top:45px; }
    .editorial-jump { gap:8px; }
    .editorial-jump a { padding:10px 12px; font-size:.8125rem; }
    .editorial-faq-group > h2 { font-size:1.55rem; }
    .editorial-facts h2, .editorial-extra > h2 { font-size:1.7rem; }
  }
}
.location-home { border-top: 1px solid var(--line, #d9dedf); }
.location-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.location-card { position:relative; border:1px solid #cfd8ee; border-radius:18px; padding:28px 24px; background:#eef3ff; overflow:hidden; }
.location-card:nth-child(2n) { background:#fff9d7; border-color:#e6dda5; }
.location-card h2, .location-card h3 { position:relative; margin:24px 0 16px; }
.location-card p { position:relative; max-width:42ch; }
.location-code { display:block; text-align:right; font-size:48px; letter-spacing:-3px; line-height:1; font-weight:800; color:#1649ef; opacity:.18; margin-bottom:20px; }
.location-all { display:inline-block; margin-top:26px; }
.country-sections { grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.country-sections .location-card { padding:36px; scroll-margin-top:110px; }
.location-actions { display:grid; gap:12px; margin-top:28px; }
.location-plans { padding-top:64px; scroll-margin-top:110px; }
.location-offers { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; margin-top:28px; }
.location-page .editorial-paths { margin-top:48px; }
@media(max-width:1000px) { .location-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .location-offers { grid-template-columns:1fr; } }
@media(max-width:600px) { .location-grid { grid-template-columns:1fr; } .country-sections .location-card { padding:26px; } .location-card h2 { font-size:32px; } .location-code { margin-bottom:12px; } .location-card .text-link { line-height:1.6; } }
