:root {
  color-scheme: light;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --shell-ink: #17324f;
  --shell-ink-soft: #58708c;
  --shell-line: rgba(22, 50, 79, 0.12);
  --shell-surface: rgba(255, 255, 255, 0.84);
  --shell-surface-strong: rgba(255, 255, 255, 0.94);
  --shell-accent: #2d65d9;
  --shell-accent-soft: rgba(45, 101, 217, 0.12);
  --shell-shadow: 0 18px 44px rgba(22, 50, 79, 0.1);
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

@keyframes shell-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shell-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(254, 185, 120, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(87, 145, 255, 0.18), transparent 30%),
  linear-gradient(135deg, #f4f0e6 0%, #e9eef5 52%, #dfe8f1 100%);
  color: #1c2530;
}

body {
  animation: shell-fade-in 0.5s ease both;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  text-wrap: balance;
}

.landing-page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 32px;
}

.landing-page-shell__header {
  position: sticky;
  top: 16px;
  z-index: 10;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(246, 248, 253, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: shell-rise-in 0.45s ease both;
}

.landing-page-shell__header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.95rem 1.1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-page-shell__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  min-width: 0;
}

.landing-page-shell__brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3c62f4 0%, #4e46d7 100%);
  box-shadow: 0 12px 24px rgba(76, 91, 214, 0.18);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.landing-page-shell__brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.landing-page-shell__brand-text strong {
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--shell-ink);
}

.landing-page-shell__brand-text small {
  color: var(--shell-ink-soft);
}

.landing-page-shell__nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.landing-page-shell__header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-page-shell__nav-link,
.landing-page-shell__secondary-action {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

.landing-page-shell__nav-link {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: #5a6780;
  font-size: 0.98rem;
}

.landing-page-shell__nav-link:hover,
.landing-page-shell__nav-link:focus-visible {
  background: rgba(92, 108, 255, 0.08);
  color: #24324a;
}

.landing-page-shell__nav-link--cta {
  color: #fff;
  background: linear-gradient(100deg, #3c62f4 0%, #4e46d7 100%);
  border: 1px solid rgba(71, 83, 191, 0.58);
  box-shadow: 0 10px 22px rgba(76, 91, 214, 0.2);
  font-weight: 700;
  padding-inline: 1rem;
  border-radius: 4px;
}

.landing-page-shell__language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.landing-page-shell__language-switcher > summary {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2f3b58;
  font-weight: 700;
  box-shadow: none;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.landing-page-shell__language-switcher > summary::-webkit-details-marker {
  display: none;
}

.landing-page-shell__language-switcher > summary::after {
  content: none;
}

.landing-page-shell__language-switcher[open] > summary {
  box-shadow: none;
}

.landing-page-shell__language-label {
  display: none;
}

.landing-page-shell__language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  height: 1.45rem;
  padding: 0 0.3rem;
  border-radius: 4px;
  background: rgba(92, 108, 255, 0.08);
  color: #24324a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-page-shell__language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.18rem;
  min-width: 14rem;
  padding: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.landing-page-shell__language-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.34rem 0.68rem;
  border-radius: 12px;
  color: #24324a;
  text-decoration: none;
  font-weight: 700;
}

.landing-page-shell__language-option:hover,
.landing-page-shell__language-option:focus-visible {
  background: rgba(92, 108, 255, 0.08);
}

.landing-page-shell__language-option.is-current {
  background: rgba(92, 108, 255, 0.1);
  color: #3558d4;
}

.landing-page-shell__language-option.is-current::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 800;
}

.landing-page-shell__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 1.1rem 0 0;
}

.landing-page-shell__main {
  display: grid;
  gap: 18px;
}

.landing-page-shell__hero,
.landing-page-shell__content-section,
.landing-page-shell__docs-cta {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(66, 82, 150, 0.09);
  animation: shell-rise-in 0.45s ease both;
}

.landing-page-shell__hero {
  animation-delay: 0.05s;
}

.landing-page-shell__content-section:nth-of-type(2) {
  animation-delay: 0.1s;
}

