@font-face {
  font-family: "Instrument Serif";
  src: url("Instrument_Serif/InstrumentSerif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --landing-title-font: "Instrument Serif", "Times New Roman", serif;
  --landing-page-gutter: clamp(20px, 5vw, 72px);
  --landing-shell-width: 1320px;
  --landing-radius-sm: 12px;
  --landing-radius-md: 16px;
  --landing-card-fluffy-shadow: rgba(15, 23, 42, 0.026) 0 10px 22px, rgba(15, 23, 42, 0.018) 0 3px 8px, rgb(226, 226, 228) -6px -3px 13px 0 inset, rgba(255, 255, 255, 0.62) 4px 3px 6px 1px inset;
  --shell-frame-bg: #ffffff;
  --ink: #111827;
  --muted: rgba(17, 24, 39, 0.66);
  --red: #f70000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

.landing-topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 25000;
  width: min(var(--landing-shell-width), calc(100% - (var(--landing-page-gutter) * 2)));
  margin: 0;
  padding: 8px;
  border-radius: var(--landing-radius-md);
  background: transparent;
  color: #111827;
  transform: translateX(-50%);
}

.landing-topbar::before,
.landing-topbar::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.72;
}

.landing-topbar::before {
  left: -22px;
  right: -22px;
  top: -18px;
  height: 52px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 245, 245, 0.86) 48%, rgba(255, 255, 255, 0.7) 100%);
}

.landing-topbar::after {
  left: 6%;
  right: 6%;
  top: -8px;
  height: 36px;
  background: linear-gradient(90deg, rgba(235, 235, 235, 0.56) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(235, 235, 235, 0.56) 100%);
  filter: blur(14px);
  opacity: 0.82;
}

.landing-topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: var(--landing-radius-md);
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.99), rgb(255 255 255) 46.22%, rgb(251 251 251));
  box-shadow: inset rgb(0 0 0 / 6%) -3px -3px 3px 1px, rgba(0, 0, 0, 0.05) 0 4px 6px 0;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 100;
}

.dashboard-wordmark {
  color: var(--red);
  font-size: clamp(1.38rem, 1.08rem + 0.3vw, 1.5rem);
  letter-spacing: -0.1em;
  line-height: 1;
}

.landing-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 400;
}

.landing-nav-links,
.landing-nav-actions {
  display: flex;
  align-items: center;
}

.landing-nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.landing-nav-actions {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  margin-left: 4px;
  white-space: nowrap;
}

.landing-nav a:not(.landing-nav-button):not(.landing-nav-cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 4px;
  border-radius: 0;
  color: rgba(17, 24, 39, 0.74);
  text-decoration: none;
  background: #ffffff;
  box-shadow: none;
  border: none;
}

.landing-nav a:not(.landing-nav-button):not(.landing-nav-cta):hover,
.landing-nav a:not(.landing-nav-button):not(.landing-nav-cta):focus-visible {
  color: #111827;
  background: #ffffff;
  outline: none;
}

.landing-nav-updates {
  gap: 5px;
}

.landing-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #f70000;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  transform: translateY(-4px);
}

.landing-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  height: 36px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 1.2em;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  color: #000000 !important;
  border: 1px solid #d1d1d1;
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.99), rgb(255 255 255) 46.22%, rgb(251 251 251));
  transition: background-color 0.5s, border-color 0.5s, color 0.2s ease;
  box-sizing: border-box;
  box-shadow:
    inset rgb(0 0 0 / 6%) -3px -3px 3px 1px,
    rgba(0, 0, 0, 0.05) 0 4px 6px 0;
}

.landing-nav-button-manage {
  color: #000000 !important;
  border-color: rgba(209, 209, 209, 0.8);
  text-shadow: none;
}

