:root {
  --sky-1: #69c9ef;
  --sky-2: #a7ddff;
  --sky-3: #d9f2ff;
  --bubble: rgba(255, 255, 255, 0.26);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(255, 255, 255, 0.62);
  --nav-border: rgba(202, 225, 255, 0.95);
  --text-main: #1a3d75;
  --text-muted: #5574a1;
  --heading: #1d4787;
  --pink-1: #ff4ea0;
  --pink-2: #df2b83;
  --pink-shadow: rgba(255, 72, 158, 0.32);
  --blue-1: #2e5ea4;
  --blue-2: #1f4179;
  --blue-shadow: rgba(33, 80, 150, 0.28);
  --line: rgba(164, 201, 240, 0.45);
  --success-bg: rgba(235, 255, 245, 0.88);
  --success-border: rgba(137, 222, 173, 0.75);
  --error-bg: rgba(255, 237, 241, 0.95);
  --error-border: rgba(255, 149, 178, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.46) 0, rgba(255, 255, 255, 0.46) 12px, transparent 13px) 0 0 / 210px 210px,
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.34) 0, rgba(255, 255, 255, 0.34) 9px, transparent 10px) 0 0 / 180px 180px,
    radial-gradient(circle at 28% 78%, rgba(255, 221, 250, 0.34) 0, rgba(255, 221, 250, 0.34) 120px, transparent 220px),
    radial-gradient(circle at 74% 64%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 160px, transparent 260px),
    linear-gradient(180deg, #7ed2f5 0%, #8fd7f8 18%, #a7defe 42%, #83cef3 70%, #74c5ea 100%);
  background-attachment: fixed;
}

body.guided-check-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 32%, rgba(255, 255, 255, 0.3), transparent 34%),
    radial-gradient(circle at 80% 74%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(255, 184, 226, 0.18), transparent 18%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--heading);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.site-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 14px 42px;
}

.site-header {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.mobile-header {
  display: none !important;
}

.mobile-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 156px;
  max-width: 42vw;
  flex: 0 1 auto;
}

.mobile-header__logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.28));
}

.mobile-header__spacer {
  width: 156px;
  max-width: 42vw;
  min-height: 1px;
}

.mobile-menu-toggle {
  display: none !important;
}

.mobile-menu-toggle__icon {
  display: block;
  width: 26px;
  height: 26px;
  background: center / contain no-repeat url("/assets/burger-menu-svgrepo-com.svg");
}

.mobile-nav__panel[hidden] {
  display: none !important;
}

.mobile-nav__panel {
  display: none;
}

.logo-wrap {
  padding: 10px 16px 0;
}

.logo-wrap img {
  display: block;
  width: min(100%, 460px);
  margin: 0 auto;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(255, 255, 255, 0.34));
}

.menu-wrap,
.submenu-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.pill-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 9px;
  border-radius: 999px;
  border: 2px solid var(--nav-border);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 42px rgba(110, 185, 232, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.pill-nav a,
.pill-nav button {
  min-width: 132px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(178, 211, 245, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(220, 236, 255, 0.92));
  color: var(--text-main);
  font-size: 1.02rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(94, 144, 205, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.pill-nav a:hover,
.pill-nav button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(94, 144, 205, 0.22);
}

.pill-nav .active {
  color: #fff;
  background: linear-gradient(180deg, #ff69b0, #ec3b8f 58%, #d9267a 100%);
  border-color: rgba(255, 200, 225, 0.96);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    0 0 0 3px rgba(255, 171, 215, 0.24),
    0 14px 28px var(--pink-shadow);
}

.submenu-wrap .pill-nav {
  padding: 7px;
  gap: 8px;
}

.submenu-wrap .pill-nav a {
  min-width: 118px;
  padding: 11px 18px;
  font-size: 0.95rem;
}

.page-shell {
  border: 2px solid rgba(236, 248, 255, 0.76);
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.page-shell.auth-page-shell {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.page-content {
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer {
  display: grid;
  gap: 0;
  margin: 18px auto 0;
  padding: 16px 20px;
  width: min(1180px, 100%);
  border: 2px solid rgba(236, 248, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--text-main);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.site-footer__row > * {
  flex: 0 1 auto;
}

.site-footer__spacer {
  height: 18px;
}
}

.site-footer a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__link-button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-page__content {
  display: grid;
  gap: 18px;
}

.legal-card {
  margin: 0;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 70;
  display: flex;
  justify-content: center;
}

.cookie-banner__panel {
  width: min(980px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 2px solid rgba(236, 248, 255, 0.82);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(255, 214, 238, 0.34), transparent 34%);
  box-shadow: 0 26px 46px rgba(32, 72, 132, 0.24);
  backdrop-filter: blur(18px);
}

.cookie-banner__title {
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--heading);
}

.cookie-banner__text {
  color: var(--text-main);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 49, 92, 0.42);
  backdrop-filter: blur(8px);
}

.cookie-modal__panel {
  position: relative;
  width: min(760px, 100%);
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(178, 211, 245, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(255, 214, 238, 0.36), transparent 34%);
  box-shadow: 0 28px 52px rgba(24, 61, 116, 0.24);
}

.cookie-modal__title {
  margin: 0 0 14px;
}

.cookie-modal__body {
  display: grid;
  gap: 14px;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cookie-preference-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(183, 212, 243, 0.6);
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--heading);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #e53b92;
}

.hero-card,
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 251, 255, 0.66)),
    radial-gradient(circle at 50% 20%, rgba(255, 223, 245, 0.18), transparent 46%);
  border: 2px solid var(--border-soft);
  border-radius: 28px;
  padding: 22px 24px;
  margin: 14px 0;
  box-shadow:
    0 20px 40px rgba(92, 155, 213, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: clamp(26px, 4vw, 42px);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  margin: 4px 6px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(238, 246, 255, 0.92);
  border: 1px solid rgba(181, 210, 240, 0.88);
  color: var(--text-main);
  font-size: 0.88rem;
}

.pill.disabled {
  background: rgba(245, 225, 235, 0.95);
  border-color: rgba(241, 170, 197, 0.78);
}

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

.row {
  margin: 14px 0;
}

.row-disabled {
  opacity: 0.58;
}

.row-progress-saved {
  opacity: 0.56;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(224, 233, 244, 0.72);
  border: 1px solid rgba(157, 178, 204, 0.72);
}

.progress-note {
  margin: 0 0 10px;
  color: #476586;
  font-size: 0.92rem;
  font-weight: 700;
}

.guided-check {
  display: grid;
  gap: 12px;
}

.guided-check__dialog[hidden] {
  display: none;
}

.guided-check__modal[hidden] {
  display: none;
}

.guided-check__modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: block;
  padding: 28px 18px;
}

