:root {
  --lp-bg-top: #001c3d;
  --lp-bg-bottom: #041f3f;
  --lp-panel: rgba(8, 22, 43, 0.82);
  --lp-panel-strong: rgba(10, 28, 52, 0.94);
  --lp-border: rgba(255, 255, 255, 0.11);
  --lp-border-gold: rgba(255, 216, 77, 0.28);
  --lp-text: #f7fbff;
  --lp-muted: rgba(232, 240, 252, 0.78);
  --lp-soft: rgba(232, 240, 252, 0.62);
  --lp-gold: #ffd84d;
  --lp-blue: #89bfff;
  --lp-green: #2fc58b;
  --lp-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body.seo-page {
  margin: 0;
  padding: 30px 18px;
  color: var(--lp-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 216, 77, 0.09), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(137, 191, 255, 0.14), transparent 28%),
    radial-gradient(circle at 52% 48%, rgba(47, 197, 139, 0.06), transparent 28%),
    linear-gradient(180deg, var(--lp-bg-top), var(--lp-bg-bottom));
}

.seo-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-nav,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 24, 45, 0.72), rgba(5, 16, 31, 0.56));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: #fff5c8;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-brand::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border-radius: 999px;
  background: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='12'%20cy='12'%20r='8.6'%20stroke='%23FFD84D'%20stroke-width='1.8'/%3e%3ccircle%20cx='12'%20cy='12'%20r='6.35'%20stroke='%23FFD84D'%20stroke-width='1.1'%20opacity='0.88'/%3e%3cpath%20d='M10.15%205.95L12%204.75L13.85%205.95'%20stroke='%23FFD84D'%20stroke-width='1.15'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.65%207.25H13.35'%20stroke='%23FFD84D'%20stroke-width='1.05'%20stroke-linecap='round'/%3e%3cpath%20d='M8.55%2015.25V9.1'%20stroke='%23FFD84D'%20stroke-width='1.55'%20stroke-linecap='round'/%3e%3cpath%20d='M8.55%2015.25H11.65'%20stroke='%23FFD84D'%20stroke-width='1.55'%20stroke-linecap='round'/%3e%3cpath%20d='M13.1%2015.25V9.1H15.85C17%209.1%2017.75%209.88%2017.75%2011.02C17.75%2012.18%2017%2012.95%2015.85%2012.95H13.1'%20stroke='%23FFD84D'%20stroke-width='1.55'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.16));
}

.site-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.site-links a,
.footer-links a {
  color: var(--lp-muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-links a[aria-current="page"] {
  color: #fff7d0;
  text-decoration: none;
}

.site-links a:hover,
.site-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
  gap: clamp(1.2rem, 4vw, 2.2rem);
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 18px;
  padding: clamp(1.35rem, 4vw, 2.3rem);
  border: 1px solid var(--lp-border-gold);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(12, 31, 58, 0.96), rgba(7, 20, 39, 0.97));
  box-shadow: var(--lp-shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(137, 191, 255, 0.18), transparent 25%);
  opacity: 0.72;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--lp-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 0;
  color: var(--lp-gold);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--lp-muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.22), rgba(255, 216, 77, 0.08));
  color: #fff7d0;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-height: 260px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #fff7d0;
  font-weight: 850;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(137, 191, 255, 0.12);
  border: 1px solid rgba(137, 191, 255, 0.22);
  color: #b9d8ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.visual-list,
.visual-bars,
.swot-preview {
  display: grid;
  gap: 0.55rem;
}

.visual-row,
.visual-bar,
.swot-quadrant {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(2, 13, 27, 0.35);
}

.visual-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.visual-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--lp-gold);
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.1);
}

.visual-row strong,
.visual-bar strong,
.swot-quadrant strong {
  color: #fff;
  font-size: 0.92rem;
}

.visual-bar strong,
.swot-quadrant strong {
  display: block;
  margin-bottom: 0.18rem;
}

.visual-row span,
.visual-bar span,
.swot-quadrant span {
  color: var(--lp-soft);
  font-size: 0.82rem;
}

.visual-bar span,
.swot-quadrant span {
  display: block;
}

.visual-bar-track {
  height: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.visual-bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 216, 77, 0.7), rgba(137, 191, 255, 0.95));
}

.swot-preview {
  grid-template-columns: 1fr 1fr;
}

.swot-quadrant {
  min-height: 82px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, 0.55);
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.28), rgba(255, 216, 77, 0.12));
  outline: none;
}

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

.content-grid--balanced {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.52fr);
}

.panel {
  padding: clamp(1rem, 3vw, 1.45rem);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(137, 191, 255, 0.1), transparent 32%),
    var(--lp-panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.panel--primary {
  background:
    radial-gradient(circle at top right, rgba(137, 191, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 30, 57, 0.9), rgba(7, 20, 39, 0.86));
}

.side-panel {
  position: sticky;
  top: 18px;
}

.panel + .panel {
  margin-top: 18px;
}

h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  color: #fff7d0;
  font-size: 1.04rem;
}

p,
li {
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.68;
}

p {
  margin: 0.65rem 0 0;
}

ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

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

.mini-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032));
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.mini-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.04));
}

.mini-card p {
  color: var(--lp-soft);
  font-size: 0.94rem;
}

.link-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.link-list a {
  display: block;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #eaf4ff;
  font-weight: 800;
  text-decoration: none;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: rgba(255, 216, 77, 0.36);
  color: #fff7d0;
  outline: none;
}

.path-panel h2 {
  margin-bottom: 0.3rem;
}

.path-intro {
  margin-top: 0;
  color: var(--lp-soft);
  font-size: 0.94rem;
}

.path-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.path-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.path-link:hover,
.path-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, 0.34);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.path-step {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(255, 216, 77, 0.12);
  border: 1px solid rgba(255, 216, 77, 0.22);
  color: #fff7d0;
  font-size: 0.78rem;
  font-weight: 900;
}

.path-link strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.25;
}

.path-link span:last-child {
  display: block;
  margin-top: 0.18rem;
  color: var(--lp-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer {
  margin: 22px 0 0;
  align-items: flex-start;
}

.site-footer--simple {
  align-items: center;
  margin-top: 24px;
}

.note-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.note {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 216, 77, 0.15);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.08), rgba(255, 255, 255, 0.03));
}

.note strong {
  display: block;
  color: #fff7d0;
  font-size: 0.9rem;
}

.note span {
  display: block;
  margin-top: 0.25rem;
  color: var(--lp-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-copy {
  max-width: 42ch;
  margin: 0;
  color: var(--lp-soft);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links--simple {
  gap: 0.9rem;
}

@media (max-width: 820px) {
  body.seo-page {
    padding: 18px 12px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .site-nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-links,
  .footer-links {
    justify-content: flex-start;
  }

  .content-grid,
  .card-grid,
  .note-strip {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    display: none;
  }

  .swot-preview {
    grid-template-columns: 1fr;
  }

  .visual-row {
    grid-template-columns: auto 1fr;
  }

  .visual-row span:last-child {
    grid-column: 2;
  }
}
