/* ===== Variables ===== */
:root {
  --color-bg: #0f0f12;
  --color-surface: #18181c;
  --color-surface-elevated: #222228;
  --color-text: #f4f4f5;
  --color-text-muted: #a1a1aa;
  --color-accent: #22c55e;
  --color-accent-hover: #16a34a;
  --color-border: #27272a;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--color-text);
}

/* ===== Language switcher (top right) ===== */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.lang-switcher__trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-text-muted);
  margin-left: 2px;
}

.lang-switcher__trigger:hover,
.lang-switcher.is-open .lang-switcher__trigger {
  border-color: rgba(34, 197, 94, 0.4);
  background: var(--color-surface);
}

.lang-switcher__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.lang-switcher.is-open .lang-switcher__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__panel li {
  margin: 0;
}

.lang-switcher__option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-switcher__option[href] {
  text-decoration: none;
}

.lang-switcher__option:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.lang-switcher__option.is-active {
  color: var(--color-accent);
  background: rgba(34, 197, 94, 0.1);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
}

.btn-primary--pulse {
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: hero-cta-pulse 2.2s ease-out infinite;
}

@keyframes hero-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary--pulse {
    animation: none;
    box-shadow: none;
  }
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 10px 22px;
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  padding: 48px 0 36px;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero__copy {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(34, 197, 94, 0.12);
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 auto 24px;
  line-height: 1.5;
  max-width: 26rem;
}

.hero-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hero-meta__line {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hero-meta__line--accent {
  color: #86efac;
  font-weight: 500;
}

/* Hero: promo card around download CTAs */
.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.hero-visual img {
  width: 100%;
  background: var(--color-surface);
}

@media (min-width: 960px) {
  .hero__wrap {
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
    gap: 40px 48px;
    align-items: start;
  }

  .hero__copy {
    margin: 0;
    text-align: left;
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-desc {
    margin-left: 0;
    margin-right: 0;
    max-width: 22rem;
  }

  .hero-meta {
    justify-items: start;
  }

  .hero-cta-row {
    justify-content: flex-start;
  }

  .hero-visual {
    margin: 0;
    max-width: none;
  }
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.65;
}

.section-desc--tight {
  margin-bottom: 28px;
}

/* ===== Capabilities (merged list) ===== */
.features.capabilities {
  background: var(--color-surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  padding: 22px 22px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-elevated);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.feature-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===== Membership ===== */
.membership-section {
  background: var(--color-bg);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-surface-elevated);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  text-align: left;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.membership-card--free {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--color-surface-elevated);
}

.membership-card--featured {
  border-color: rgba(34, 197, 94, 0.32);
  background:
    linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02)),
    var(--color-surface-elevated);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(34, 197, 94, 0.08);
}

.membership-card__header {
  margin-bottom: 16px;
}

.membership-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.membership-promo {
  margin: 0 0 18px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 18, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.membership-promo__label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fde68a;
}

.membership-promo__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(110deg, #fef08a 0%, #facc15 35%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(250, 204, 21, 0.16);
}

.membership-promo__currency {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 4px;
}

.membership-promo__note {
  margin: 8px 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #d4d4d8;
}

.membership-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-text-muted);
}

.membership-list li + li {
  margin-top: 10px;
}

.membership-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.65;
}

.membership-list li::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.membership-list--positive li::before {
  content: '✓';
  color: #052e16;
  background: #86efac;
}

.membership-list--limited li::before {
  content: '•';
  color: #e4e4e7;
  background: rgba(161, 161, 170, 0.18);
  font-size: 1rem;
  line-height: 16px;
}

/* ===== FAQ ===== */
.seo-faq-block {
  background:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.08), transparent 36%),
    var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.seo-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.seo-faq__item {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--color-surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: left;
}

.seo-faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.seo-faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.45;
}

.seo-faq__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.seo-faq__a {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding-left: 56px;
  text-align: left;
  align-self: stretch;
}

@media (max-width: 768px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .membership-card {
    padding: 20px 18px;
  }

  .membership-promo {
    padding: 14px 16px 16px;
  }

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

  .seo-faq__item {
    padding: 20px 18px 18px;
  }

  .seo-faq__q {
    gap: 12px;
  }

  .seo-faq__index {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .seo-faq__a {
    padding-left: 50px;
  }
}

/* ===== Download ===== */
.download-section {
  padding: 64px 0 72px;
  background: var(--color-surface);
}

.download-panel {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.download-card {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-elevated);
  box-shadow: var(--shadow);
}

.download-meta,
.download-price {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 10px;
  line-height: 1.55;
}

.download-price {
  margin-bottom: 24px;
  color: #86efac;
}

.download-actions {
  display: flex;
  justify-content: center;
}

/* ===== Content / internal links ===== */
.section-links {
  margin-top: 20px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.link-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-elevated);
  color: var(--color-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.link-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
}

.link-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-hero {
  padding: 56px 0 24px;
}

.page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 600;
}

.page-hero__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.page-hero__desc {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-meta__pill {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.content-shell {
  max-width: 980px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.content-panel {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-elevated);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.content-panel p,
.content-panel li {
  color: var(--color-text-muted);
}

.content-panel ul,
.content-panel ol {
  margin: 0;
  padding-left: 20px;
}

.content-panel li + li {
  margin-top: 10px;
}

.mini-faq {
  display: grid;
  gap: 14px;
}

.mini-faq__item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-faq__q {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--color-text);
}

.mini-faq__a {
  margin: 0;
  color: var(--color-text-muted);
}

/* ===== CTA shared ===== */
.cta-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 12px;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-inner {
  text-align: center;
}

.footer-ai-links {
  max-width: 780px;
  margin: 0 auto 28px;
}

.footer-ai-links__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.footer-ai-links__intro {
  max-width: 560px;
  margin: 0 auto 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.footer-ai-links__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-ai-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.35;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-ai-links__item:hover {
  color: var(--color-text);
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.footer-ai-links__note {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .logo {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.copyright {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Images ===== */
.hero-visual img {
  background: linear-gradient(135deg, var(--color-surface-elevated) 0%, var(--color-surface) 100%);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .section {
    padding: 56px 0;
  }

  .footer-ai-links {
    margin-bottom: 24px;
  }

  .footer-ai-links__grid {
    gap: 8px;
  }

  .footer-ai-links__item {
    width: 100%;
    border-radius: var(--radius);
  }

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

}