.guided-check__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 49, 92, 0.42);
  backdrop-filter: blur(8px);
}

.guided-check__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 36px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(178, 211, 245, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(255, 214, 238, 0.36), transparent 34%);
  box-shadow: 0 28px 52px rgba(24, 61, 116, 0.24);
  display: grid;
  gap: 18px;
}

.guided-check__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.guided-check__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.guided-check__title {
  margin: 4px 0 0;
}

.guided-check__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(227, 239, 255, 0.95);
  color: var(--heading);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.guided-check__body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 18px;
}

.guided-check__content,
.guided-check__media {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(183, 212, 243, 0.55);
}

.guided-check__media {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.guided-check__media-placeholder {
  padding: 18px;
  border: 2px dashed rgba(150, 189, 228, 0.9);
  border-radius: 20px;
  text-align: center;
  color: var(--text-muted);
}

.guided-check__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.guided-check__step-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.guided-check__step-text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-main);
}

.weekly-note {
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(183, 212, 243, 0.55);
  color: var(--text-main);
}

.weekly-alert {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #d62839;
  border: 1px solid #b51d2d;
  color: #fff;
  font-weight: 700;
}

.warning-banner {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #d62839;
  border: 1px solid #b51d2d;
  color: #fff;
  font-weight: 700;
}

.inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.inline > label {
  margin-bottom: 0;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading);
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="month"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(175, 204, 236, 0.96);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(71, 113, 170, 0.08);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 93, 171, 0.74);
  box-shadow:
    0 0 0 4px rgba(255, 111, 183, 0.16),
    inset 0 1px 2px rgba(71, 113, 170, 0.08);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

.btn,
.btnlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 124px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(46, 90, 154, 0.88);
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 26px var(--blue-shadow);
}

.btn.secondary,
.btnlink.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 238, 255, 0.92));
  color: var(--text-main);
  border-color: rgba(182, 212, 244, 0.9);
  box-shadow: 0 12px 24px rgba(108, 164, 221, 0.14);
}

.danger-link {
  border: 0;
  background: transparent;
  color: #b51d2d;
  padding: 0;
  min-width: 0;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn.primary-pink {
  background: linear-gradient(180deg, var(--pink-1), var(--pink-2));
  border-color: rgba(255, 193, 220, 0.94);
  box-shadow: 0 14px 28px var(--pink-shadow);
}

.btn:disabled,
.btnlink.disabled-btn,
.disabled {
  opacity: 0.62;
}

.ok,
.err,
.banner {
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid transparent;
  margin-bottom: 14px;
}

.ok {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: #1a6d41;
}

.err {
  background: var(--error-bg);
  border-color: var(--error-border);
  color: #9a2358;
}

.banner {
  background: rgba(255, 249, 222, 0.94);
  border-color: rgba(238, 210, 128, 0.88);
  color: #755400;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.changelog-list {
  display: grid;
  gap: 18px;
}

.changelog-card {
  padding: 24px 26px;
}

.changelog-card__date {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 244, 255, 0.92);
  border: 1px solid rgba(181, 210, 240, 0.88);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
}

