:root {
  --bg: #f6f5ef;
  --bg-2: #fcfbf7;
  --ink: #0f1728;
  --ink-soft: #40506a;
  --muted: #66768f;
  --line: rgba(15, 23, 40, 0.12);
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --lime: #d5ff56;
  --teal: #58d6c5;
  --coral: #ff7d57;
  --sky: #7ec5ff;
  --plum: #8d74ff;
  --navy: #121c31;
  --navy-soft: #1d2d4f;
  --shadow: 0 24px 80px rgba(15, 23, 40, 0.12);
  --shadow-strong: 0 30px 90px rgba(15, 23, 40, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(126, 197, 255, 0.24), transparent 22%),
    radial-gradient(circle at 92% 9%, rgba(213, 255, 86, 0.22), transparent 18%),
    radial-gradient(circle at 76% 72%, rgba(255, 125, 87, 0.12), transparent 20%),
    linear-gradient(180deg, #fffef9 0%, var(--bg) 42%, #eef4f1 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.masthead,
.hero,
.trust-band,
.section-block,
.system-band,
.insight-grid,
.guide-band,
.faq-block,
.final-cta,
.footer,
.page-shell,
.page-hero,
.feature-band,
.article-feature {
  position: relative;
  z-index: 1;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong,
.section-heading h2,
.hero h1,
.hero-board h2,
.system-copy h2,
.guide-copy h2,
.final-cta h2,
.page-copy h1,
.feature-copy h2,
.article-feature h2,
.article-shell h1,
.legal-shell h1 {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.brand strong {
  font-size: 1.2rem;
}

.eyebrow,
.kicker,
.section-label,
.card-label,
.card-overline,
.mini-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.eyebrow,
.section-label,
.card-overline {
  color: var(--coral);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topnav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.topnav a:hover,
.microcopy a:hover,
.footer a:hover,
.article-link:hover,
.page-back:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-board,
.trust-band,
.section-block,
.system-band,
.insight-panel,
.guide-band,
.faq-block,
.final-cta,
.page-shell,
.page-hero,
.feature-band,
.article-shell,
.guide-shell,
.not-found-shell,
.legal-shell {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-board,
.section-block,
.guide-band,
.faq-block,
.final-cta,
.page-shell,
.page-hero,
.feature-band,
.article-shell,
.guide-shell,
.not-found-shell,
.legal-shell {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 34px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(120deg, rgba(126, 197, 255, 0.15), rgba(213, 255, 86, 0.12));
}

.hero h1,
.page-copy h1,
.article-shell h1,
.legal-shell h1 {
  margin: 10px 0 14px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
}

.page-copy h1,
.article-shell h1,
.legal-shell h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 11ch;
}

.lede,
.page-copy p,
.article-intro,
.legal-shell p {
  margin: 0 0 22px;
  max-width: 66ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions,
.guide-actions,
.meta-links,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.page-link:focus-visible,
.article-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(88, 214, 197, 0.35);
  outline-offset: 2px;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), #f7ffba);
  box-shadow: 0 16px 28px rgba(213, 255, 86, 0.3);
}

.button-primary:hover {
  box-shadow: 0 20px 36px rgba(213, 255, 86, 0.34);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(15, 23, 40, 0.16);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 40, 0.28);
}

.button-tertiary {
  color: var(--ink-soft);
  background: transparent;
  border-color: rgba(15, 23, 40, 0.12);
}

.button-tertiary:hover {
  color: var(--ink);
  border-color: rgba(15, 23, 40, 0.24);
}

.signal-row,
.meta-pills,
.topic-pills,
.proof-list,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-row li,
.meta-pills li,
.topic-pills li,
.proof-list li,
.mini-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 40, 0.06);
  color: var(--ink-soft);
}

.hero-board {
  padding: 26px;
  background: linear-gradient(180deg, #121a2d 0%, #16243d 52%, #102335 100%);
  color: #f7fbff;
  overflow: hidden;
}

.hero-board::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 214, 197, 0.36), transparent 66%);
}

.board-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.board-card h2 {
  margin: 8px 0 10px;
  font-size: 2rem;
}