.landing-nav-button-setup {
  background: linear-gradient(163deg, #ffeba7 0%, #ffe184 52%, #ffb401 100%);
  color: #000000 !important;
  box-shadow: inset -3px -3px 4px 1px rgb(0 0 0 / 8%), inset 0 1px 0 rgb(255 255 255 / 0%);
}

.landing-nav-button:hover,
.landing-nav-button:focus-visible {
  background: linear-gradient(162deg, rgba(255, 255, 255, 1), rgb(255 255 255) 46.22%, rgb(252 252 252));
  border-color: #c8c8c8;
  outline: none;
}

.landing-nav-button-setup:hover,
.landing-nav-button-setup:focus-visible {
  background: linear-gradient(163deg, #ffeba7 0%, #ffe184 52%, #ffb401 100%);
  border-color: #c8c8c8;
  color: #000000 !important;
  filter: brightness(1.02);
}

.landing-nav-button:active {
  background: linear-gradient(162deg, rgba(248, 248, 248, 0.99), rgb(252 252 252) 46.22%, rgb(248 248 248));
}

.landing-nav-button-setup:active {
  background: linear-gradient(163deg, #ffeba7 0%, #ffe184 52%, #ffb401 100%);
}

.landing-nav-cta,
.landing-primary-action,
.landing-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--landing-radius-sm);
  border: 0;
  color: #111827;
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.99), rgb(255 255 255) 46.22%, rgb(251 251 251));
  box-shadow: inset rgb(0 0 0 / 6%) -3px -3px 3px 1px, rgba(0, 0, 0, 0.05) 0 4px 6px 0;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.landing-nav-cta {
  background: linear-gradient(163deg, #ffeba7 0%, #ffe184 52%, #ffb401 100%);
  color: #555151;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: inset -3px -3px 4px 1px rgb(0 0 0 / 8%), inset 0 1px 0 rgb(255 255 255 / 0%);
}

main {
  width: min(var(--landing-shell-width), 100%);
  margin: 0 auto;
  padding: 104px var(--landing-page-gutter) 56px;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: flex-start;
  gap: clamp(28px, 5vw, 64px);
  min-height: min(620px, calc(100svh - 104px));
  padding-top: 32px;
  padding-bottom: 28px;
}

.seo-kicker {
  margin: 0 0 14px;
  color: rgba(17, 24, 39, 0.52);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--landing-title-font);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.51rem, 5.36vw, 5.36rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.7rem);
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.14;
}

.seo-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.48;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-visual {
  position: relative;
  min-height: 420px;
}

.seo-visual-card,
.seo-roulette-card {
  position: absolute;
  top: 50%;
  left: 47%;
  width: min(604px, 94%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--landing-radius-md);
  background: #ffffff;
  transform: translate(-45%, -50%) rotate(-1.2deg);
}

.seo-visual-card img,
.seo-roulette-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.seo-roulette-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background:
    radial-gradient(circle at 12% 12%, rgba(205, 231, 255, 0.82), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(233, 217, 255, 0.8), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(255, 224, 154, 0.72), transparent 34%),
    linear-gradient(162deg, rgba(250, 250, 250, 0.98), rgba(255, 255, 255, 0.98) 46.22%, rgba(251, 251, 251, 0.96));
  box-shadow: var(--landing-card-fluffy-shadow);
  opacity: 0;
  transform: translate(-62%, -42%) rotate(-5deg) scale(0.86);
  animation: seoRoulette 12s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-roulette-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: clamp(86px, 26%, 132px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(16px);
  opacity: 0.72;
  z-index: 1;
}

.seo-roulette-card:nth-child(2) {
  animation-delay: 4s;
}

.seo-roulette-card:nth-child(3) {
  animation-delay: 8s;
}

.seo-roulette-card.is-photo {
  padding: 22px;
}

.seo-roulette-card:not(.is-photo)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.9), transparent 42%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  color: rgba(17, 24, 39, 0.48);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.65;
  white-space: pre-line;
  content: attr(data-tags);
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.seo-roulette-card[data-visual="textures"] {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 230, 120, 0.88), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(68, 145, 255, 0.36), transparent 33%),
    radial-gradient(circle at 72% 78%, rgba(255, 133, 96, 0.38), transparent 36%),
    linear-gradient(145deg, rgba(255, 252, 238, 0.98), rgba(245, 250, 255, 0.98));
}

