/*
 * Minimal styles for the meaningful HTML shown before the React application
 * starts. Every visual rule is scoped to the static shell, so it stops
 * applying as soon as React replaces the shell inside #root.
 */
body:has(> #root > .seo-static-shell) {
  margin: 0;
  background: #faf9f6;
}

body:has(> #root > .seo-static-shell) * {
  box-sizing: border-box;
}

.seo-static-shell {
  --seo-ink: #211d1c;
  --seo-ink-soft: #5e5652;
  --seo-red: #c93232;
  --seo-cream: #faf9f6;
  --seo-cream-deep: #f5f1e8;
  min-height: 100vh;
  background: var(--seo-cream);
  color: var(--seo-ink);
  font-family:
    "Poppins",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.seo-static-shell a {
  color: inherit;
  text-underline-offset: 0.25em;
}

.seo-static-shell a:focus-visible,
.seo-static-shell summary:focus-visible {
  outline: 2px solid var(--seo-red);
  outline-offset: 3px;
}

.seo-static-shell__header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(33, 29, 28, 0.1);
  background: rgba(250, 249, 246, 0.96);
}

.seo-static-shell__header > a:first-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.seo-static-shell__header img {
  display: block;
  width: auto;
  height: 28px;
}

.seo-static-shell__header-label {
  margin-inline-start: auto;
  color: var(--seo-ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.seo-static-shell__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--seo-red);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.seo-static-shell__button:hover {
  background: var(--seo-ink);
}

.seo-static-shell__breadcrumb {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 0;
  color: var(--seo-ink-soft);
  font-size: 14px;
}

.seo-static-shell__breadcrumb a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 600;
}

.seo-static-shell__hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.seo-static-shell__hero-grid {
  display: grid;
  align-items: end;
  gap: 40px;
}

.seo-static-shell__hero-copy {
  max-width: 820px;
}

.seo-static-shell__eyebrow {
  margin: 0;
  color: var(--seo-red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-static-shell h1,
.seo-static-shell h2,
.seo-static-shell h3,
.seo-static-shell p {
  margin-block-start: 0;
}

.seo-static-shell h1,
.seo-static-shell h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

.seo-static-shell h1 {
  max-width: 920px;
  margin-block-end: 24px;
  font-size: clamp(2.7rem, 8.8vw, 5.3rem);
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.seo-static-shell__lead {
  max-width: 760px;
  margin-block-end: 0;
  color: var(--seo-ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.75;
}

.seo-static-shell__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 28px;
}

.seo-static-shell__actions > a:not(.seo-static-shell__button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--seo-red);
  font-weight: 600;
}

.seo-static-shell__card {
  padding: 24px;
  border: 1px solid rgba(33, 29, 28, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px -62px rgba(33, 29, 28, 0.7);
}

.seo-static-shell__card h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.seo-static-shell__card p {
  margin-bottom: 0;
  color: var(--seo-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.seo-static-shell__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(33, 29, 28, 0.1);
  color: var(--seo-ink-soft);
  font-size: 14px;
}

.seo-static-shell__section {
  padding: 64px 20px;
  border-top: 1px solid rgba(33, 29, 28, 0.1);
}

.seo-static-shell__section--white {
  background: #fff;
}

.seo-static-shell__section--dark {
  background: var(--seo-ink);
  color: #fff;
}

.seo-static-shell__section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.seo-static-shell__section-intro {
  max-width: 760px;
}

.seo-static-shell__section h2 {
  max-width: 780px;
  margin: 14px 0 22px;
  font-size: clamp(2.15rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.seo-static-shell__section-intro > p:last-child,
.seo-static-shell__section > p,
.seo-static-shell__section-inner > p {
  max-width: 760px;
  color: var(--seo-ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.seo-static-shell__section--dark .seo-static-shell__eyebrow {
  color: #ff9b91;
}

.seo-static-shell__section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.seo-static-shell__grid {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(33, 29, 28, 0.1);
  border-radius: 24px;
  background: rgba(33, 29, 28, 0.1);
}

.seo-static-shell__grid > section,
.seo-static-shell__grid > li {
  padding: 24px;
  background: #fffaf3;
}

.seo-static-shell__grid h3,
.seo-static-shell__requirements h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.seo-static-shell__grid p,
.seo-static-shell__requirements p {
  margin-bottom: 0;
  color: var(--seo-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.seo-static-shell__steps {
  display: grid;
  gap: 1px;
  margin: 36px 0 0;
  padding: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  list-style: none;
}

.seo-static-shell__steps li {
  padding: 28px 24px;
  background: var(--seo-ink);
}

.seo-static-shell__steps span {
  color: #ff9b91;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-static-shell__steps h3 {
  margin: 32px 0 12px;
  font-size: 20px;
}

.seo-static-shell__steps p {
  font-size: 16px;
  line-height: 1.75;
}

.seo-static-shell__requirements {
  margin-top: 32px;
  border-block: 1px solid rgba(33, 29, 28, 0.15);
}

.seo-static-shell__requirements section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(33, 29, 28, 0.1);
}

.seo-static-shell__notice {
  margin: 24px 0;
  padding: 20px;
  border-radius: 16px;
  background: var(--seo-cream-deep);
  color: var(--seo-ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.seo-static-shell__faq {
  margin-top: 32px;
  border-top: 1px solid rgba(33, 29, 28, 0.15);
}

.seo-static-shell__faq details {
  border-bottom: 1px solid rgba(33, 29, 28, 0.15);
}

.seo-static-shell__faq summary {
  min-height: 64px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.seo-static-shell__faq p {
  max-width: 780px;
  padding: 0 24px 20px 0;
  color: var(--seo-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.seo-static-shell__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  border-top: 1px solid rgba(33, 29, 28, 0.1);
}

.seo-static-shell__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--seo-ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.seo-static-shell__links a:hover {
  color: var(--seo-red);
}

.seo-static-shell__footer {
  padding: 28px 20px;
  border-top: 1px solid rgba(33, 29, 28, 0.1);
  color: var(--seo-ink-soft);
  font-size: 14px;
}

.seo-static-shell__footer-inner {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 640px) {
  .seo-static-shell__header,
  .seo-static-shell__breadcrumb,
  .seo-static-shell__hero,
  .seo-static-shell__section,
  .seo-static-shell__links,
  .seo-static-shell__footer {
    padding-inline: 32px;
  }

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

  .seo-static-shell__section-intro > p:last-child {
    font-size: 18px;
  }

  .seo-static-shell__card p,
  .seo-static-shell__grid p,
  .seo-static-shell__steps p,
  .seo-static-shell__requirements p,
  .seo-static-shell__faq p {
    font-size: 17px;
  }

  .seo-static-shell__faq summary {
    font-size: 20px;
  }
}

@media (min-width: 960px) {
  .seo-static-shell__hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 72px;
  }

  .seo-static-shell__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-static-shell__section,
  .seo-static-shell__hero {
    padding-block: 88px;
  }
}

@media (max-width: 639px) {
  .seo-static-shell__header-label {
    display: none;
  }

  .seo-static-shell__header .seo-static-shell__button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 13px;
  }
}