.board-card p,
.board-grid p,
.system-copy p,
.service-card p,
.insight-panel p,
.guide-copy p,
.faq-grid p,
.footer p,
.microcopy,
.page-copy p,
.feature-copy p,
.article-shell p,
.legal-shell p,
.blog-card p {
  color: inherit;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.board-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-grid span {
  color: #8fd6ff;
  font-weight: 700;
}

.board-grid strong {
  display: block;
  margin: 8px 0;
}

.hero-visual {
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual img,
.page-visual img,
.feature-visual img,
.article-feature img {
  width: 100%;
  border-radius: 22px;
}

.trust-band {
  margin-top: 18px;
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.section-block,
.faq-block,
.page-shell,
.feature-band,
.article-shell,
.legal-shell {
  margin-top: 26px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
}

.section-heading h2,
.guide-copy h2,
.final-cta h2,
.page-copy h1,
.feature-copy h2,
.article-feature h2 {
  margin: 8px 0 0;
  line-height: 1;
}

.section-heading h2,
.guide-copy h2,
.final-cta h2,
.feature-copy h2,
.article-feature h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.card-grid,
.detail-grid,
.page-grid,
.spotlight-grid,
.stats-grid {
  display: grid;
  gap: 16px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.detail-grid,
.spotlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.section-actions {
  margin-top: 22px;
}

.service-card,
.detail-card,
.spotlight-card,
.stat-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.detail-card,
.spotlight-card,
.stat-card {
  min-height: 0;
}

.service-card h3,
.insight-panel h3,
.faq-grid h3,
.detail-card h3,
.spotlight-card h3,
.stat-card h3,
.feature-copy h3,
.page-grid h3,
.blog-card h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.accent-a { box-shadow: inset 0 4px 0 var(--lime); }
.accent-b { box-shadow: inset 0 4px 0 var(--teal); }
.accent-c { box-shadow: inset 0 4px 0 var(--coral); }
.accent-d { box-shadow: inset 0 4px 0 var(--sky); }
.accent-e { box-shadow: inset 0 4px 0 var(--plum); }

.system-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 26px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 40, 0.96), rgba(33, 49, 79, 0.98));
  color: #f5fbff;
}

.system-steps,
.journey-list,
.article-list,
.legal-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.system-steps li,
.journey-list li {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-list li {
  background: rgba(15, 23, 40, 0.05);
  border-color: rgba(15, 23, 40, 0.08);
}

.journey-list strong {
  display: block;
  margin-bottom: 8px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.insight-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.guide-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin-top: 26px;
  padding: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    linear-gradient(125deg, rgba(88, 214, 197, 0.18), rgba(126, 197, 255, 0.14));
}

.guide-points,
.guide-shell ul,
.legal-shell ul,
.article-shell ul,
.article-shell ol {
  padding-left: 20px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 23, 40, 0.96);
  color: #f8fbff;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: #b6f9ef;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f8fbff;
  padding: 14px 16px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(248, 251, 255, 0.58);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(213, 255, 86, 0.72);
  box-shadow: 0 0 0 4px rgba(213, 255, 86, 0.18);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #d5ff56;
}

.microcopy {
  margin: 0;
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.faq-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(15, 23, 40, 0.04);
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 28px 32px;
  background: linear-gradient(115deg, rgba(255, 125, 87, 0.16), rgba(126, 197, 255, 0.18), rgba(213, 255, 86, 0.18));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 0;
}

.page-shell,
.article-shell,
.legal-shell,
.guide-shell,
.not-found-shell {
  width: min(calc(100% - 32px), 1120px);
  margin: 36px auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(125deg, rgba(126, 197, 255, 0.12), rgba(88, 214, 197, 0.12));
}

.page-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--ink-soft);
  text-decoration: none;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.page-grid article,
.article-feature,
.contact-strip,
.quote-band {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.page-grid article {
  background: rgba(255, 255, 255, 0.86);
}

.page-visual {
  align-self: stretch;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 40, 0.98), rgba(26, 40, 68, 0.98));
  color: #f8fbff;
}

.page-visual p {
  color: rgba(248, 251, 255, 0.8);
}

.visual-notes {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.visual-notes div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(15, 23, 40, 0.96), rgba(25, 45, 74, 0.98));
  color: #f7fbff;
}

.feature-copy h2,
.feature-copy h3 {
  color: #f7fbff;
}

.feature-copy p,
.feature-copy li {
  color: rgba(247, 251, 255, 0.82);
}

.feature-copy ul,
.feature-copy ol {
  padding-left: 20px;
}

.contact-strip {
  margin-top: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 247, 0.88));
}

.contact-strip h2,
.quote-band h2,
.article-shell h2,
.legal-shell h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.quote-band {
  margin-top: 24px;
  background: rgba(15, 23, 40, 0.96);
  color: #f7fbff;
}

.quote-band p {
  color: rgba(247, 251, 255, 0.82);
}

.article-shell {
  max-width: 980px;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: 20px;
  margin: 24px 0 0;
  background: rgba(15, 23, 40, 0.05);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.article-list {
  gap: 10px;
  padding-left: 22px;
}

.article-list li {
  margin: 0;
}

.blog-card-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.blog-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 23, 40, 0.05);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.blog-card h2,
.article-shell h2 {
  margin: 8px 0 10px;
  line-height: 1.1;
}

.blog-card h2 {
  font-size: 1.75rem;
}

.article-shell h2 {
  font-size: 1.85rem;
}

.article-link {
  text-decoration: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.category-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.legal-shell {
  max-width: 980px;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.route-redirect-shell {
  width: min(calc(100% - 32px), 720px);
  margin: 64px auto;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1080px) {
  .hero,
  .guide-band,
  .system-band,
  .page-hero,
  .feature-band,
  .article-feature {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .category-grid,
  .page-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .masthead,
  .final-cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .board-grid,
  .system-steps,
  .insight-grid,
  .faq-grid,
  .guide-grid,
  .card-grid,
  .detail-grid,
  .spotlight-grid,
  .page-grid,
  .stats-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-board,
  .section-block,
  .guide-band,
  .faq-block,
  .final-cta,
  .page-shell,
  .page-hero,
  .feature-band,
  .article-shell,
  .guide-shell,
  .not-found-shell,
  .legal-shell,
  .system-band {
    padding: 24px;
  }

  .hero h1,
  .page-copy h1,
  .article-shell h1,
  .legal-shell h1 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
  }
}