.landing-page-shell__content-section:nth-of-type(3) {
  animation-delay: 0.15s;
}

.landing-page-shell__content-section:nth-of-type(4) {
  animation-delay: 0.2s;
}

.landing-page-shell__docs-cta {
  animation-delay: 0.25s;
}

.landing-page-shell__footer {
  animation: shell-rise-in 0.35s ease both;
  animation-delay: 0.3s;
}

.landing-page-shell__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 2rem;
  padding: 1.6rem;
  border-radius: 28px;
  overflow: hidden;
}

.landing-page-shell__hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(92, 108, 255, 0.16), transparent 64%);
  pointer-events: none;
}

.landing-page-shell__hero-content,
.landing-page-shell__hero-visual {
  position: relative;
  z-index: 1;
}

.landing-page-shell__hero-content {
  max-width: 36rem;
}

.landing-page-shell__eyebrow {
  margin: 0 0 1.05rem;
  color: #3f49d0;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.landing-page-shell__title {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--shell-ink);
  max-width: 11ch;
}

.landing-page-shell__description {
  margin: 1.2rem 0 0;
  max-width: 30rem;
  font-size: 1.01rem;
  line-height: 1.65;
  color: var(--shell-ink-soft);
}

.landing-page-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1.45rem;
}

.landing-page-shell__primary-action,
.landing-page-shell__secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.64rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  text-decoration: none;
}

.landing-page-shell__primary-action {
  background: linear-gradient(100deg, #3c62f4 0%, #4e46d7 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(76, 91, 214, 0.26);
  border: 1px solid rgba(71, 83, 191, 0.6);
  border-radius: 4px;
}

.landing-page-shell__primary-action:hover,
.landing-page-shell__secondary-action:hover {
  transform: translateY(-1px);
}

.landing-page-shell__secondary-action {
  border: 1px solid rgba(115, 130, 179, 0.32);
  background: rgba(255, 255, 255, 0.84);
  color: #2f3b58;
}

.landing-page-shell__secondary-action--featured {
  gap: 0.62rem;
  padding-right: 0.95rem;
  border-color: rgba(208, 157, 44, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 232, 0.96) 100%);
  box-shadow:
    0 10px 24px rgba(180, 126, 20, 0.12),
    0 0 0 1px rgba(255, 230, 140, 0.16) inset;
  color: #324059;
}

.landing-page-shell__secondary-action--featured:hover,
.landing-page-shell__secondary-action--featured:focus-visible {
  border-color: rgba(202, 148, 30, 0.42);
  box-shadow:
    0 12px 28px rgba(180, 126, 20, 0.16),
    0 0 0 1px rgba(255, 230, 140, 0.2) inset;
}

.landing-page-shell__secondary-action-label {
  display: inline-flex;
  align-items: center;
}

.landing-page-shell__secondary-action-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe9a6 0%, #f7c94d 100%);
  color: #7c5200;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(164, 111, 0, 0.12);
}

.landing-page-shell__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.landing-page-shell__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 178, 218, 0.26);
  background: rgba(255, 255, 255, 0.8);
  color: #425066;
  font-weight: 600;
}

.landing-page-shell__hero-visual {
  display: grid;
  gap: 14px;
}

.landing-page-shell__visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-page-shell__visual-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 1.2rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 8px 26px rgba(66, 82, 150, 0.08);
}

.landing-page-shell__visual-card--highlight {
  min-height: 220px;
  background: linear-gradient(180deg, rgba(94, 122, 220, 0.08), rgba(255, 255, 255, 0.98));
}

.landing-page-shell__visual-card--live {
  position: relative;
  border-color: rgba(233, 187, 77, 0.34);
  background:
    radial-gradient(circle at top right, rgba(255, 240, 180, 0.72), transparent 42%),
    linear-gradient(180deg, rgba(255, 251, 238, 0.99), rgba(255, 255, 255, 0.97));
  box-shadow:
    0 12px 30px rgba(180, 126, 20, 0.14),
    0 0 0 1px rgba(255, 230, 140, 0.18) inset;
}

