:root {
  --seo-ink: #06150f;
  --seo-ink-soft: #10251c;
  --seo-ink-glass: rgba(8, 29, 20, 0.76);
  --seo-paper: #f3efe6;
  --seo-paper-strong: #fffdf7;
  --seo-text: #0b1711;
  --seo-muted: #617067;
  --seo-lime: #caff3d;
  --seo-lime-deep: #8fbf19;
  --seo-coral: #ff7557;
  --seo-blue: #87b8ff;
  --seo-line: rgba(8, 29, 20, 0.14);
  --seo-radius-xl: clamp(28px, 4vw, 54px);
  --seo-radius-lg: 30px;
  --seo-radius-md: 20px;
  --seo-shadow: 0 32px 80px rgba(5, 22, 15, 0.12);
  --seo-container: 1240px;
  --seo-gutter: clamp(18px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 7% 4%, rgba(202, 255, 61, 0.2), transparent 25rem),
    radial-gradient(circle at 94% 10%, rgba(255, 117, 87, 0.15), transparent 27rem),
    var(--seo-paper);
  color: var(--seo-text);
  font-family: "Manrope", Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  content: "";
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--seo-coral);
  outline-offset: 4px;
}

.seo-wrap {
  width: min(calc(100% - (var(--seo-gutter) * 2)), var(--seo-container));
  margin-inline: auto;
}

.seo-skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  translate: 0 -150%;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--seo-lime);
  color: var(--seo-ink);
  font-weight: 800;
}

.seo-skip:focus {
  translate: 0;
}

.seo-header {
  position: relative;
  z-index: 10;
  padding: 18px 0 0;
}

.seo-nav {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(6, 21, 15, 0.92);
  box-shadow: 0 14px 50px rgba(6, 21, 15, 0.13);
  color: white;
  backdrop-filter: blur(18px);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.seo-brand b {
  color: var(--seo-lime);
  font-weight: 800;
}

.seo-brand__mark {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 2px;
  rotate: -8deg;
}

.seo-brand__mark i {
  display: block;
  border-radius: 50%;
  background: var(--seo-lime);
}

.seo-brand__mark i:nth-child(2) {
  background: var(--seo-coral);
}

.seo-brand__mark i:nth-child(3) {
  grid-column: 1 / -1;
  width: 18px;
  border-radius: 999px;
}

.seo-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  margin-left: auto;
}

.seo-nav__links a {
  min-height: 44px;
  padding: 11px 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.seo-nav__links a:hover {
  color: white;
}

.seo-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--seo-lime);
  color: var(--seo-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  color: var(--seo-muted);
  font-size: 13px;
  font-weight: 700;
}

.seo-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-decoration: none;
}

.seo-breadcrumbs span[aria-hidden] {
  opacity: 0.45;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: clamp(38px, 7vw, 90px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--seo-radius-xl);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 117, 87, 0.28), transparent 27rem),
    radial-gradient(circle at 70% 90%, rgba(202, 255, 61, 0.23), transparent 30rem),
    linear-gradient(145deg, #071811, #03100b 64%);
  box-shadow: var(--seo-shadow);
  color: white;
}

