:root {
  --ink: #132033;
  --navy: #0b172a;
  --navy-2: #10233e;
  --teal: #087f78;
  --teal-dark: #05645f;
  --teal-soft: #dff3ef;
  --gold: #e7ad3c;
  --gold-soft: #fff3d6;
  --sand: #f4f1e9;
  --paper: #fbfaf7;
  --white: #fff;
  --muted: #5d6878;
  --line: #dfe4e8;
  --danger: #9d2c2c;
  --success: #156b52;
  --shadow-sm: 0 8px 24px rgba(11, 23, 42, 0.08);
  --shadow-lg: 0 28px 80px rgba(11, 23, 42, 0.15);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --content: 760px;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-underline-offset: 0.18em; }
a:hover { color: var(--teal); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 0.7em; color: var(--navy); font-weight: 750; letter-spacing: -0.035em; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.02em; }
p { margin: 0 0 1.25rem; }
ul, ol { padding-left: 1.25rem; }
::selection { background: var(--gold-soft); color: var(--navy); }

.shell { width: min(calc(100% - 2rem), var(--shell)); margin-inline: auto; }
.shell--content { width: min(calc(100% - 2rem), var(--content)); }
.section { padding: clamp(4.25rem, 8vw, 7.5rem) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.78); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.content-section { padding-top: 3.75rem; padding-bottom: 6rem; }

.skip-link { position: fixed; z-index: 9999; top: 1rem; left: 1rem; transform: translateY(-200%); padding: .75rem 1rem; background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid rgba(19,32,51,.08); background: rgba(255,255,255,.94); backdrop-filter: blur(18px); }
.site-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--navy); font-weight: 800; font-size: 1.24rem; text-decoration: none; letter-spacing: -0.04em; }
.brand:hover { color: var(--navy); }
.brand__mark { width: 34px; height: 34px; border-radius: 9px 9px 9px 2px; display: grid; place-items: center; background: var(--teal); color: var(--white); font-size: 1rem; }
.custom-logo { display: block; max-height: 46px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__list { display: flex; align-items: center; gap: .25rem; padding: 0; margin: 0; list-style: none; }
.site-nav__list a { display: block; padding: .75rem .68rem; color: var(--ink); font-size: .92rem; font-weight: 650; text-decoration: none; border-radius: 8px; }
.site-nav__list a:hover, .site-nav__list .current-menu-item > a { background: var(--sand); color: var(--teal-dark); }
.site-nav__actions { display: flex; align-items: center; gap: 1rem; padding-left: .5rem; }
.text-link { color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); cursor: pointer; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .5rem; padding: .82rem 1.35rem; border: 1px solid var(--teal); border-radius: 999px; background: var(--teal); color: var(--white); font-weight: 760; line-height: 1.2; text-decoration: none; box-shadow: 0 8px 20px rgba(8,127,120,.16); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--teal-dark); color: var(--white); box-shadow: 0 12px 26px rgba(8,127,120,.22); }
.button:focus-visible, .site-nav a:focus-visible, .nav-toggle:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button--compact { min-height: 42px; padding: .65rem 1rem; font-size: .88rem; }
.button--secondary { border-color: var(--line); background: var(--white); color: var(--navy); box-shadow: none; }
.button--secondary:hover { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-dark); }
.button--light { border-color: var(--white); background: var(--white); color: var(--navy); box-shadow: none; }
.button--light:hover { background: var(--sand); color: var(--navy); }
.button--ghost { border-color: rgba(255,255,255,.35); background: transparent; color: var(--white); box-shadow: none; }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.text-arrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--teal-dark); font-weight: 760; text-decoration: none; }

