@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
  --ink: #071b2d;
  --ink-soft: #24384c;
  --blue: #158eea;
  --blue-deep: #0b6fc0;
  --sky: #eaf6ff;
  --paper: #fbfcfd;
  --cream: #f5f7f8;
  --line: #d8e3eb;
  --muted: #667789;
  --gold: #c7974a;
  --success: #0d6b54;
  --shadow: 0 22px 60px rgba(7, 27, 45, 0.12);
  --shadow-soft: 0 10px 28px rgba(7, 27, 45, 0.06);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-extrabold: 800;
  --fw-black: 900;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
::selection {
  background: rgba(21, 142, 234, 0.18);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--fw-regular);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
}
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.advertorial-banner {
  background: var(--ink);
  color: #c8d6e3;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
}
/* Inline styles for HTML/CSS logo components */
.brand-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: var(--fw-black);
  font-size: 1.45rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.brand-logo-text .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: var(--fw-extrabold);
  box-shadow: 0 4px 12px rgba(21, 142, 234, 0.3);
}
.brand-logo-text span.highlight {
  color: var(--blue);
}
.footer-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: var(--fw-black);
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.footer-logo-text .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: var(--fw-extrabold);
}
.footer-logo-text span.highlight {
  color: var(--blue);
}

.header-cta {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: var(--fw-semibold);
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 27, 45, 0.14);
  padding-right: 20px;
}
.btn-primary::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 180ms ease;
}
.btn-primary:hover {
  background: #0f2d4a;
  border-color: #0f2d4a;
  box-shadow: 0 10px 24px rgba(7, 27, 45, 0.18);
}
.btn-primary:hover::after {
  transform: translateX(3px);
}
.btn-secondary {
  color: var(--blue-deep);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 142, 234, 0.4);
  border-radius: 0;
  min-height: auto;
  padding: 10px 2px 8px;
  text-decoration: none;
  box-shadow: none;
}
.btn-secondary::after {
  content: "→";
  display: inline-block;
  transition: transform 180ms ease;
}
.btn-secondary:hover {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--blue);
  transform: none;
}
.btn-secondary:hover::after {
  transform: translateX(3px);
}
.hero {
  padding: 32px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  border-bottom: 1px solid var(--line);
}
.kicker-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.disclosure, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 11px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag {
  color: var(--blue-deep);
  background: var(--sky);
  border-color: #cbe8fb;
}
.hero-grid {
  display: grid;
  gap: 24px;
}
.hero-copy h1 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: var(--fw-extrabold);
  text-wrap: pretty;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.standfirst {
  margin: 18px 0 0;
  max-width: none;
  font-size: 1.04rem;
  color: var(--ink-soft);
  font-weight: var(--fw-medium);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  max-width: 420px;
}
.hero-support {
  margin-top: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid #d6e9f7;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}
.hero-support-text {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: var(--fw-regular);
  line-height: 1.55;
}
.hero-support-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: var(--fw-regular);
}
.hero-support-list li {
  margin: 8px 0;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
  padding-top: 0;
  max-width: none;
}
.meta-item {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.meta-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.hero-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
@media (hover: hover) {
  .hero-panel:hover {
    border-color: #cbe8fb;
    box-shadow: 0 16px 36px rgba(7, 27, 45, 0.08);
  }
}
.issue-cover {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  background: radial-gradient(circle at 80% 10%, rgba(21, 142, 234, 0.14), transparent 32%), linear-gradient(145deg, #ffffff 0%, #eef7ff 62%, #ffffff 100%);
}
.cover-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cover-masthead {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(7, 27, 45, 0.08);
}
.cover-series {
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cover-edition {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: var(--fw-medium);
}
.cover-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.cover-topics li {
  padding: 6px 10px;
  border: 1px solid #cbe8fb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
}
.cover-title {
  font-family: var(--font);
  font-size: 2rem;
  line-height: 1.02;
  margin: 0;
  font-weight: var(--fw-extrabold);
}
.cover-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: var(--fw-medium);
  line-height: 1.55;
}
.cover-hook {
  padding: 16px;
  border: 1px solid #d6e9f7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}
.cover-hook-lead {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  line-height: 1.45;
}
.cover-hook-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
}
.cover-hook-list li {
  margin: 7px 0;
}
.cover-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: var(--fw-regular);
  line-height: 1.45;
}
main {
  background: var(--paper);
}
.article-wrap {
  display: grid;
  gap: 28px;
  padding: 32px 0;
}
.article-main, .article-continued {
  min-width: 0;
}
.editor-note, .insight-box, .lead-form-card, .benefit-panel, .faq-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.editor-note {
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid var(--blue);
}
.article-lead {
  margin: 0 0 20px;
  border: 1px solid #dfeaf2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}
.article-lead img {
  width: 100%;
  height: clamp(260px, 36vw, 380px);
  object-fit: cover;
  object-position: center 24%;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.editor-note p, .insight-box p, .benefit-panel p {
  margin: 0;
  color: var(--ink-soft);
}
.section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.section h2 {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: clamp(1.8rem, 7vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--fw-extrabold);
}
.section h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: var(--fw-extrabold);
}
.section p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-weight: var(--fw-regular);
}
.check-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.check-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.72) 0%, rgba(247, 251, 255, 0) 100%);
}
.check-section h2 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: clamp(1.8rem, 7vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: var(--fw-extrabold);
}
.check-section-intro {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: var(--fw-regular);
}
.check-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 22px rgba(7, 27, 45, 0.04);
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  scroll-margin-top: 96px;
}
@media (hover: hover) {
  .check-card:hover {
    border-color: #cbe8fb;
    box-shadow: 0 14px 32px rgba(7, 27, 45, 0.08);
  }
}
.check-card::before {
  content: attr(data-number);
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(21, 142, 234, 0.15);
  font-family: var(--font);
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--fw-extrabold);
}
.check-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}
.check-card h3 {
  padding-right: 2.4rem;
  font-weight: var(--fw-extrabold);
}
.check-card p, .check-card li {
  font-size: 0.94rem;
  font-weight: var(--fw-regular);
}
.check-card li {
  margin: 6px 0;
}
.insight-box {
  margin: 22px 0;
  padding: 20px;
  background: linear-gradient(90deg, rgba(21, 142, 234, 0.08), rgba(255, 255, 255, 0));
  border-left: 4px solid var(--gold);
}
.pull-quote {
  margin: 24px 0;
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, #0f2d4a 100%);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(7, 27, 45, 0.14);
}
.pull-quote p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font);
  font-size: clamp(1.45rem, 6vw, 2.1rem);
  line-height: 1.14;
  font-weight: var(--fw-extrabold);
}
.pull-quote span {
  display: block;
  margin-top: 12px;
  color: #b8d9f5;
  font-size: 0.88rem;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.benefit-panel {
  padding: 22px;
  margin: 28px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
}
.benefit-panel h2 {
  font-family: var(--font);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
}
.benefit-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.benefit-item {
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d6e9f7;
  border-radius: var(--radius);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
@media (hover: hover) {
  .benefit-item:hover {
    background: #ffffff;
    border-color: #cbe8fb;
  }
}
.benefit-item strong {
  display: block;
  margin-bottom: 4px;
  font-weight: var(--fw-medium);
}
.benefit-item span {
  font-weight: var(--fw-regular);
}
.related-section {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.section-heading h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: var(--fw-extrabold);
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
  font-weight: var(--fw-regular);
}
.related-section .section-heading p {
  max-width: none;
}
.related-grid {
  display: grid;
  gap: 14px;
}
.related-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
@media (hover: hover) {
  .related-card:hover {
    border-color: #cbe8fb;
    box-shadow: var(--shadow-soft);
  }
}
.related-card-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sky);
}
.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.related-card-body {
  padding: 18px;
}
.related-card span {
  display: inline-flex;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.related-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: var(--fw-extrabold);
}
.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: var(--fw-regular);
}
.related-card .card-action {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: var(--fw-extrabold);
  text-transform: none;
  letter-spacing: 0;
}
.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}
.sidebar-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
@media (hover: hover) {
  .sidebar-card:hover {
    border-color: #d6e9f7;
  }
}
.sidebar-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: var(--fw-extrabold);
}
.sidebar-card--note {
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  border-color: #cbe8fb;
}
.sidebar-card--note p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: var(--fw-regular);
}
.topic-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topic-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: var(--fw-regular);
  transition: color 180ms var(--ease), padding-left 180ms var(--ease);
}
@media (hover: hover) {
  .topic-list a:hover {
    color: var(--blue-deep);
    padding-left: 4px;
  }
}
.topic-list li:last-child a {
  border-bottom: 0;
}
.topic-list span {
  color: var(--blue-deep);
  font-weight: var(--fw-extrabold);
}
.form-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}
.form-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}
.form-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: var(--fw-extrabold);
}
.form-copy p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-weight: var(--fw-regular);
}
.form-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.form-points li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}
.form-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 142, 234, 0.12);
}
.lead-form-card {
  padding: 20px;
}
.lead-form {
  display: grid;
  gap: 14px;
}
.field-grid {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
}
input, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cddbe5;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 142, 234, 0.12);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}
.consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  flex: 0 0 auto;
}
.form-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: linear-gradient(135deg, #ffffff 0%, #f4faff 100%);
  border: 1px solid #d6e9f7;
  border-left: 4px solid var(--ink);
  box-shadow: 0 8px 22px rgba(7, 27, 45, 0.05);
  font-weight: var(--fw-medium);
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-success.is-visible {
  display: block;
}
.form-success.is-error {
  border-color: #f1c7c7;
  border-left-color: #b3261e;
  background: #fff7f7;
  color: #7b1c16;
}
.btn-primary.is-submitting {
  opacity: 0.88;
  cursor: wait;
}
.btn-primary.is-submitting::after {
  content: none;
}
.faq-section {
  padding: 36px 0;
  background: var(--paper);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-card {
  overflow: hidden;
}
.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 0;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-weight: var(--fw-medium);
  transition: background 180ms var(--ease);
}
@media (hover: hover) {
  .faq-button:hover {
    background: #f7fbff;
  }
}
.faq-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  font-weight: var(--fw-semibold);
}
.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--ink-soft);
  font-weight: var(--fw-regular);
}
.faq-card.is-open .faq-answer {
  display: block;
}
.faq-card.is-open .faq-icon {
  background: var(--ink);
}
.site-footer {
  background: var(--ink);
  color: #dce8f2;
  padding: 34px 0 26px;
}
.footer-grid {
  display: grid;
  gap: 22px;
}
.footer-logo {
  width: min(188px, 58vw);
  height: auto;
  margin-bottom: 16px;
}
.footer-grid h3, .footer-grid h4 {
  color: #ffffff;
  margin: 0 0 10px;
  font-weight: var(--fw-extrabold);
}
.footer-grid p {
  margin: 0 0 10px;
  color: #c4d2df;
  font-size: 0.92rem;
  font-weight: var(--fw-regular);
}
.footer-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c4d2df;
  font-size: 0.92rem;
}
.footer-list a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 180ms var(--ease);
}
@media (hover: hover) {
  .footer-list a:hover, .footer-legal-nav a:hover {
    opacity: 0.82;
    text-decoration: underline;
  }
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.footer-legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
}
.footer-legal {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.footer-legal details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.footer-legal summary {
  padding: 12px;
  color: #ffffff;
  cursor: pointer;
  font-weight: var(--fw-medium);
}
.footer-legal p {
  margin: 0;
  padding: 0 12px 12px;
  color: #c4d2df;
  font-weight: var(--fw-regular);
  font-size: 0.84rem;
  line-height: 1.5;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 16px;
  color: #b9c9d8;
  font-size: 0.82rem;
  line-height: 1.55;
}
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(7, 27, 45, 0.12);
  backdrop-filter: blur(12px);
}
.mobile-sticky .btn {
  width: 100%;
}
@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }
  .brand-logo {
    width: 188px;
  }
  .header-cta {
    display: inline-flex;
  }
  .hero-actions {
    flex-direction: row;
    max-width: none;
  }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }
  .related-grid, .benefit-grid, .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .check-grid .check-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 7px));
    justify-self: center;
  }
  .related-grid .related-card--full {
    grid-column: 1 / -1;
  }
  .mobile-sticky {
    display: none;
  }
}
@media (min-width: 940px) {
  .hero {
    padding: 42px 0 36px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
    align-items: stretch;
    gap: 28px 40px;
  }
  .hero-copy {
    grid-column: 1;
    height: 100%;
  }
  .hero-panel {
    grid-column: 2;
    height: 100%;
  }
  .article-wrap {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
    padding: 46px 0;
    align-items: start;
  }
  .article-main, .check-section, .article-continued {
    grid-column: 1;
    min-width: 0;
  }
  .sidebar {
    grid-column: 2;
    grid-row: 1 / -1;
    position: sticky;
    top: 92px;
  }
  .check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .check-grid .check-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .check-card {
    padding: 16px;
  }
  .check-card::before {
    font-size: 2.4rem;
  }
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .related-grid .related-card--full {
    grid-column: auto;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    gap: 34px;
  }
  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}