.seo-hero::before,
.seo-hero::after {
  position: absolute;
  border: 1px solid rgba(202, 255, 61, 0.16);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.seo-hero::before {
  right: -12%;
  bottom: -62%;
  width: 64%;
  aspect-ratio: 1;
}

.seo-hero::after {
  right: 9%;
  bottom: -46%;
  width: 42%;
  aspect-ratio: 1;
}

.seo-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.seo-hero__grid > * {
  min-width: 0;
}

.seo-kicker {
  margin: 0 0 18px;
  color: var(--seo-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 6.1vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.seo-hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  text-wrap: pretty;
}

.seo-answer {
  padding: 26px;
  border: 1px solid rgba(202, 255, 61, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(202, 255, 61, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.seo-answer span {
  display: block;
  margin-bottom: 11px;
  color: var(--seo-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.seo-article-cover {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: clamp(34px, 5vw, 58px) 0 0;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(202, 255, 61, 0.3);
  border-radius: clamp(22px, 3vw, 34px);
  background: #06150f;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.12);
}

.seo-article-cover::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 16, 11, 0.02), rgba(3, 16, 11, 0.2)),
    radial-gradient(circle at 50% 105%, rgba(202, 255, 61, 0.13), transparent 36%);
  pointer-events: none;
  content: "";
}

.seo-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-case-visual {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(202, 255, 61, 0.32);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.seo-case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.seo-content {
  padding: clamp(64px, 8vw, 112px) 0;
}

.seo-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.seo-article-grid > * {
  min-width: 0;
}

.seo-prose {
  max-width: 820px;
}

.seo-prose h2 {
  margin: 72px 0 20px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.seo-prose h2:first-child {
  margin-top: 0;
}

.seo-prose h3 {
  margin: 34px 0 12px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.seo-prose p,
.seo-prose li {
  color: #304039;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.78;
}

.seo-prose p {
  margin: 0 0 18px;
  text-wrap: pretty;
}

.seo-prose ul,
.seo-prose ol {
  margin: 18px 0 28px;
  padding-left: 1.35em;
}

.seo-prose li + li {
  margin-top: 10px;
}

.seo-prose strong {
  color: var(--seo-text);
}

.seo-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 66px;
  padding: 0;
  list-style: none;
}

.seo-quick li {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(143, 191, 25, 0.24);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--seo-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.seo-quick strong {
  font-weight: 800;
}

.seo-table-wrap {
  overflow-x: auto;
  margin: 30px 0 54px;
  border: 1px solid var(--seo-line);
  border-radius: 22px;
  background: var(--seo-paper-strong);
  box-shadow: 0 18px 48px rgba(6, 21, 15, 0.06);
}

.seo-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.seo-table caption {
  padding: 18px 20px;
  color: var(--seo-muted);
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.seo-table th,
.seo-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--seo-line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.seo-table th {
  background: rgba(202, 255, 61, 0.13);
  color: var(--seo-text);
}

.seo-aside {
  position: sticky;
  top: 24px;
}

.seo-aside__card {
  overflow: hidden;
  padding: 26px;
  border-radius: 26px;
  background: var(--seo-ink);
  color: white;
}

.seo-aside__card + .seo-aside__card {
  margin-top: 14px;
}

.seo-aside__card--lime {
  background: var(--seo-lime);
  color: var(--seo-ink);
}

.seo-aside__card span {
  display: block;
  margin-bottom: 12px;
  color: var(--seo-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-aside__card--lime span {
  color: rgba(6, 21, 15, 0.62);
}

.seo-aside__card h2,
.seo-aside__card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.seo-aside__card p,
.seo-aside__card li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.seo-aside__card--lime p {
  color: rgba(6, 21, 15, 0.72);
}

.seo-aside__card ul {
  margin: 0;
  padding-left: 18px;
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--seo-lime);
  color: var(--seo-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.seo-aside__card--lime .seo-button {
  background: var(--seo-ink);
  color: white;
}

.seo-sources,
.seo-faq {
  margin-top: clamp(64px, 8vw, 100px);
}

.seo-sources h2,
.seo-faq h2,
.seo-related h2 {
  margin-bottom: 24px;
}

.seo-sources ol {
  padding-left: 1.4em;
}

.seo-sources a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #315b16;
  font-weight: 700;
  text-underline-offset: 3px;
}

.seo-faq details {
  border-top: 1px solid var(--seo-line);
}

.seo-faq details:not([open]) > :not(summary) {
  display: none;
}

.seo-faq details:last-child {
  border-bottom: 1px solid var(--seo-line);
}

.seo-faq summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
  line-height: 1.35;
}

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

.seo-faq summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--seo-ink);
  color: var(--seo-lime);
  content: "+";
}

.seo-faq details[open] summary::after {
  content: "−";
}

.seo-faq details p {
  max-width: 760px;
  padding: 0 48px 22px 0;
}

.seo-related {
  padding: 0 0 clamp(70px, 9vw, 120px);
}

.seo-related__grid,
.seo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-related a,
.seo-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--seo-line);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.76);
  color: var(--seo-text);
  text-decoration: none;
  box-shadow: 0 14px 44px rgba(6, 21, 15, 0.05);
}

.seo-related a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
}

.seo-related a span {
  color: var(--seo-coral);
}

.seo-listing {
  padding: clamp(52px, 8vw, 100px) 0 clamp(76px, 10vw, 130px);
}

.seo-listing__intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  margin-bottom: 42px;
}

.seo-listing__intro h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.seo-listing__intro p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 17px;
  text-wrap: pretty;
}

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

.seo-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
}

.seo-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 255, 61, 0.43), transparent 66%);
  pointer-events: none;
  content: "";
}

.seo-card:nth-child(3n + 2)::after {
  background: radial-gradient(circle, rgba(255, 117, 87, 0.35), transparent 66%);
}

.seo-card__index {
  position: relative;
  z-index: 1;
  color: var(--seo-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-card__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 20px 0 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(202, 255, 61, 0.2);
  border-radius: 20px;
  background: #06150f;
  box-shadow: 0 20px 48px rgba(6, 21, 15, 0.16);
}

.seo-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(4, 18, 12, 0.22));
  pointer-events: none;
  content: "";
}

.seo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.seo-card:hover .seo-card__media img {
  transform: scale(1.025);
}

