:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #101418;
  --muted: #5c6675;
  --line: #dce3ec;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
  --red-500: #ef4444;
  --orange: #ff950a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
}

.gradient-header {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  color: var(--ink);
  text-align: center;
}

.home-hero {
  padding: 1.25rem 0 2.25rem;
}

.hero-container {
  position: relative;
}

.site-menu-wrap {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  margin-bottom: 2.4rem;
}

[dir="rtl"] .site-menu-wrap {
  flex-direction: row-reverse;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(16, 20, 24, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 12px 30px rgba(16, 20, 24, 0.08);
  backdrop-filter: blur(16px);
}

.menu-toggle:hover {
  background: white;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-brand-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--ink);
  color: white;
  font-size: 1rem;
  line-height: 1;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

[dir="rtl"] .site-menu {
  text-align: right;
}

.site-menu.open {
  display: flex;
}

.site-menu a {
  border-radius: 0.375rem;
  padding: 0.45rem 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-menu a:hover {
  background: rgba(16, 20, 24, 0.05);
  color: var(--ink);
}

.site-menu label {
  font-size: 0.875rem;
  font-weight: 700;
}

.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-menu select {
  width: auto;
  max-width: 10rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.48rem 2rem 0.48rem 0.72rem;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 29rem);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-top: 0;
}

.hero-copy-block {
  text-align: left;
}

[dir="rtl"] .hero-copy-block {
  text-align: right;
}

.hero-title {
  max-width: 46rem;
  padding-inline: 0;
  margin: 0 auto 0.75rem;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero .hero-title {
  padding-inline: 0;
  margin-inline: 0;
}

.hero-copy {
  max-width: 56rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.65;
}

.home-hero .hero-copy {
  margin-inline: 0;
  max-width: 42rem;
}

main {
  padding: 3rem 0 3rem;
}

.panel {
  width: min(100%, 48rem);
  margin: 0 auto 3rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(16, 20, 24, 0.1);
  padding: 2rem;
}

.generator-panel {
  width: 100%;
  margin: 0;
  text-align: left;
}

[dir="rtl"] .generator-panel {
  text-align: right;
}

.generator-row,
.result-row {
  display: flex;
  gap: 0.75rem;
}

.generator-row {
  flex-direction: column;
}

.generator-row .primary-button {
  width: 100%;
}

.result-row {
  margin-top: 0.75rem;
}

input[type="text"] {
  width: 100%;
  min-width: 0;
  height: 3.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(16, 20, 24, 0.03);
}

input[type="text"]:focus,
.site-menu select:focus {
  border-color: var(--blue-600);
  outline: 2px solid var(--blue-600);
  outline-offset: 1px;
  background: white;
}

button {
  border: 0;
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

button:active {
  transform: translateY(1px);
}

.primary-button {
  background: var(--blue-600);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.primary-button:hover {
  background: var(--blue-700);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.copy-button {
  background: var(--ink);
}

.copy-button:hover {
  background: var(--gray-700);
}

.copy-button.copied {
  background: var(--green-500);
}

.copy-button.error {
  background: var(--red-500);
}

.hidden {
  display: none !important;
}

.loader-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.85rem;
}

.loader {
  width: 1.25rem;
  height: 1.25rem;
  border: 4px solid var(--gray-100);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.plan-card {
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.plan-card h3 {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.checkmark {
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: rgba(255, 149, 10, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.85rem;
}

.content {
  width: min(100%, 48rem);
  margin: 0 auto;
}

.content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.25;
}

.content p {
  margin-bottom: 1.5rem;
}

.content ul {
  padding-inline-start: 1.5rem;
  margin: 0 0 2rem;
}

.content li + li {
  margin-top: 0.5rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--gray-700);
}

footer {
  padding: 2rem 0;
  background: var(--ink);
  color: white;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
}

footer .muted {
  color: #d1d5db;
}

footer a {
  text-decoration: underline;
}

footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-links a {
  white-space: nowrap;
}

.disclosure {
  margin-top: 1rem;
  font-size: 0.8125rem;
  opacity: 0.75;
}

.article-page {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.article-page h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.article-page .last-updated {
  margin-bottom: 2rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.article-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  line-height: 1.25;
}

.article-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.article-page p,
.article-page li {
  color: var(--gray-700);
  line-height: 1.7;
}

.article-page ul,
.article-page ol {
  padding-inline-start: 1.5rem;
  margin: 0 0 1.5rem;
}

.article-page li + li {
  margin-top: 0.5rem;
}

.article-page a {
  color: var(--blue-600);
  text-decoration: underline;
}

.article-page a:hover {
  color: var(--blue-700);
}

.about-page {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.about-content {
  display: grid;
  gap: 2rem;
}

.about-content .last-updated {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.eyebrow-dark {
  margin-bottom: 0.65rem;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 36%),
    white;
  box-shadow: 0 18px 50px rgba(16, 20, 24, 0.08);
  padding: clamp(1.35rem, 4vw, 2rem);
}

.about-spotlight p {
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.about-proof-grid div,
.about-card-grid article,
.about-split-cards article {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.86);
}

.about-proof-grid div {
  padding: 1rem;
}

.about-proof-grid strong,
.about-proof-grid span {
  display: block;
}

.about-proof-grid strong {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.about-proof-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-section {
  display: grid;
  gap: 1rem;
}

.about-section h2,
.about-split-cards h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
}

.about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-two-column p,
.about-card-grid p,
.about-split-cards p {
  margin-bottom: 0;
  color: var(--gray-700);
  line-height: 1.7;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-card-grid article,
.about-split-cards article {
  padding: 1.15rem;
}

.about-card-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.about-card-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 149, 10, 0.14);
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 900;
}

.about-split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-split-cards article {
  display: grid;
  gap: 0.75rem;
  background: white;
}

.about-split-cards a {
  color: var(--blue-600);
  font-weight: 800;
}

.about-split-cards a:hover {
  color: var(--blue-700);
}

.pricing-page {
  width: min(100% - 2rem, 74rem);
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.pricing-table-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 18px 50px rgba(16, 20, 24, 0.1);
}

.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 1.5rem;
}

.pricing-table thead th {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  vertical-align: bottom;
}

.pricing-table thead th:first-child {
  width: 52%;
  text-align: left;
  color: var(--ink);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
}

.pricing-table thead th:last-child,
.pricing-table tbody td {
  text-align: center;
}

.pricing-plan-name,
.pricing-plan-price {
  display: block;
}

.pricing-plan-name {
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
}

.pricing-plan-price {
  margin-bottom: 1.15rem;
  color: var(--ink);
  font-size: clamp(2.3rem, 6vw, 3.3rem);
  font-weight: 950;
  line-height: 1;
}

.pricing-plan-price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-table tbody th {
  text-align: left;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

.pricing-table tbody td {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 850;
}

.pricing-section-row th {
  background: #d1d5db;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.pricing-check {
  color: #059669;
  font-size: 1.45rem;
  font-weight: 900;
}

.pricing-note {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: white;
  padding: 1.25rem;
}

.pricing-note h2 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.pricing-note p {
  margin-bottom: 0;
  color: var(--gray-700);
  line-height: 1.7;
}

.compact-header {
  padding: 1.25rem 0 2.25rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow a {
  color: var(--muted);
  text-decoration: none;
}

.eyebrow a:hover {
  color: var(--ink);
}

.guide-grid {
  width: min(100%, 58rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: white;
  padding: 1.25rem;
}

.guide-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.guide-card h2 a {
  text-decoration: none;
}

.guide-card h2 a:hover,
.text-link:hover {
  color: var(--blue-700);
}

.guide-card p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.text-link {
  color: var(--blue-600);
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 1.5rem;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.table-wrap th,
.table-wrap td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: start;
  vertical-align: top;
}

.table-wrap th {
  background: var(--gray-100);
  color: var(--gray-900);
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.redirect-card {
  width: min(100%, 36rem);
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.language-links a {
  color: var(--blue-700);
  font-weight: 700;
}

@media (max-width: 60rem) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-hero .hero-copy {
    max-width: 44rem;
  }

  .about-spotlight,
  .about-two-column,
  .about-split-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 48rem) {
  .gradient-header {
    padding: 1.75rem 0 1.5rem;
  }

  .home-hero {
    padding: 0.85rem 0 1.2rem;
  }

  .home-hero-grid {
    gap: 0.95rem;
    padding-top: 0;
  }

  .site-menu-wrap {
    gap: 0.65rem;
    margin-bottom: 1.1rem;
  }

  .site-brand {
    gap: 0.45rem;
    font-size: 0.88rem;
  }

  .site-brand-mark {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.45rem;
    font-size: 0.9rem;
  }

  .site-menu {
    gap: 0.18rem;
  }

  .site-menu a {
    padding: 0.38rem 0.32rem;
    font-size: 0.78rem;
  }

  .site-menu a:first-of-type {
    display: none;
  }

  .site-menu select {
    max-width: 5.75rem;
    font-size: 0.76rem;
    padding: 0.42rem 1.35rem 0.42rem 0.45rem;
  }

  .about-page {
    padding: 2rem 0 3rem;
  }

  .about-content {
    gap: 1.4rem;
  }

  .about-spotlight,
  .about-card-grid article,
  .about-split-cards article {
    padding: 1rem;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page {
    padding: 1.35rem 0 3rem;
  }

  .pricing-note {
    padding: 0.9rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.85rem 0.8rem;
  }

  .pricing-table thead th {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: top;
  }

  .pricing-table thead th:first-child {
    width: 46%;
    font-size: 1.1rem;
  }

  .pricing-plan-name {
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
  }

  .pricing-plan-price {
    margin-bottom: 0.7rem;
    font-size: 2.3rem;
  }

  .pricing-plan-price small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
  }

  .pricing-table tbody th,
  .pricing-table tbody td {
    font-size: 0.88rem;
  }

  .pricing-section-row th {
    font-size: 0.9rem;
  }

  .compact-header {
    padding: 0.85rem 0 1.2rem;
  }

  main {
    padding: 2rem 0 2.5rem;
  }

  .panel {
    padding: 1.25rem;
    margin-bottom: 2.25rem;
  }

  .generator-panel {
    padding: 1rem;
  }

  .generator-row,
  .result-row {
    flex-direction: column;
    gap: 0.55rem;
  }

  .result-row {
    margin-top: 0.55rem;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  button {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.85rem 1rem;
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-title {
    padding-inline: 3.25rem;
  }

  .home-hero .hero-title {
    padding-inline: 0;
    margin-bottom: 0.55rem;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .home-hero .hero-copy {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  input[type="text"] {
    height: 3.1rem;
    padding: 0.82rem 0.9rem;
  }

  .plan-card {
    margin-top: 0.85rem;
    padding-top: 0.8rem;
  }

  .plan-card h3 {
    margin-bottom: 0.55rem;
    font-size: 0.8rem;
  }

  .feature-list li {
    font-size: 0.78rem;
  }

  .checkmark {
    flex-basis: 1rem;
    width: 1rem;
    height: 1rem;
    background-size: 0.72rem;
  }

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

@media (max-width: 23.75rem) {
  .container {
    width: min(100% - 1.25rem, 72rem);
  }

  .site-menu-wrap {
    align-items: flex-start;
    margin-bottom: 1.05rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  [dir="rtl"] .menu-toggle {
    margin-right: auto;
    margin-left: 0;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    display: none;
    width: min(14rem, calc(100vw - 1.25rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.45rem;
    box-shadow: 0 18px 42px rgba(16, 20, 24, 0.16);
    backdrop-filter: blur(16px);
  }

  [dir="rtl"] .site-menu {
    right: auto;
    left: 0;
  }

  .site-menu a {
    padding: 0.55rem 0.65rem;
    font-size: 0.86rem;
  }

  .site-menu a:first-of-type {
    display: block;
  }

  .site-menu select {
    width: 100%;
    max-width: none;
    margin-top: 0.2rem;
    font-size: 0.86rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}