.hero { overflow: hidden; position: relative; padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem); background: linear-gradient(135deg, #fbfaf7 0%, #eef7f4 55%, #fff7e4 100%); }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; top: -220px; right: -140px; border: 80px solid rgba(8,127,120,.07); border-radius: 50%; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0,1.16fr) minmax(340px,.84fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero h1 { max-width: 830px; }
.hero__lead { max-width: 700px; color: #425063; font-size: clamp(1.1rem, 2vw, 1.28rem); }
.eyebrow { margin: 0 0 1rem; color: var(--teal-dark); font-size: .78rem; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--light { color: #83d9cf; }
.microcopy { max-width: 650px; margin: 1.3rem 0 0; color: var(--muted); font-size: .82rem; }
.decision-card { position: relative; padding: 1.45rem; border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); transform: rotate(1.5deg); }
.decision-card::after { content: ""; position: absolute; z-index: -1; inset: 18px -16px -18px 16px; border-radius: var(--radius-lg); background: var(--navy); opacity: .08; }
.decision-card__top { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; font-weight: 700; }
.status-pill { padding: .25rem .55rem; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); }
.decision-card__score { padding: 1.7rem 0; }
.decision-card__score strong { display: block; margin-top: .4rem; color: var(--navy); font-family: var(--font-editorial); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; line-height: 1.35; }
.decision-card__label { color: var(--muted); font-size: .8rem; }
.signal-list { display: grid; gap: .65rem; padding: 1rem; margin: 0; border-radius: var(--radius-sm); background: var(--paper); list-style: none; font-size: .84rem; }
.signal-list li { display: flex; align-items: center; gap: .7rem; }
.signal { width: 10px; height: 10px; border-radius: 3px; background: var(--teal); }
.signal--gold { background: var(--gold); }.signal--navy { background: var(--navy); }.signal--soft { background: #91a0b2; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip__grid div { display: grid; gap: .15rem; padding: 1.35rem 1.5rem; border-right: 1px solid var(--line); }
.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip strong { color: var(--navy); font-size: .92rem; }
.trust-strip span { color: var(--muted); font-size: .78rem; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 3rem; margin-bottom: 2.7rem; }
.section-heading h2 { max-width: 720px; }
.section-heading > p { max-width: 520px; color: var(--muted); }
.card-grid { display: grid; gap: 1rem; }
.card-grid--4 { grid-template-columns: repeat(4,1fr); }
.domain-card { min-height: 280px; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); text-decoration: none; transition: border .18s ease, transform .18s ease, box-shadow .18s ease; }
.domain-card:hover { transform: translateY(-5px); border-color: rgba(8,127,120,.45); color: var(--ink); box-shadow: var(--shadow-sm); }
.domain-card > span { display: inline-grid; width: 38px; height: 38px; margin-bottom: 3rem; place-items: center; border-radius: 10px; background: var(--teal-soft); color: var(--teal-dark); font-size: .75rem; font-weight: 800; }
.domain-card p { color: var(--muted); font-size: .9rem; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.step-list { display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.step-list li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.2rem; border-radius: var(--radius); background: rgba(255,255,255,.72); }
.step-list li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-size: .82rem; font-weight: 800; }
.step-list strong { color: var(--navy); }.step-list p { margin: .2rem 0 0; color: var(--muted); font-size: .9rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 1rem; }
.price-card { display: flex; flex-direction: column; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-card--featured { border: 2px solid var(--teal); box-shadow: var(--shadow-sm); }
.price-card__label { min-height: 2.5em; color: var(--teal-dark); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.price-card h3 { font-size: 2.25rem; }
.price-card > p:not(.price-card__label) { flex-grow: 1; color: var(--muted); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band > div:first-child { max-width: 660px; }.cta-band p { color: rgba(255,255,255,.72); }

.page-hero, .article-hero { padding: clamp(3rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, var(--paper), #eff8f5); }
.page-hero h1, .article-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.page-hero__lead { max-width: 760px; color: var(--muted); font-size: 1.15rem; }
.breadcrumbs { margin-bottom: 2rem; font-size: .78rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; list-style: none; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: .35rem; color: #a0a9b4; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.entry-content > * { margin-top: 0; margin-bottom: 1.35rem; }
.entry-content h2 { margin-top: 2.7rem; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.entry-content h3 { margin-top: 2rem; }
.entry-content ul, .entry-content ol { display: grid; gap: .6rem; }
.entry-content blockquote { margin: 2rem 0; padding: 1.5rem 1.7rem; border-left: 4px solid var(--teal); background: var(--teal-soft); color: var(--navy); }
.entry-content .ps-callout { padding: 1.4rem; border-radius: var(--radius-sm); background: var(--sand); }
.entry-content .ps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-block: 2rem; }
.entry-content .ps-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.entry-content .ps-card h3 { margin-top: 0; }
.entry-content .ps-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.entry-content .ps-price { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2rem 0; }
.entry-content .ps-price > div { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); }
.entry-content .ps-price strong { display: block; margin: .6rem 0; color: var(--navy); font-size: 1.8rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: .82rem; }
.article-boundary { margin-top: 3rem; padding: 1.2rem; border-radius: var(--radius-sm); background: var(--sand); font-size: .9rem; }
.article-next { padding: 4rem 0; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card__link { display: block; height: 100%; color: var(--ink); text-decoration: none; }
.article-card__visual { height: 150px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--teal-dark)); color: rgba(255,255,255,.22); font-family: var(--font-editorial); font-size: 5rem; }
.article-card__body { padding: 1.4rem; }
.article-card h2 { font-size: 1.35rem; }
.article-card p { color: var(--muted); font-size: .9rem; }
.article-card__meta { color: var(--teal-dark) !important; font-size: .72rem !important; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.article-card:hover { border-color: rgba(8,127,120,.5); box-shadow: var(--shadow-sm); }
.empty-state { padding: clamp(3rem, 7vw, 6rem); text-align: center; }
.pagination .nav-links { display: flex; gap: .5rem; justify-content: center; margin-top: 2.5rem; }
.pagination a, .pagination span { min-width: 42px; min-height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; text-decoration: none; }

.ps-faq { border-top: 1px solid var(--line); }
.ps-faq__item { border-bottom: 1px solid var(--line); }
.ps-faq__button { width: 100%; display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 750; cursor: pointer; }
.ps-faq__button::after { content: "+"; color: var(--teal); font-size: 1.4rem; }
.ps-faq__button[aria-expanded="true"]::after { content: "−"; }
.ps-faq__panel { padding: 0 0 1.2rem; color: var(--muted); }

.ps-form { display: grid; gap: 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.ps-form__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.ps-field { display: grid; gap: .35rem; }
.ps-field label { color: var(--navy); font-size: .88rem; font-weight: 750; }
.ps-field input, .ps-field textarea, .ps-field select { width: 100%; border: 1px solid #bdc6cf; border-radius: 8px; background: var(--white); color: var(--ink); padding: .75rem .85rem; }
.ps-field textarea { min-height: 150px; resize: vertical; }
.ps-field--full { grid-column: 1 / -1; }
.ps-checkbox { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .86rem; }
.ps-checkbox input { margin-top: .3rem; }
.ps-form__note { color: var(--muted); font-size: .78rem; }
.ps-form__honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.ps-alert { padding: 1rem; margin-bottom: 1rem; border-radius: var(--radius-sm); background: var(--teal-soft); color: var(--success); }
.ps-alert--error { background: #fbe6e6; color: var(--danger); }

.site-footer { padding-top: 4.5rem; background: var(--navy); color: rgba(255,255,255,.68); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 3rem; padding-bottom: 3.5rem; }
.brand--footer { color: var(--white); }.brand--footer:hover { color: var(--white); }
.site-footer__brand p { max-width: 340px; margin-top: 1.2rem; font-size: .9rem; }
.site-footer__boundary { color: rgba(255,255,255,.45); font-size: .76rem !important; }
.footer-heading { color: var(--white); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: var(--white); }
.site-footer__base { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }
.site-footer__base p { margin: 0; }

@media (max-width: 1080px) {
  .site-nav__list a { padding-inline: .45rem; font-size: .86rem; }
  .site-nav__actions .text-link { display: none; }
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1.3fr repeat(3,.8fr); gap: 1.8rem; }
}

@media (max-width: 959px) {
  .site-header__inner { min-height: 70px; }
  .nav-toggle { display: inline-flex; align-items: center; gap: .55rem; padding: .55rem; font-weight: 750; }
  .nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after { width: 22px; height: 2px; display: block; position: relative; background: var(--navy); transition: transform .18s ease; }
  .nav-toggle__icon::before, .nav-toggle__icon::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__icon::before { top: -7px; }.nav-toggle__icon::after { top: 7px; }
  .site-nav { display: none; position: fixed; inset: 70px 0 0; height: calc(100vh - 70px); height: calc(100dvh - 70px); overflow-y: auto; align-items: stretch; flex-direction: column; gap: 1rem; padding: 1.2rem 1rem 2rem; background: var(--white); }
  .site-nav.is-open { display: flex; }
  .site-nav__list { align-items: stretch; flex-direction: column; }
  .site-nav__list a { padding: .9rem; font-size: 1rem; }
  .site-nav__actions { align-items: stretch; flex-direction: column; padding: 1rem 0 0; border-top: 1px solid var(--line); }
  .site-nav__actions .text-link { display: block; padding: .7rem; }
  .hero__grid { grid-template-columns: 1fr; }.decision-card { max-width: 620px; transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .split { grid-template-columns: 1fr; }
  .pricing-grid, .article-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: repeat(2,1fr); }.site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell, .shell--content { width: min(calc(100% - 1.25rem), var(--shell)); }
  .hero { padding-top: 3.5rem; }
  .button-row { align-items: stretch; flex-direction: column; }.button-row .button { width: 100%; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); }.trust-strip__grid div:nth-child(2) { border-right: 0; }.trust-strip__grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid--4, .pricing-grid, .article-grid, .entry-content .ps-grid, .entry-content .ps-price, .ps-form__grid { grid-template-columns: 1fr; }
  .domain-card { min-height: 230px; }.domain-card > span { margin-bottom: 2rem; }
  .site-footer__grid { grid-template-columns: 1fr; }.site-footer__brand { grid-column: auto; }
  .site-footer__base { align-items: flex-start; flex-direction: column; }
  .ps-field--full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .site-footer, .button-row, .article-next { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