.seo-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.seo-card h2,
.seo-card h3 {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 28px 0 16px;
  font-size: clamp(26px, 3.1vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.seo-card p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
  color: var(--seo-muted);
  font-size: 15px;
}

.seo-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--seo-text);
  font-size: 14px;
  font-weight: 800;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(64px, 8vw, 104px);
}

.seo-feature {
  min-width: 0;
  padding: 26px;
  border-radius: 24px;
  background: var(--seo-paper-strong);
  box-shadow: 0 16px 48px rgba(6, 21, 15, 0.06);
}

.seo-feature span {
  color: var(--seo-coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.seo-feature h2,
.seo-feature h3 {
  margin: 15px 0 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.seo-feature p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-cta {
  position: relative;
  overflow: hidden;
  margin: 0 auto clamp(28px, 4vw, 54px);
  padding: clamp(34px, 5vw, 66px);
  border-radius: var(--seo-radius-xl);
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 117, 87, 0.44), transparent 20rem),
    var(--seo-ink);
  color: white;
}

.seo-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.seo-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.seo-cta p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.seo-footer {
  margin-top: 36px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--seo-line);
}

.seo-footer__top,
.seo-footer__bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.seo-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.seo-footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding-block: 11px;
  color: var(--seo-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.seo-footer__bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--seo-line);
  color: var(--seo-muted);
  font-size: 12px;
}

.seo-footer__bottom p {
  max-width: 820px;
  margin: 0;
}

@media (max-width: 980px) {
  .seo-nav__links a:nth-child(2),
  .seo-nav__links a:nth-child(3) {
    display: none;
  }

  .seo-hero__grid,
  .seo-listing__intro {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding: clamp(34px, 7vw, 64px);
  }

  .seo-hero h1 {
    max-width: 780px;
  }

  .seo-answer {
    max-width: 680px;
  }

  .seo-article-grid {
    grid-template-columns: 1fr;
  }

  .seo-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .seo-aside__card + .seo-aside__card {
    margin-top: 0;
  }

  .seo-prose {
    max-width: none;
  }

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

@media (max-width: 720px) {
  :root {
    --seo-gutter: 14px;
  }

  .seo-header {
    padding-top: 10px;
  }

  .seo-nav {
    min-height: 60px;
    padding: 8px 8px 8px 16px;
  }

  .seo-nav__links {
    display: none;
  }

  .seo-nav__cta {
    margin-left: auto;
    padding-inline: 15px;
    font-size: 12px;
  }

  .seo-breadcrumbs {
    margin-top: 20px;
    font-size: 12px;
  }

  .seo-hero {
    margin-top: 12px;
    padding: 30px 22px 24px;
    border-radius: 30px;
  }

  .seo-hero__grid {
    gap: 30px;
  }

  .seo-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 1;
  }

  .seo-hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .seo-answer {
    padding: 20px;
  }

  .seo-content {
    padding: 56px 0;
  }

  .seo-quick,
  .seo-cards,
  .seo-feature-grid,
  .seo-related__grid,
  .seo-aside,
  .seo-cta__grid {
    grid-template-columns: 1fr;
  }

  .seo-quick {
    margin-bottom: 50px;
  }

  .seo-prose h2 {
    margin-top: 56px;
  }

  .seo-prose p,
  .seo-prose li {
    font-size: 16px;
  }

  .seo-table-wrap {
    margin-inline: calc(var(--seo-gutter) * -1);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .seo-table {
    min-width: 0;
  }

  .seo-table thead {
    display: none;
  }

  .seo-table tbody,
  .seo-table tr,
  .seo-table td {
    display: block;
    width: 100%;
  }

  .seo-table tr {
    padding: 14px 18px;
    border-top: 1px solid var(--seo-line);
  }

  .seo-table td {
    display: grid;
    grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
    gap: 12px;
    padding: 8px 0;
    border: 0;
  }

  .seo-table td::before {
    color: var(--seo-muted);
    content: attr(data-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .seo-card {
    min-height: 0;
  }

  .seo-article-cover {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .seo-card__media {
    aspect-ratio: 16 / 10;
    border-radius: 17px;
  }

  .seo-case-visual {
    aspect-ratio: 16 / 10;
  }

  .seo-cta {
    padding: 30px 24px;
    border-radius: 30px;
  }

  .seo-cta .seo-button {
    width: 100%;
  }

  .seo-footer__top,
  .seo-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .seo-brand {
    font-size: 16px;
  }

  .seo-brand__mark {
    display: none;
  }

  .seo-nav__cta {
    padding-inline: 13px;
  }

  .seo-hero {
    padding-inline: 18px;
  }

  .seo-hero h1 {
    font-size: clamp(32px, 10.5vw, 40px);
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
  }
}

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