.seo-roulette-card[data-visual="cabinet"] {
  background:
    radial-gradient(circle at 16% 20%, rgba(156, 210, 255, 0.82), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(111, 230, 185, 0.44), transparent 34%),
    radial-gradient(circle at 66% 80%, rgba(255, 215, 113, 0.56), transparent 38%),
    linear-gradient(145deg, rgba(242, 249, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card[data-visual="wardrobe"] {
  background:
    radial-gradient(circle at 16% 24%, rgba(207, 190, 255, 0.8), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(255, 186, 214, 0.54), transparent 34%),
    radial-gradient(circle at 68% 82%, rgba(158, 230, 255, 0.48), transparent 34%),
    linear-gradient(145deg, rgba(250, 246, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card[data-visual="embed"] {
  background:
    radial-gradient(circle at 16% 22%, rgba(124, 210, 255, 0.72), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(255, 226, 118, 0.58), transparent 34%),
    radial-gradient(circle at 70% 82%, rgba(132, 128, 255, 0.38), transparent 36%),
    linear-gradient(145deg, rgba(244, 251, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card[data-visual="factory"] {
  background:
    radial-gradient(circle at 14% 18%, rgba(181, 235, 153, 0.72), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(255, 205, 119, 0.62), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(128, 189, 255, 0.42), transparent 36%),
    linear-gradient(145deg, rgba(247, 255, 242, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card[data-visual="studio"] {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 166, 139, 0.68), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(167, 151, 255, 0.52), transparent 34%),
    radial-gradient(circle at 68% 80%, rgba(122, 224, 255, 0.42), transparent 36%),
    linear-gradient(145deg, rgba(255, 248, 244, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card[data-visual="online"] {
  background:
    radial-gradient(circle at 14% 22%, rgba(103, 230, 206, 0.62), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255, 217, 96, 0.58), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(127, 157, 255, 0.44), transparent 36%),
    linear-gradient(145deg, rgba(241, 255, 252, 0.98), rgba(255, 255, 255, 0.96));
}

.seo-roulette-card.is-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.64) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 48%, rgba(255, 255, 255, 0.18));
  pointer-events: none;
  z-index: 0;
}

.seo-roulette-card.is-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.seo-roulette-card h3,
.seo-roulette-card p,
.seo-roulette-card span {
  position: relative;
  z-index: 2;
}

.seo-roulette-card h3 {
  align-self: flex-start;
  max-width: 430px;
  padding: 7px 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 0.98;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.seo-roulette-card p {
  align-self: flex-start;
  max-width: 420px;
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
  color: rgba(17, 24, 39, 0.72);
  font-size: 1rem;
  line-height: 1.45;
}

.seo-roulette-card span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes seoRoulette {
  0% {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate(-45%, -50%) rotate(-1.2deg) scale(1.035);
  }
  33% {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate(-45%, -50%) rotate(-1.2deg) scale(1.035);
  }
  42% {
    z-index: 2;
    opacity: 0.84;
    filter: saturate(0.92);
    transform: translate(-70%, -38%) rotate(-5.5deg) scale(0.86);
  }
  68% {
    z-index: 1;
    opacity: 0.58;
    filter: saturate(0.88);
    transform: translate(-24%, -20%) rotate(5.2deg) scale(0.72);
  }
  100% {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.86);
    transform: translate(-24%, -20%) rotate(5.2deg) scale(0.72);
  }
}

.seo-mini-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: min(310px, 72%);
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--landing-radius-md);
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.98), rgba(255, 255, 255, 0.98) 46.22%, rgba(251, 251, 251, 0.96));
  box-shadow: var(--landing-card-fluffy-shadow);
}

.seo-mini-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.seo-mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.seo-centered {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.seo-centered p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.seo-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--landing-radius-md);
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.98), rgba(255, 255, 255, 0.98) 46.22%, rgba(251, 251, 251, 0.96));
  box-shadow: var(--landing-card-fluffy-shadow);
}

.seo-card p,
.seo-card li {
  color: rgba(17, 24, 39, 0.68);
  font-size: 1rem;
}

.seo-card p {
  margin: 12px 0 0;
}

.seo-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.seo-divider {
  width: 72px;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.24), transparent);
}