.landing-page-shell__visual-card--live::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #24c16f;
  box-shadow: 0 0 0 5px rgba(36, 193, 111, 0.14);
}

.landing-page-shell__card-label {
  margin: 0;
  color: #4b57e0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-page-shell__status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.35rem;
  margin: -0.15rem 0 0;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(36, 193, 111, 0.12);
  color: #14844a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page-shell__visual-card h2,
.landing-page-shell__visual-card h3 {
  margin: 0;
  color: #1e293b;
}

.landing-page-shell__visual-card-link {
  color: inherit;
  text-decoration: none;
}

.landing-page-shell__visual-card-link:hover,
.landing-page-shell__visual-card-link:focus-visible {
  text-decoration: underline;
}

.landing-page-shell__visual-card p {
  margin: 0;
  color: #52617b;
  line-height: 1.64;
}

.landing-page-shell__content-section {
  padding: 1.75rem;
  border-radius: 26px;
}

.landing-page-shell__content-section--centered {
  text-align: center;
}

.landing-page-shell__section-head {
  margin-bottom: 1.3rem;
}

.landing-page-shell__section-head--centered {
  display: grid;
  justify-items: center;
}

.landing-page-shell__section-eyebrow {
  margin: 0 0 0.46rem;
  color: #4b57e0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-page-shell__section-heading {
  margin: 0;
  font-size: clamp(1.52rem, 2vw, 1.95rem);
  color: #0f172a;
  max-width: 24ch;
}

.landing-page-shell__section-lead {
  margin: 0.75rem 0 0;
  color: #475569;
  line-height: 1.6;
  max-width: 48rem;
}

.landing-page-shell__section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.landing-page-shell__section-grid:last-child {
  margin-bottom: 0;
}

.landing-page-shell__section-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 248px;
  padding: 1.4rem 1.25rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(163, 178, 218, 0.26);
  box-shadow: 0 8px 26px rgba(66, 82, 150, 0.08);
}

.landing-page-shell__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.92rem;
  border-radius: 4px;
  color: #4d64ea;
  background: rgba(119, 144, 255, 0.12);
}

.landing-page-shell__section-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.landing-page-shell__section-description {
  margin: 0.72rem 0 0;
  color: #52617b;
  line-height: 1.64;
  font-size: 0.98rem;
  max-width: 24rem;
}

.landing-page-shell__docs-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
  width: min(100%, 860px);
  margin-inline: auto;
  margin-top: 0.25rem;
}

.landing-page-shell__docs-nav-list--centered {
  justify-content: center;
}

