:root {
  color: #071d49;
  background: #f5f9fd;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --blue: #075fbe;
  --blue-dark: #064f9f;
  --navy: #061d4f;
  --footer: #05294d;
  --green: #078443;
  --green-hover: #066f39;
  --yellow: #f7c844;
  --ice: #eef7ff;
  --surface: #ffffff;
  --bg: #f5f9fd;
  --border: #d3e1ee;
  --muted: #4e6379;
  --shadow: 0 14px 38px rgba(4, 40, 84, 0.09);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  color: var(--navy);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(.dialog-backdrop.is-open) {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 1050px;
}

.section {
  padding-block: 74px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 92px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e4edf5;
  box-shadow: 0 4px 16px rgba(3, 36, 78, 0.04);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 170px;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-nav > a:not(.button),
.primary-nav > button:not(.button) {
  padding: 12px 0;
  color: var(--navy);
  background: none;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.primary-nav > button:not(.button):hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7, 132, 67, 0.17);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 11px 25px rgba(7, 132, 67, 0.24);
  transform: translateY(-1px);
}

.button--block {
  width: 100%;
}

.nav-cta {
  margin-left: 70px;
  min-width: 146px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0863bf;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  min-height: 500px;
  align-items: center;
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 60px;
}

.hero h1 {
  max-width: 654px;
  margin: 0;
  font-size: clamp(38px, 2.85vw, 41px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-copy > p {
  max-width: 510px;
  margin: 23px 0 0;
  color: #eef7ff;
  font-size: 19px;
  line-height: 1.5;
}

.button--hero {
  min-height: 58px;
  margin-top: 28px;
  padding-inline: 27px;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.hero-status span {
  width: 13px;
  height: 13px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.hero-art img {
  position: absolute;
  top: 50%;
  right: -155px;
  width: 900px;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.catalog {
  background: var(--bg);
}

.section-title {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title > span,
.overline {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h2,
.product-details h2,
.interest-card h2,
.info-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.section-title p {
  margin: 12px auto 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  box-shadow: 0 7px 24px rgba(4, 40, 84, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: #adc8de;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card h3 {
  min-height: 58px;
  margin: 0 0 17px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 9px;
  color: #5d4600;
  background: var(--yellow);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.format {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.card-benefits {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.card-benefits li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: #304a66;
  font-size: 14px;
  line-height: 1.45;
}

.card-benefits svg {
  margin-top: 2px;
  color: var(--green);
}

.card-actions {
  display: grid;
  gap: 14px;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  justify-self: center;
  padding: 10px 4px 2px;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding: 30px 12px;
  background: var(--ice);
  border: 1px solid #c8e2f8;
  border-radius: 11px;
}

.benefits-strip article {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 17px;
  padding: 0 28px;
}

.benefits-strip article + article {
  border-left: 1px solid #c7ddee;
}

.benefits-strip svg {
  color: var(--blue);
}

.benefits-strip h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.benefits-strip p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.how {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  gap: 14px;
}

.step {
  position: relative;
  text-align: center;
}

.step-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-inline: auto;
  color: var(--blue);
  background: var(--ice);
  border-radius: 50%;
}

.step-number {
  position: absolute;
  top: 2px;
  left: calc(50% - 59px);
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin: 18px 0 8px;
  font-size: 17px;
}

.step p {
  max-width: 255px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.step-arrow {
  color: #a7b9ca;
}

.notice {
  display: flex;
  max-width: 900px;
  align-items: center;
  gap: 19px;
  margin: 48px auto 0;
  padding: 22px 30px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 7px solid var(--yellow);
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(4, 40, 84, 0.035);
}

.notice svg {
  flex: 0 0 auto;
  color: #e2ae13;
}

.notice p {
  margin: 0;
}

.faq {
  padding-top: 16px;
  background: #fff;
}

.faq-inner {
  max-width: 940px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 19px;
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 19px 18px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding-top: 24px;
  background: #fff;
}

.cta-panel {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 164px;
  padding: 34px 52px;
  color: #fff;
  background: #075cae;
  border-radius: 10px;
  box-shadow: 0 17px 35px rgba(3, 55, 109, 0.18);
}

.cta-panel > svg {
  color: #fff;
}

.cta-panel h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cta-panel p {
  margin: 7px 0 0;
  color: #e4f1fc;
}

.cta-panel .button {
  min-width: 230px;
}

.site-footer {
  color: #d6e5f2;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr 1fr;
  gap: 50px;
  padding-block: 54px 42px;
}

.brand--inverse {
  width: 184px;
}

.brand--inverse img {
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p {
  max-width: 265px;
  margin: 17px 0 0;
  color: #b9ccdd;
  font-size: 14px;
}

.footer-grid h2 {
  margin: 2px 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a,
.footer-grid > div > p {
  margin: 0 0 10px;
  color: #d4e2ee;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 7px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.footer-bottom {
  padding-block: 19px;
  color: #9fb6ca;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  text-align: center;
}

.product-hero {
  color: #fff;
  background: var(--blue);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  min-height: 620px;
  align-items: center;
  gap: 70px;
  padding-block: 64px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: #e4f1fc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.back-link:hover {
  text-decoration: underline;
}

.status--light {
  display: flex;
  margin-bottom: 18px;
}

.product-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.product-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #e4f1fc;
  font-size: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 26px;
  color: #e9f5ff;
  font-size: 14px;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-cover {
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
}

.single-cover img {
  width: min(88%, 390px);
  max-height: 490px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0, 21, 55, 0.22));
}

.product-details {
  background: #fff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 80px;
}

.product-detail-grid > article > p {
  max-width: 730px;
  color: var(--muted);
  font-size: 17px;
}

.topic-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.topic-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #294663;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.topic-list svg {
  color: var(--green);
}

.interest-card {
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.interest-card > svg {
  color: var(--yellow);
}

.interest-card h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 24px;
}

.interest-card p {
  margin-bottom: 24px;
  color: #c8d7e5;
}

.related {
  background: var(--bg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-grid a {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  text-decoration: none;
  font-weight: 720;
}

.related-grid a:hover {
  border-color: #adc8de;
  box-shadow: var(--shadow);
}

.info-page,
.not-found {
  min-height: 65vh;
  padding-block: 110px;
  background: #fff;
}

.info-page .back-link--dark {
  color: var(--blue);
}

.info-page h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
}

.info-page p,
.not-found p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.not-found {
  display: grid;
  place-items: center;
  text-align: center;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 22, 54, 0.72);
  backdrop-filter: blur(7px);
}

.dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  padding: 38px;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(1, 25, 56, 0.34);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.dialog h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.035em;
}

.dialog > p,
.success-state > p {
  color: var(--muted);
}

.dialog form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.dialog label:not(.consent) {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.dialog input,
.dialog select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #b9cad9;
  border-radius: 8px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  min-height: auto;
  height: 18px;
  margin-top: 1px;
}

.success-state {
  text-align: center;
}

.success-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

@media (max-width: 1120px) {
  .nav-cta {
    margin-left: 25px;
  }

  .primary-nav {
    gap: 25px;
  }

  .hero-art img {
    right: -210px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 365px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .menu-toggle {
    display: none;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .js .primary-nav {
    display: none;
  }

  .js .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button),
  .primary-nav > button:not(.button) {
    width: 100%;
    padding: 13px;
    text-align: left;
  }

  .nav-cta {
    width: 100%;
    margin: 8px 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .hero-copy {
    padding: 46px 0 10px;
  }

  .hero-art {
    min-height: 370px;
  }

  .hero-art img {
    top: 44%;
    right: 50%;
    width: 730px;
    transform: translate(50%, -50%);
  }

  .benefits-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits-strip article {
    padding: 22px 26px;
  }

  .benefits-strip article + article {
    border-top: 1px solid #c7ddee;
    border-left: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step-arrow {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 68px 1fr;
  }

  .cta-panel .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-hero-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .single-cover {
    width: min(100%, 520px);
    justify-self: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 590px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header {
    height: 78px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    height: 50px;
  }

  .primary-nav {
    top: 78px;
  }

  .section {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero .button,
  .product-hero .button {
    width: 100%;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-art img {
    right: auto;
    left: 50%;
    width: min(600px, 158vw);
    transform: translate(-61.8%, -50%);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 390px;
  }

  .benefits-strip article {
    grid-template-columns: 42px 1fr;
    padding-inline: 18px;
  }

  .notice {
    align-items: flex-start;
    padding: 19px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: left;
  }

  .cta-panel > svg {
    width: 54px;
    height: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    min-height: auto;
    gap: 45px;
    padding-block: 50px;
  }

  .product-copy h1 {
    font-size: 43px;
  }

  .single-cover {
    min-height: 390px;
  }

  .dialog {
    padding: 32px 23px 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration and icon-font equivalents. */
.admin-bar .site-header {
  top: 32px;
}

.primary-nav > a:not(.button) {
  padding: 12px 0;
  color: var(--navy);
  background: none;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle i,
.button i,
.back-link i,
.product-meta i,
.related-grid i,
.dialog-close i,
.success-icon i {
  line-height: 1;
}

.menu-toggle i {
  font-size: 24px;
}

.format i {
  font-size: 19px;
}

.card-benefits i {
  margin-top: 2px;
  color: var(--green);
  font-size: 17px;
}

.benefits-strip > article > i {
  color: var(--blue);
  font-size: 43px;
}

.step-icon i {
  font-size: 44px;
}

.step-arrow {
  font-size: 30px;
}

.notice > i {
  flex: 0 0 auto;
  color: #e2ae13;
  font-size: 29px;
}

.faq-list summary i {
  font-size: 19px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.cta-panel > i {
  color: #fff;
  font-size: 70px;
}

.interest-card > i {
  color: var(--yellow);
  font-size: 36px;
}

.dialog-backdrop {
  display: none;
}

.dialog-backdrop.is-open {
  display: grid;
}

body.dialog-open {
  overflow: hidden;
}

.footer-interest {
  padding: 0;
  color: #d4e2ee;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.footer-interest:hover {
  color: #fff;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-error {
  padding: 11px 13px;
  color: #8a211e !important;
  background: #fff1f0;
  border: 1px solid #efb5b1;
  border-radius: 8px;
  font-size: 13px;
}

.entry-content {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.entry-content p {
  margin: 18px 0 0;
}

.post-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.post-list article {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.post-list h2 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .primary-nav > a:not(.button) {
    width: 100%;
    padding: 13px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--blue);
}