.seo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-link-list a {
  color: rgba(17, 24, 39, 0.76);
  font-weight: 700;
  text-decoration: none;
}

.seo-faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.seo-faq details {
  padding: 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--landing-radius-md);
  background: linear-gradient(162deg, rgba(250, 250, 250, 0.98), rgba(255, 255, 255, 0.98) 46.22%, rgba(251, 251, 251, 0.96));
  box-shadow: var(--landing-card-fluffy-shadow);
}

.seo-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--landing-title-font);
  font-size: 1.42rem;
  line-height: 1.1;
}

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

.landing-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 38px clamp(20px, 5vw, 72px) 34px;
  background: var(--shell-frame-bg);
  color: rgba(17, 24, 39, 0.62);
  font-size: 0.88rem;
  text-align: center;
  position: relative;
}

.landing-footer::before {
  content: "";
  width: min(520px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.24) 18%, rgba(17, 24, 39, 0.34) 50%, rgba(17, 24, 39, 0.24) 82%, transparent);
}

.landing-footer a {
  color: inherit;
  text-decoration: none;
}

.landing-footer-main,
.landing-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: inherit;
  line-height: 1.4;
  margin-top: 6px;
}

.landing-footer-links {
  max-width: 980px;
  margin-top: 0;
  font-size: 0.94em;
}

.landing-footer-separator {
  color: rgba(17, 24, 39, 0.32);
  user-select: none;
}

.landing-footer-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: inherit;
}

.landing-language-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 56px;
  width: 56px;
  max-width: 56px;
  padding: 7px 18px 7px 8px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(17, 24, 39, 0.7) 50%) calc(100% - 12px) 50% / 4px 4px no-repeat,
    linear-gradient(135deg, rgba(17, 24, 39, 0.7) 50%, transparent 50%) calc(100% - 8px) 50% / 4px 4px no-repeat,
    rgba(255, 255, 255, 0.74);
  color: #111827;
  font: inherit;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.landing-language-select:focus-visible {
  outline: 2px solid rgba(255, 77, 59, 0.34);
  outline-offset: 2px;
}

.landing-footer-note {
  max-width: 700px;
  margin: -4px 0 0;
  color: inherit;
  font-size: 0.96em;
  line-height: 1.45;
}

.landing-footer-contact,
.landing-footer-contact a[href^="mailto:"] {
  color: inherit;
  font-weight: inherit;
}

@media (max-width: 940px) {
  .landing-topbar {
    width: min(100% - 24px, var(--landing-shell-width));
  }

  .landing-topbar-main {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .landing-brand {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .landing-nav {
    width: min(100%, 760px);
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .landing-nav-links,
  .landing-nav-actions {
    justify-content: center;
  }

  .landing-nav-links {
    width: 100%;
    gap: 8px 14px;
  }

  .landing-nav-actions {
    gap: 10px;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .landing-nav {
    gap: 10px;
    font-size: 0.86rem;
  }

  .landing-nav-links,
  .landing-nav-actions {
    gap: 8px;
  }

  .landing-nav a:not(.landing-nav-button):not(.landing-nav-cta) {
    min-height: 22px;
    padding: 0 2px;
  }

  .landing-nav-button {
    height: 34px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .landing-nav-actions {
    gap: 6px;
  }

  .landing-nav-button {
    height: 32px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 940px) {
  main {
    padding-top: 132px;
  }

  .seo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .seo-visual {
    min-height: 340px;
  }

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

@media (max-width: 620px) {
  main {
    padding-top: 182px;
  }

  h1 {
    font-size: clamp(2.14rem, 12.56vw, 3.68rem);
  }

  .seo-visual-card,
  .seo-roulette-card {
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(-0.8deg);
  }

  .seo-mini-card {
    right: 12px;
    width: min(300px, calc(100% - 24px));
  }
}