.landing-page-shell__docs-nav-item {
  display: block;
  padding: 0.68rem 0.8rem;
  border-radius: 14px;
  background: rgba(244, 247, 253, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #3558d4;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.landing-page-shell__docs-nav-item:hover,
.landing-page-shell__docs-nav-item:focus-visible {
  background: rgba(94, 122, 220, 0.1);
  border-color: rgba(93, 121, 219, 0.24);
}

.landing-page-shell__docs-nav-item--disabled {
  cursor: not-allowed;
  color: #94a3b8;
  background: rgba(248, 250, 252, 0.96);
  border-color: rgba(203, 213, 225, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.landing-page-shell__docs-nav-item--disabled:hover,
.landing-page-shell__docs-nav-item--disabled:focus-visible {
  background: rgba(248, 250, 252, 0.96);
  border-color: rgba(203, 213, 225, 0.5);
}

.landing-page-shell__docs-steps {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
  color: #334155;
  line-height: 1.8;
}

.landing-page-shell__docs-steps li {
  margin-bottom: 0.75rem;
}

.landing-page-shell__docs-steps strong {
  color: #1e293b;
}

.landing-page-shell__docs-steps p {
  margin: 0.25rem 0 0;
  color: #475569;
}

.landing-page-shell__section-description,
.landing-page-shell__section-lead,
.landing-page-shell__description,
.landing-page-shell__visual-card p,
.landing-page-shell__docs-steps p,
.landing-page-shell__docs-cta p {
  overflow-wrap: anywhere;
}

.landing-page-shell__docs-cta {
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  text-align: center;
  color: #fff;
}

.landing-page-shell__docs-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.landing-page-shell__docs-cta p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  line-height: 1.6;
}

.landing-page-shell__docs-cta a {
  color: inherit;
}

.landing-page-shell__contact-email {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.landing-page-shell__contact-email:hover,
.landing-page-shell__contact-email:focus-visible {
  color: #24324a;
}

.landing-page-shell__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.landing-page-shell__contact-actions .landing-page-shell__secondary-action--cv {
  border-color: rgba(255, 212, 110, 0.42);
  background: linear-gradient(180deg, rgba(255, 244, 205, 0.98) 0%, rgba(255, 226, 141, 0.98) 100%);
  color: #6d4a00;
  box-shadow:
    0 10px 22px rgba(255, 206, 73, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.landing-page-shell__contact-actions .landing-page-shell__secondary-action--cv:hover,
.landing-page-shell__contact-actions .landing-page-shell__secondary-action--cv:focus-visible {
  background: linear-gradient(180deg, rgba(255, 247, 219, 0.99) 0%, rgba(255, 231, 163, 0.99) 100%);
  border-color: rgba(255, 212, 110, 0.56);
  box-shadow:
    0 12px 26px rgba(255, 206, 73, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.landing-page-shell__footer {
  padding: 0.4rem 0 0;
  color: #6e7a94;
}

.landing-page-shell__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.landing-page-shell__footer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.4;
  text-align: center;
}

.landing-page-shell__footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 110, 0.42);
  background: linear-gradient(180deg, rgba(255, 244, 205, 0.98) 0%, rgba(255, 226, 141, 0.98) 100%);
  color: #6d4a00;
  text-decoration: none;
  font-weight: 700;
  box-shadow:
    0 8px 18px rgba(255, 206, 73, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.landing-page-shell__footer-link:hover,
.landing-page-shell__footer-link:focus-visible {
  background: linear-gradient(180deg, rgba(255, 247, 219, 0.99) 0%, rgba(255, 231, 163, 0.99) 100%);
  border-color: rgba(255, 212, 110, 0.56);
  box-shadow:
    0 10px 20px rgba(255, 206, 73, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 110ms;
    animation-timing-function: ease;
  }

  ::view-transition-old(root) {
    opacity: 0.96;
  }

  ::view-transition-new(root) {
    opacity: 0.98;
  }
}

.landing-page-shell__content-section--cv {
  display: grid;
  gap: 1.25rem;
}

.landing-page-shell__cv-header {
  display: grid;
  gap: 0.6rem;
}

.landing-page-shell__title--compact {
  max-width: 100%;
}

.landing-page-shell__cv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.landing-page-shell__cv-preview-wrap {
  overflow: hidden;
  min-height: 70vh;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 36px rgba(66, 82, 150, 0.1);
  background: #fff;
}

.landing-page-shell__cv-preview {
  display: block;
  width: 100%;
  height: 80vh;
  border: 0;
}

@media (max-width: 960px) {
  .landing-page-shell__hero,
  .landing-page-shell__section-grid {
    grid-template-columns: 1fr;
  }

  .landing-page-shell__hero {
    gap: 1rem;
  }

  .landing-page-shell__visual-grid {
    grid-template-columns: 1fr;
  }

  .landing-page-shell__section-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .landing-page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .landing-page-shell__header {
    position: static;
  }

  .landing-page-shell__header-inner {
    flex-wrap: wrap;
  }

  .landing-page-shell__nav {
    width: 100%;
    margin-left: 0;
  }

  .landing-page-shell__header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .landing-page-shell__language-menu {
    right: auto;
    left: 0;
  }

  .landing-page-shell__hero,
  .landing-page-shell__content-section,
  .landing-page-shell__docs-cta {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .landing-page-shell__title {
    font-size: clamp(2rem, 7.5vw, 2.65rem);
  }

  .landing-page-shell__section-title {
    font-size: 1.4rem;
  }
}
