/* BizKit shared theme — used by landing + feature pages */

html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01";
}
:lang(th), .font-th { font-family: "Noto Sans Thai Looped", "Plus Jakarta Sans", sans-serif; }

/* ---------- Backgrounds ---------- */
.bg-hero {
  background:
    radial-gradient(1100px 500px at 85% -20%, #C7E8F7 0%, transparent 55%),
    radial-gradient(900px 500px at 10% 110%, #E9F4FB 0%, transparent 60%),
    linear-gradient(180deg, #EEF7FC 0%, #E3F0F9 100%);
}
.bg-testi {
  background:
    radial-gradient(700px 400px at 10% 10%, #C7E8F7 0%, transparent 60%),
    radial-gradient(600px 400px at 90% 90%, #D6EBF7 0%, transparent 60%),
    linear-gradient(180deg, #F3F8FC 0%, #E6F1F8 100%);
}

/* ---------- Buttons ---------- */
.btn-brand {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: #1C9DD8;
  color: #ffffff;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px -10px rgba(28, 157, 216, 0.45);
  transition: transform .25s cubic-bezier(.22,1,.36,1), background-color .25s, box-shadow .25s;
}
.btn-brand:hover { background: #1583B7; transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(28, 157, 216, 0.5); }
.btn-brand:active { transform: translateY(0); }
.btn-brand:focus-visible { outline: 3px solid #5DBFE8; outline-offset: 2px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent;
  color: #0F2233;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid #CFE6F4;
  transition: transform .25s, color .25s, border-color .25s, background-color .25s;
}
.btn-ghost:hover { color: #1C9DD8; border-color: #1C9DD8; background: #E7F5FC; }
.btn-ghost:focus-visible { outline: 3px solid #5DBFE8; outline-offset: 2px; }

/* LINE add-friend button — official LINE green, sized for navbars */
.btn-line {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #06C755;
  color: #ffffff;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px -8px rgba(6, 199, 85, 0.45);
  transition: transform .25s cubic-bezier(.22,1,.36,1), background-color .25s, box-shadow .25s;
}
.btn-line svg { width: 16px; height: 16px; }
.btn-line:hover { background: #05B14B; transform: translateY(-1px); box-shadow: 0 12px 22px -10px rgba(6, 199, 85, 0.55); }
.btn-line:active { transform: translateY(0); background: #04994A; }
.btn-line:focus-visible { outline: 3px solid #6BD9A4; outline-offset: 2px; }

/* ---------- Pill email form ---------- */
.pill-form {
  display: flex;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  max-width: 420px;
  box-shadow: 0 10px 24px -10px rgba(15, 34, 51, 0.12);
}
.pill-form input {
  flex: 1; border: 0; outline: 0;
  padding: 0.7rem 1.25rem;
  font-size: 14px; background: transparent; color: #0F2233;
}
.pill-form input::placeholder { color: #9AA8BA; }
.pill-form button {
  background: #1C9DD8; color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 0; cursor: pointer;
  transition: background-color .25s, transform .25s;
}
.pill-form button:hover { background: #1583B7; transform: translateY(-1px); }
.pill-form button:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }

/* ---------- Section heading helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1C9DD8;
}
.h-section {
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0F2233;
}
.h-section-sub {
  color: #6A7B8E;
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- Nav link ---------- */
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #2A3C52;
  padding: 0.5rem 0;
  transition: color .25s;
}
.nav-link:hover { color: #1C9DD8; }
.nav-link.active { color: #1C9DD8; font-weight: 600; }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; border-radius: 2px; background: #1C9DD8;
}

/* ---------- FEATURES mega-menu (used on /features/*.html) ---------- */
.features-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.features-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.features-menu-chevron {
  width: 12px;
  height: 12px;
  color: currentColor;
  opacity: 0.7;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.features-menu[aria-expanded="true"] .features-menu-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.features-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 14px;
  transform: translateX(-50%) translateY(-6px);
  width: min(820px, 94vw);
  padding: 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #E5ECF3;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -22px rgba(15, 34, 51, 0.18),
    0 14px 28px -12px rgba(28, 157, 216, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.22s;
  z-index: 50;
}
/* Pointer tip */
.features-menu-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid #E5ECF3;
  border-top: 1px solid #E5ECF3;
  border-top-left-radius: 3px;
}
/* Invisible hover bridge so cursor can travel from trigger → panel without losing hover */
.features-menu-panel::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.features-menu[aria-expanded="true"] .features-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.features-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.features-menu-item {
  /* Per-module accent (overridden by [data-color] selectors below) */
  --fm-fg: #1C9DD8;
  --fm-bg: #E7F5FC;
  --fm-bg-deep: #DCEEF8;

  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.features-menu-item[data-color="coral"]  { --fm-fg: #F56F4D; --fm-bg: #FFE9E1; --fm-bg-deep: #FFD9CB; }
.features-menu-item[data-color="mint"]   { --fm-fg: #36A059; --fm-bg: #E2F5E9; --fm-bg-deep: #CDEDD8; }
.features-menu-item[data-color="amber"]  { --fm-fg: #C5871A; --fm-bg: #FFF1CC; --fm-bg-deep: #FFE6A8; }
.features-menu-item[data-color="violet"] { --fm-fg: #6749F0; --fm-bg: #ECE6FF; --fm-bg-deep: #DCD2FF; }

.features-menu-item:hover,
.features-menu-item:focus-visible {
  background: var(--fm-bg);
  outline: none;
}
.features-menu-item.is-active {
  background: linear-gradient(180deg, var(--fm-bg) 0%, var(--fm-bg-deep) 100%);
}
.features-menu-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--fm-bg);
  color: var(--fm-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.22s, color 0.22s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.features-menu-icon svg {
  width: 26px;
  height: 26px;
}
.features-menu-item:hover .features-menu-icon,
.features-menu-item:focus-visible .features-menu-icon,
.features-menu-item.is-active .features-menu-icon {
  background: var(--fm-fg);
  color: #ffffff;
  transform: rotate(-4deg) scale(1.06);
}
.features-menu-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.features-menu-title {
  font-family: "Noto Sans Thai Looped", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0F2233;
  line-height: 1.3;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.features-menu-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6A7B8E;
  transition: color 0.2s;
}
.features-menu-item:hover .features-menu-en,
.features-menu-item.is-active .features-menu-en {
  color: var(--fm-fg);
}
.features-menu-desc {
  font-family: "Noto Sans Thai Looped", "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6A7B8E;
  margin-top: 5px;
}

@media (max-width: 860px) {
  .features-menu-panel { width: min(460px, 94vw); }
  .features-menu-grid { grid-template-columns: 1fr; }
}

/* ---------- Feature card (landing-style) ---------- */
.feat-card {
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 18px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, background-color .35s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(15, 34, 51, 0.1); background: #fff; }
.feat-icon {
  width: 78px; height: 78px;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  background: #E7F5FC;
  display: flex; align-items: center; justify-content: center;
  color: #1C9DD8;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .35s, color .35s;
}
.feat-card:hover .feat-icon { background: #1C9DD8; color: #fff; transform: scale(1.06) rotate(-4deg); }

/* ---------- Pricing card ---------- */
.price-card {
  background: #ffffff;
  border: 1px solid #E5ECF3;
  border-radius: 24px;
  padding: 2rem 1.75rem;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(15,34,51,0.12); border-color: #CFE6F4; }
.price-card.featured { background: linear-gradient(180deg, #1C9DD8 0%, #1583B7 100%); color: #fff; border-color: #1C9DD8; box-shadow: 0 30px 60px -20px rgba(28,157,216,0.45); }
.price-card.featured .price-muted { color: #C7E8F7; }
.price-card.featured .tick { color: #ffffff; background: rgba(255,255,255,0.2); }
.price-card.featured .price-foot-btn { background: #ffffff; color: #1583B7; }
.price-card.featured .price-foot-btn:hover { background: #E7F5FC; }

/* ---------- Icons / ticks / crosses ---------- */
.tick {
  width: 20px; height: 20px; border-radius: 999px;
  background: #E7F5FC; color: #1C9DD8;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cross {
  width: 20px; height: 20px; border-radius: 999px;
  background: #F1F3F6; color: #A7B4C4;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---------- Pricing comparison table ---------- */
.cmp {
  border: 1px solid #E0EDF6;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 28px 60px -32px rgba(15, 34, 51, 0.14), 0 8px 16px -10px rgba(15, 34, 51, 0.05);
}
.cmp-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) 0 0 / 30px 100% no-repeat,
    radial-gradient(farthest-side at 0 50%, rgba(15,34,51,0.10), rgba(15,34,51,0)) 0 0 / 14px 100% no-repeat,
    linear-gradient(to left, #fff 30%, rgba(255,255,255,0)) 100% 0 / 30px 100% no-repeat,
    radial-gradient(farthest-side at 100% 50%, rgba(15,34,51,0.10), rgba(15,34,51,0)) 100% 0 / 14px 100% no-repeat;
  background-attachment: local, scroll, local, scroll;
}
.cmp-swipe-hint {
  display: none;
  text-align: center;
  font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: #1583B7;
  padding: 12px 16px 0;
}
@media (max-width: 720px) { .cmp-swipe-hint { display: block; } }
.cmp-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2.4fr) repeat(4, minmax(124px, 1fr));
  min-width: 760px;
}
.cmp-head {
  background: linear-gradient(180deg, #F4FAFD 0%, #E9F4FB 100%);
  border-bottom: 1px solid #CFE6F4;
}
.cmp-head .cmp-cell { padding: 22px 16px; }
.cmp-head-feat {
  display: flex; align-items: flex-end;
  padding: 22px 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #92D4F0;
}
.cmp-plan { text-align: center; position: relative; }
.cmp-plan-name {
  font-size: 13px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #1583B7;
}
.cmp-plan-price {
  font-size: 11.5px; color: #6A7B8E; margin-top: 4px;
  font-feature-settings: 'tnum';
}
.cmp-plan.featured {
  background: linear-gradient(180deg, rgba(28, 157, 216, 0.10) 0%, rgba(28, 157, 216, 0.04) 100%);
}
.cmp-plan.featured .cmp-plan-name { color: #106990; }
.cmp-plan.featured::before {
  content: ""; position: absolute; left: 12px; right: 12px; top: 0;
  height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #1C9DD8, #5DBFE8);
}
.cmp-plan-tag {
  display: inline-block; margin-top: 6px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  background: #FFC850; color: #0F2233;
  padding: 2px 8px; border-radius: 999px;
}

.cmp-section { border-top: 1px solid #EAF1F7; }
.cmp-section[open] { background: #FBFDFE; }
.cmp-summary {
  display: grid;
  grid-template-columns: minmax(260px, 2.4fr) repeat(4, minmax(124px, 1fr));
  align-items: stretch;
  cursor: pointer;
  transition: background .25s ease;
  list-style: none;
}
.cmp-summary::-webkit-details-marker { display: none; }
.cmp-summary:hover { background: #F4FAFD; }
.cmp-section[open] > .cmp-summary {
  border-bottom: 1px dashed #E0EDF6;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
}

.cmp-section-title {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 28px; position: relative;
}
.cmp-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: .18em;
  color: #92D4F0; font-feature-settings: 'tnum';
}
.cmp-section-text { display: flex; flex-direction: column; gap: 1px; }
.cmp-section-en {
  font-size: 16px; font-weight: 700; color: #0F2233;
  letter-spacing: -0.01em;
}
.cmp-section-th { font-size: 13px; color: #6A7B8E; }
.cmp-chev {
  margin-left: auto;
  width: 28px; height: 28px; border-radius: 999px;
  background: #E7F5FC; color: #1C9DD8;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .25s;
}
.cmp-section[open] .cmp-chev { transform: rotate(180deg); background: #1C9DD8; color: #fff; }

.cmp-summary .cmp-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.cmp-summary .cmp-cell.cmp-plan-col-featured {
  background: rgba(28, 157, 216, 0.05);
}

.cmp-row {
  display: grid;
  grid-template-columns: minmax(260px, 2.4fr) repeat(4, minmax(124px, 1fr));
  align-items: stretch;
  border-top: 1px solid #F0F5FA;
}
.cmp-row:nth-child(even) { background: #FAFCFE; }
.cmp-section[open] .cmp-row:hover { background: #F1F8FD; }

.cmp-feat {
  padding: 14px 28px;
  display: flex; flex-direction: column; gap: 1px;
}
.cmp-feat-en {
  font-size: 13.5px; font-weight: 600; color: #2A3C52;
  letter-spacing: -0.005em;
}
.cmp-feat-th { font-size: 12px; color: #6A7B8E; }

.cmp-row .cmp-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.cmp-row .cmp-plan-col-featured { background: rgba(28, 157, 216, 0.05); }

.cmp-rows { padding-bottom: 8px; }
.cmp-foot {
  padding: 16px 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center;
  font-size: 12px; color: #6A7B8E;
  border-top: 1px solid #EAF1F7;
  background: #FAFCFE;
}
.cmp-legend { display: inline-flex; align-items: center; gap: 8px; }
.cmp-legend .tick, .cmp-legend .cross { width: 16px; height: 16px; }
.cmp-legend .tick svg, .cmp-legend .cross svg { width: 10px; height: 10px; }

@media (max-width: 720px) {
  .cmp-head-feat { padding: 18px 16px; font-size: 10px; }
  .cmp-section-title { padding: 16px; gap: 12px; }
  .cmp-section-en { font-size: 15px; }
  .cmp-feat { padding: 12px 16px; }
  .cmp-foot { padding: 14px 16px; font-size: 11px; }
}

/* ---------- FAQ ---------- */
details[open] summary .faq-plus { transform: rotate(45deg); }
details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
.faq-plus { transition: transform .35s cubic-bezier(.22,1,.36,1); color: #1C9DD8; }

/* ---------- Subtle dotted-underline link ---------- */
.link-dotted {
  color: #1C9DD8;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  display: inline-flex; align-items: center; gap: .35rem;
}
.link-dotted::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; opacity: .4;
  transition: opacity .25s;
}
.link-dotted:hover::after { opacity: 1; }

/* ---------- Utilities & motion ---------- */
.no-tap { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline-offset: 3px; }
.anim-float      { animation: float 5s ease-in-out infinite; }
.anim-float-slow { animation: floatSlow 7s ease-in-out infinite; }

/* ---------- Marquee for logos ---------- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.marquee-track {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 48s linear infinite;
  white-space: nowrap;
  align-items: center;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Workflow step (feature pages) ---------- */
.step-node {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #1C9DD8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 24px -12px rgba(28, 157, 216, 0.4);
  border: 1.5px solid #C7E8F7;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.step-card:hover .step-node {
  background: #1C9DD8; color: #fff;
  transform: translateY(-3px) scale(1.05);
  border-color: #1C9DD8;
}
.step-dashed {
  background-image: linear-gradient(90deg, #92D4F0 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  height: 2px;
}

/* ---------- Mobile nav drawer (hamburger) ---------- */
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EEF7FC;
  color: #1C9DD8;
  border: 1px solid #D6EBF7;
  cursor: pointer;
  transition: background-color .25s, transform .2s cubic-bezier(.22,1,.36,1);
}
.mobile-nav-toggle:hover { background: #D6EBF7; }
.mobile-nav-toggle:active { transform: scale(0.94); }
.mobile-nav-toggle:focus-visible { outline: 3px solid #5DBFE8; outline-offset: 2px; }

.mobile-nav-bars {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
}
.mobile-nav-bars span {
  position: absolute; left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s cubic-bezier(.22,1,.36,1), opacity .2s;
}
.mobile-nav-bars span:nth-child(1) { top: 0; }
.mobile-nav-bars span:nth-child(2) { top: 6px; }
.mobile-nav-bars span:nth-child(3) { top: 12px; }
.mobile-nav-toggle.is-open .mobile-nav-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle.is-open .mobile-nav-bars span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open .mobile-nav-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  /* Sits above the cookie consent banner (z-index ~2147483640) so the user's
     intentional menu open is never occluded by the persistent consent UI. */
  z-index: 2147483645;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 51, 0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.mobile-nav-drawer {
  position: absolute;
  right: 0; top: 0;
  height: 100vh;
  height: 100dvh;
  width: min(360px, 88vw);
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background:
    radial-gradient(700px 360px at 100% 0%, #DDF0FA 0%, transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F8FC 100%);
  box-shadow: -28px 0 70px -22px rgba(15, 34, 51, 0.28);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-nav-panel.is-open .mobile-nav-drawer { transform: translateX(0); }

.mobile-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1C9DD8;
}

.mobile-nav-close {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #1C9DD8;
  background: rgba(28, 157, 216, 0.08);
  border: 1px solid rgba(28, 157, 216, 0.18);
  cursor: pointer;
  transition: background-color .25s, transform .2s cubic-bezier(.22,1,.36,1);
}
.mobile-nav-close:hover { background: rgba(28, 157, 216, 0.16); }
.mobile-nav-close:active { transform: scale(0.94); }
.mobile-nav-close:focus-visible { outline: 3px solid #5DBFE8; outline-offset: 2px; }
.mobile-nav-close svg { width: 18px; height: 18px; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #2A3C52;
  text-transform: uppercase;
  transition: background-color .25s, color .25s, transform .25s cubic-bezier(.22,1,.36,1);
}
.mobile-nav-link svg {
  width: 14px; height: 14px;
  opacity: 0.45;
  transition: transform .25s cubic-bezier(.22,1,.36,1), opacity .25s;
}
.mobile-nav-link:hover {
  background: #EEF7FC;
  color: #1C9DD8;
}
.mobile-nav-link:hover svg { opacity: 1; transform: translateX(2px); }
.mobile-nav-link.is-active {
  background: #EEF7FC;
  color: #1C9DD8;
}
.mobile-nav-link.is-active svg { opacity: 1; }
.mobile-nav-link:focus-visible {
  outline: 3px solid #5DBFE8;
  outline-offset: 2px;
}

.mobile-nav-cta-group {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed #CFE6F4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
/* Ghost CTA in drawer reads as a quieter secondary action */
.mobile-nav-cta-btn.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: #CFE6F4;
}

html.mobile-nav-locked,
html.mobile-nav-locked body { overflow: hidden; }