.changelog-card__title {
  margin-bottom: 12px;
}

.changelog-card__items {
  margin: 0;
  padding-left: 20px;
  color: var(--text-main);
}

.changelog-card__items li + li {
  margin-top: 8px;
}

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-card--overdue {
  border-color: rgba(214, 40, 57, 0.72);
  box-shadow:
    0 20px 40px rgba(185, 51, 68, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.feature-card__media {
  display: grid;
  place-items: center;
  height: 210px;
  padding: 18px 18px 12px;
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 212, 243, 0.55);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.76), rgba(214, 235, 255, 0.32) 62%, transparent 100%);
}

.feature-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(78, 132, 199, 0.16));
}

.feature-card__body {
  padding: 22px;
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.feature-card__actions {
  margin-top: 16px;
}

.auth-shell {
  max-width: 920px;
  margin: 0 auto;
}

.auth-stage {
  padding: 10px 0 0;
}

.auth-card {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.auth-form {
  max-width: 560px;
  margin: 26px auto 0;
  padding: 24px 20px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(199, 225, 247, 0.82);
  box-shadow:
    0 18px 34px rgba(101, 158, 215, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.auth-form .row {
  text-align: left;
}

.auth-form label {
  margin-bottom: 8px;
}

.auth-check-row {
  margin-top: 4px;
}

.auth-check {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0;
}

.auth-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #e53b92;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
  border-radius: 24px;
  padding: 16px 20px;
  min-height: 58px;
  font-size: 1.08rem;
}

.auth-form .btn {
  margin-top: 8px;
}

.uniform-form input[type="text"],
.uniform-form input[type="password"],
.uniform-form input[type="email"],
.uniform-form select {
  min-height: 54px;
  border-radius: 18px;
}

.section-title {
  margin-bottom: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-top: 1px solid rgba(177, 208, 241, 0.4);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--heading);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .guided-check__body {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .pill-nav a,
  .pill-nav button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 16px 10px 28px;
  }

  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(100%, 440px);
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
    padding: 10px 15px;
    border: 2px solid rgba(236, 248, 255, 0.76);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow:
      0 18px 32px rgba(74, 131, 192, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 18px;
    border: 2px solid rgba(178, 211, 245, 0.94);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(220, 236, 255, 0.92));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 8px 18px rgba(94, 144, 205, 0.2);
    cursor: pointer;
    flex: 0 0 auto;
  }

  .mobile-menu-toggle__icon {
    width: 32px;
    height: 32px;
  }

  .site-header {
    display: none !important;
  }

  .menu-wrap,
  .submenu-wrap {
    display: none;
  }

  .mobile-nav__panel {
    display: block;
    position: relative;
    z-index: 40;
    width: min(100%, 440px);
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    margin-top: 10px;
    border-radius: 26px;
    border: 2px solid rgba(236, 248, 255, 0.76);
    background: rgba(255, 255, 255, 0.48);
    box-shadow:
      0 24px 44px rgba(63, 112, 169, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
  }

  .mobile-nav__panel .pill-nav {
    display: grid;
    width: 100%;
    border-radius: 26px;
  }

  .card,
  .hero-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .guided-check__modal {
    padding: 16px 10px;
  }

  .guided-check__panel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 24px;
  }

  .guided-check__header {
    gap: 10px;
  }

  .guided-check__close {
    flex: 0 0 44px;
  }

  .guided-check__content,
  .guided-check__media {
    padding: 16px;
    border-radius: 20px;
  }

  .guided-check__media {
    min-height: 140px;
  }

  .guided-check__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guided-check__actions .btn {
    width: 100%;
  }

  .guided-check .inline {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .guided-check .inline .btn,
  .guided-check .inline .pill {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .row .inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .row .inline > label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    padding: 10px 14px;
    margin-bottom: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(183, 212, 243, 0.6);
    white-space: nowrap;
  }

  .row .inline > label input[type="radio"],
  .row .inline > label input[type="checkbox"] {
    flex: 0 0 auto;
    margin: 0;
  }

  .row .inline > select,
  .row .inline > span,
  .row .inline > input,
  .row .inline > textarea {
    width: 100%;
  }

  .newbox input,
  .newbox textarea {
    margin-top: 8px;
  }

  .auth-stage {
    padding: 4px 0 0;
  }

  .site-footer {
    border-radius: 26px;
    padding: 14px 16px;
  }

  .site-footer__row {
    display: grid;
    gap: 10px;
  }

  .site-footer__spacer {
    height: 14px;
  }

  .cookie-banner {
    inset: auto 10px 10px 10px;
  }

  .cookie-banner__panel,
  .cookie-preference-card {
    display: grid;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions .btn,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal__panel {
    padding: 18px;
    border-radius: 24px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 12px;
  }

  td {
    padding: 10px 0;
  }
}
