@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Cinzel:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');:root {
  --mh2-bg: #f5f1e8;
  --mh2-bg-soft: #f8f5ef;
  --mh2-white: #ffffff;
  --mh2-navy: #162a57;
  --mh2-navy-2: #1e356d;
  --mh2-navy-3: #243f82;
  --mh2-gold: #e1b33b;
  --mh2-gold-deep: #c99512;
  --mh2-text: #213559;
  --mh2-muted: #5f7297;
  --mh2-border: rgba(22, 42, 87, 0.1);
  --mh2-shadow: 0 18px 60px rgba(22, 42, 87, 0.1);
  --mh2-shadow-strong: 0 24px 80px rgba(17, 33, 71, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; overflow-x: hidden; background: var(--mh2-bg); }

.mh2-page {
  background: var(--mh2-bg);
  color: var(--mh2-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 48px;
}

.mh2-page h1, .mh2-page h2, .mh2-page h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.mh2-page p { margin: 0; }

.mh2-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* ─── TOP BAR ─── */
.mh2-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0d1b3e 0%, #1a2f60 20%, #b8860b 45%, #f0c44c 50%, #b8860b 55%, #1a2f60 80%, #0d1b3e 100%);
  background-size: 300% 100%;
  animation: mh2-topbar-shimmer 8s ease infinite;
  color: #fff8e7;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 18px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(225, 179, 59, 0.7);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,220,100,0.15);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

@keyframes mh2-topbar-shimmer {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* ─── NAVBAR ─── */
.mh2-navbar {
  background: #fff;
  border-bottom: 1px solid #e8e0d4;
  padding: 12px 24px;
  position: sticky;
  top: 44px;
  z-index: 39;
  font-family: Inter, sans-serif;
}

.mh2-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
}

.mh2-navbar-logo { height: 32px; width: auto; }

.mh2-navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mh2-navbar-member-text { font-size: 13px; color: #6b7280; }

.mh2-navbar-login-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid #0d1b3e;
  background: #fff;
  color: #0d1b3e;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

.mh2-navbar-login-btn:hover { background: #0d1b3e; color: #fff; }

/* ─── HERO ─── */
.mh2-hero {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(circle at 18% 18%, rgba(225,179,59,0.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(47,78,152,0.12), transparent 22%),
    linear-gradient(180deg, #f6f2e9 0%, #f5f1e8 100%);
}

.mh2-orb {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}

.mh2-orb-left { left: -120px; top: 20px; background: rgba(225,179,59,0.4); }
.mh2-orb-right { right: -120px; top: 90px; background: rgba(36,63,130,0.35); }

.mh2-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mh2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  flex-wrap: wrap;
  min-height: 44px;
  margin-bottom: 22px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(225,179,59,0.55);
  color: var(--mh2-gold-deep);
  background: rgba(255,248,232,0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mh2-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.04;
  color: #182d5a;
  max-width: 900px;
  width: 100%;
}

.mh2-hero-title span { color: var(--mh2-gold-deep); }

.mh2-hero-sub {
  max-width: 760px;
  width: 100%;
  margin: 28px auto 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: #486082;
}

.mh2-hero-sub strong { color: #1a2f60; font-weight: 800; }

/* ── VSL ── */
.mh2-vsl-wrap {
  width: 100%;
  max-width: 800px;
  margin: 44px auto 0;
}

.mh2-vsl-label {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mh2-gold-deep);
  margin-bottom: 14px;
}

.mh2-vsl-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(17, 33, 71, 0.28);
  border: 1px solid rgba(22, 42, 87, 0.1);
  background: linear-gradient(135deg, rgba(22, 42, 87, 0.96), rgba(36, 63, 130, 0.92));
}

.mh2-vsl-wrap {
  width: 100%;
  max-width: 380px;
  margin: 44px auto 0;
}

@media (max-width: 540px) {
  .mh2-vsl-frame {
    max-width: 100%;
    border-radius: 16px;
  }
  .mh2-vsl-wrap {
    max-width: 100%;
  }
}
  .mh2-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(17,33,71,0.28);
  border: 1px solid rgba(22,42,87,0.1);
  background: linear-gradient(135deg, rgba(22,42,87,0.96), rgba(36,63,130,0.92));
}

.mh2-video-glow {
  position: absolute;
  inset: auto 15% -120px 15%;
  height: 180px;
  background: radial-gradient(circle, rgba(225,179,59,0.36), transparent 68%);
  filter: blur(30px);
}

.mh2-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.mh2-video-play {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  color: var(--mh2-navy);
  font-size: 28px;
  box-shadow: 0 0 0 18px rgba(225,179,59,0.15);
}

.mh2-video-title {
  margin-top: 20px;
  color: #fff7e8;
  font-size: 22px;
  font-weight: 800;
}

/* ── Hero CTA Block ── */
.mh2-hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  width: 100%;
}

.mh2-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  color: #162a57;
  font-weight: 900;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 14px 36px rgba(225,179,59,0.35);
  font-family: Inter, sans-serif;
}

.mh2-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(225,179,59,0.5); }
.mh2-primary-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.mh2-primary-btn-full { width: 100%; }

.mh2-hero-btn {
  padding: 20px 36px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.mh2-hero-note {
  color: #7084a9;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.mh2-hero-guarantee-note {
  color: #4a6a3a;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* ── Hero Proof Strip ── */
.mh2-hero-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(22,42,87,0.08);
  font-size: 13px;
  font-weight: 700;
  color: #486082;
}

.mh2-hero-proof-strip span:first-child { color: #f0c44c; font-size: 16px; }
.mh2-hero-proof-divider { color: rgba(22,42,87,0.2); }

/* ─── PROOF STRIP ─── */
.mh2-proof-strip {
  background: #ede8de;
  border-top: 1px solid rgba(22,42,87,0.08);
  border-bottom: 1px solid rgba(22,42,87,0.08);
}

.mh2-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mh2-proof-item {
  padding: 38px 22px;
  text-align: center;
}

.mh2-proof-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: #1a2f60;
  font-weight: 900;
}

.mh2-proof-label {
  margin-top: 10px;
  color: #5f7297;
  font-size: 15px;
  line-height: 1.5;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.mh2-proof-item:not(:last-child) { border-right: 1px solid rgba(22,42,87,0.08); }

/* ─── SECTIONS ─── */
.mh2-section { padding: 96px 0; }

.mh2-section-head { max-width: 860px; }

.mh2-section-head h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: #1a2f60;
}

.mh2-section-head p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.75;
  color: #5f7297;
}

.mh2-center { margin-left: auto; margin-right: auto; text-align: center; }

.mh2-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  flex-wrap: wrap;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(225,179,59,0.55);
  color: var(--mh2-gold-deep);
  background: rgba(255,248,232,0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
}

.mh2-kicker-dark { background: rgba(240,196,76,0.15); color: #f0c44c; border-color: rgba(240,196,76,0.35); }

/* ─── PROBLEM SECTION ─── */
.mh2-problem {
  background: linear-gradient(180deg, #eee9de 0%, #f5f1e8 100%);
  border-top: 1px solid rgba(22,42,87,0.07);
}

.mh2-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
  margin-top: 48px;
}

.mh2-problem-card {
  background: linear-gradient(180deg, #1c3367, #223f80);
  color: #f8f2e8;
  border-radius: 28px;
  padding: 42px 34px;
  box-shadow: var(--mh2-shadow-strong);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mh2-problem-icon { font-size: 58px; }

.mh2-problem-card h3 {
  margin-top: 22px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.14;
  color: #f0c44c;
}

.mh2-problem-card p { margin-top: 20px; color: #d3dcf0; font-size: 17px; line-height: 1.75; }

.mh2-problem-divider {
  width: 80px; height: 4px;
  border-radius: 999px;
  background: #f0c44c;
  margin: 28px 0 22px;
}

.mh2-problem-card span { color: #a7b7d6; font-size: 16px; }

.mh2-problem-copy p { color: #4c6188; font-size: 18px; line-height: 1.85; }
.mh2-problem-copy p + p { margin-top: 22px; }

.mh2-question-list { margin-top: 26px; display: grid; gap: 14px; }

.mh2-question-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border-left: 5px solid var(--mh2-gold);
  box-shadow: 0 10px 24px rgba(20,36,74,0.07);
  color: #1f345f;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.mh2-question-mark { color: #c5382f; font-weight: 900; font-size: 24px; line-height: 1; padding-top: 2px; }

.mh2-problem-conclusion {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2f60, #28457d);
  color: #f4f0e8;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 800;
  box-shadow: var(--mh2-shadow);
}

/* ─── VALUE STACK SECTION ─── */
.mh2-value-stack {
  background: linear-gradient(160deg, #0f1e42 0%, #162a57 40%, #1c3367 100%);
}

.mh2-value-stack .mh2-section-head h2 { color: #f8f2e8; }
.mh2-value-stack .mh2-section-head p { color: #c6d0e4; }

.mh2-vs-table-wrap {
  max-width: 780px;
  margin: 48px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.mh2-vs-table {
  width: 100%;
  border-collapse: collapse;
}

.mh2-vs-th-item, .mh2-vs-th-value {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
}

.mh2-vs-th-item { text-align: left; color: #6a80a8; }
.mh2-vs-th-value { text-align: right; color: #6a80a8; width: 140px; }

.mh2-vs-row { background: rgba(15,30,66,0.7); border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
.mh2-vs-row:hover { background: rgba(25,45,90,0.8); }

.mh2-vs-td-item {
  padding: 16px 24px;
  color: #c0cfe8;
  font-size: 16px;
}

.mh2-vs-check { color: #f0c44c; margin-right: 10px; font-weight: 900; }

.mh2-vs-td-value {
  padding: 16px 24px;
  text-align: right;
  color: #f0c44c;
  font-weight: 800;
  font-size: 15px;
}

.mh2-vs-total-row { background: rgba(0,0,0,0.3); border-top: 2px solid rgba(225,179,59,0.3); }

.mh2-vs-total-label {
  padding: 18px 24px;
  color: #8097ba;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mh2-vs-total-value {
  padding: 18px 24px;
  text-align: right;
  color: #8097ba;
  font-size: 20px;
  font-weight: 900;
  text-decoration: line-through;
}

.mh2-vs-price-row { background: rgba(240,196,76,0.08); border-top: 1px solid rgba(240,196,76,0.3); }

.mh2-vs-price-label {
  padding: 22px 24px;
  color: #f8f2e8;
  font-size: 16px;
  font-weight: 900;
}

.mh2-vs-price-value {
  padding: 22px 24px;
  text-align: right;
  color: #f0c44c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 30px rgba(240,196,76,0.4);
}

.mh2-vs-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.mh2-vs-cta-note {
  color: #8097ba;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.mh2-how-it-works {
  background: linear-gradient(180deg, #f5f1e8 0%, #ede8de 100%);
}

.mh2-steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.mh2-step-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 32px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(22,42,87,0.08);
  box-shadow: var(--mh2-shadow);
  text-align: center;
}

.mh2-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  color: #162a57;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 18px;
  font-family: Georgia, serif;
}

.mh2-step-card h3 { color: #1a2f60; font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
.mh2-step-card p { color: #5f7297; font-size: 15px; line-height: 1.7; }

.mh2-step-arrow {
  font-size: 28px;
  color: var(--mh2-gold-deep);
  font-weight: 900;
  padding: 0 12px;
  flex-shrink: 0;
}

.mh2-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 44px;
  padding: 32px 36px;
  border-radius: 22px;
  background: rgba(74,106,58,0.08);
  border: 2px solid rgba(74,106,58,0.25);
  box-shadow: 0 8px 28px rgba(20,36,74,0.06);
}

.mh2-guarantee-icon { font-size: 40px; flex-shrink: 0; }

.mh2-guarantee-box strong {
  display: block;
  color: #2d5a1e;
  font-size: 18px;
  margin-bottom: 8px;
}

.mh2-guarantee-box p { color: #4a6a3a; font-size: 16px; line-height: 1.7; }

/* ─── SOLUTION SECTION ─── */
.mh2-solution {
  background: linear-gradient(160deg, #0f1e42 0%, #162a57 40%, #1c3367 100%);
}

.mh2-solution .mh2-section-head h2 { color: #f8f2e8; }
.mh2-solution .mh2-section-head p { color: #c6d0e4; }

.mh2-transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.mh2-transform-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 12px;
  padding: 28px 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(225,179,59,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh2-transform-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.4); }

.mh2-transform-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,179,59,0.2), rgba(22,42,87,0.06));
  color: #c99512;
  font-size: 24px;
  line-height: 1;
}

.mh2-transform-card h3 { align-self: center; color: #c99512; font-size: 20px; line-height: 1.28; }
.mh2-transform-card p { grid-column: 1 / -1; color: #4a6080; font-size: 16px; line-height: 1.7; }

/* ─── COMPARISON TABLE ─── */
.mh2-compare-section {
  background: linear-gradient(160deg, #0d1b3e 0%, #162a57 60%, #1a3060 100%);
}

.mh2-compare-section .mh2-section-head h2 { color: #f8f2e8; }
.mh2-compare-section .mh2-section-head p { color: #b8c8e4; }

.mh2-compare-table-wrap {
  max-width: 860px;
  margin: 48px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.mh2-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.mh2-compare-table thead tr { background: rgba(0,0,0,0.2); }

.mh2-compare-table th {
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mh2-ct-feature { text-align: left; color: #6a80a8; width: 56%; }
.mh2-ct-others { text-align: center; color: #6a80a8; width: 22%; }
.mh2-ct-kingdom {
  text-align: center;
  color: #f0c44c;
  width: 22%;
  background: rgba(240,196,76,0.06);
  border-top: 2px solid rgba(240,196,76,0.4);
  border-left: 1px solid rgba(240,196,76,0.15);
  border-right: 1px solid rgba(240,196,76,0.15);
}

.mh2-compare-table tbody tr {
  background: rgba(15,30,66,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s ease;
}

.mh2-compare-table tbody tr:hover { background: rgba(25,45,90,0.8); }
.mh2-compare-table tbody tr:last-child td { border-bottom: none; }

.mh2-ct-feature-cell { padding: 16px 22px; color: #c0cfe8; font-size: 15px; font-weight: 600; }
.mh2-ct-others-cell { padding: 16px 22px; text-align: center; }
.mh2-ct-kingdom-cell {
  padding: 16px 22px;
  text-align: center;
  background: rgba(240,196,76,0.04);
  border-left: 1px solid rgba(240,196,76,0.1);
  border-right: 1px solid rgba(240,196,76,0.1);
}

.mh2-ct-check { color: #f0c44c; font-size: 18px; font-weight: 900; }
.mh2-ct-check-neutral { color: #6a80a8 !important; }
.mh2-ct-cross { color: #6a3a3a; font-size: 18px; font-weight: 900; }

/* ─── MID CTA ─── */
.mh2-mid-cta {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f60 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(225,179,59,0.15);
  border-bottom: 1px solid rgba(225,179,59,0.15);
  text-align: center;
}

.mh2-mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mh2-mid-cta-copy { color: #c0cfe8; font-size: 18px; line-height: 1.7; max-width: 640px; margin: 0; }
.mh2-mid-cta-note { color: #6a80a8; font-size: 14px; margin: 0; }
.mh2-mid-cta-note strong { color: #f0c44c; }

/* ─── JOURNEY / SEASONS ─── */
.mh2-journey { background: #f0ebe0; }
.mh2-journey .mh2-section-head h2 { color: #1a2f60; }
.mh2-journey .mh2-section-head p { color: #5f7297; }

.mh2-seasons-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,36,74,0.1);
}

.mh2-season-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
  border: none;
  cursor: pointer;
  background: #e8e2d5;
  border-right: 1px solid rgba(22,42,87,0.08);
  transition: background 0.2s ease;
  text-align: left;
  gap: 4px;
}

.mh2-season-tab:last-child { border-right: none; }
.mh2-season-tab-active { background: linear-gradient(135deg, #1c3367, #223f80) !important; }

.mh2-season-tab-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8097ba;
}

.mh2-season-tab-active .mh2-season-tab-num { color: rgba(240,196,76,0.7); }

.mh2-season-tab-name {
  font-size: 20px;
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
  color: #1a2f60;
  letter-spacing: -0.01em;
}

.mh2-season-tab-active .mh2-season-tab-name { color: #f0c44c; }

.mh2-season-detail {
  padding: 40px 44px;
  min-height: 280px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(20,36,74,0.15);
}

.mh2-season-detail-navy { background: linear-gradient(135deg, #1c3367 0%, #263f7a 100%); }
.mh2-season-detail-gold { background: linear-gradient(135deg, #1a3060 0%, #223570 100%); }

.mh2-season-detail-header { margin-bottom: 28px; }

.mh2-season-detail-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,196,76,0.6);
  margin-bottom: 6px;
}

.mh2-season-detail h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: Georgia, "Times New Roman", serif;
  color: #f0c44c;
  line-height: 1.15;
  margin: 0 0 6px;
}

.mh2-season-detail p { color: #8097ba; font-size: 14px; margin: 0; }

.mh2-season-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mh2-season-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d0dcf0;
  font-size: 15px;
  line-height: 1.55;
}

.mh2-season-list li:nth-last-child(-n+2) { border-bottom: none; }

.mh2-season-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #f0c44c;
  font-size: 12px;
  top: 16px;
}

/* Season Arc */
.mh2-season-arc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
}

.mh2-arc-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.mh2-arc-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8e2d5;
  border: 2px solid rgba(22,42,87,0.15);
  color: #8097ba;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Georgia, serif;
}

.mh2-arc-dot-active {
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  border-color: #f0c44c;
  color: #162a57;
  box-shadow: 0 4px 16px rgba(225,179,59,0.4);
}

.mh2-arc-label {
  font-size: 12px;
  font-weight: 700;
  color: #8097ba;
  margin-left: 8px;
  margin-right: 8px;
}

.mh2-arc-line {
  width: 40px;
  height: 2px;
  background: rgba(22,42,87,0.15);
  margin: 0 4px;
}

/* ─── FEATURES ─── */
.mh2-features { background: linear-gradient(180deg, #1a2f60 0%, #162a57 100%); }
.mh2-features .mh2-section-head h2 { color: #f8f2e8; }

.mh2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.mh2-feature-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 200px;
  padding: 28px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(225,179,59,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.mh2-feature-card:hover { transform: translateY(-3px); }

.mh2-feature-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1c3367, #223f80);
  color: #f0c44c;
  font-size: 24px;
}

.mh2-feature-card h3 { color: #1f345f; font-size: 19px; line-height: 1.35; }
.mh2-feature-card p { margin-top: 10px; color: #4f6489; font-size: 15px; line-height: 1.75; }

/* ─── TESTIMONIALS ─── */
.mh2-testimonials { background: linear-gradient(180deg, #1a2f60, #223f80); }
.mh2-testimonials .mh2-section-head h2 { color: #f8f2e8; }
.mh2-testimonials .mh2-section-head p { color: #c6d0e4; }

.mh2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mh2-testimonial-card {
  min-height: 320px;
  padding: 30px 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(225,179,59,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.mh2-stars { color: #f0c44c; font-size: 22px; letter-spacing: 0.1em; }

.mh2-testimonial-highlight {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 900;
  color: var(--mh2-gold-deep);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.mh2-testimonial-card p { margin-top: 12px; color: #3a4f72; font-size: 15px; line-height: 1.85; font-style: italic; }

.mh2-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }

.mh2-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #efc34a, #d8a623);
  color: #182d5a;
  font-size: 22px;
  font-weight: 900;
  flex: 0 0 52px;
}

.mh2-author-name { color: #1a2f60; font-size: 17px; font-weight: 800; }
.mh2-author-role { margin-top: 3px; color: #7084a9; font-size: 13px; }

/* ─── FAQ SECTION ─── */
.mh2-faq {
  background: linear-gradient(180deg, #f5f1e8 0%, #ede8de 100%);
}

.mh2-faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}

.mh2-faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(22,42,87,0.08);
  box-shadow: 0 4px 16px rgba(20,36,74,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.mh2-faq-open { box-shadow: 0 8px 28px rgba(20,36,74,0.12); border-color: rgba(225,179,59,0.3); }

.mh2-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a2f60;
  line-height: 1.4;
}

.mh2-faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--mh2-gold-deep);
  flex-shrink: 0;
  line-height: 1;
}

.mh2-faq-answer {
  padding: 0 24px 22px;
  color: #4f6489;
  font-size: 16px;
  line-height: 1.8;
  border-top: 1px solid rgba(22,42,87,0.06);
  padding-top: 18px;
}

/* ─── STAY SECTION ─── */
.mh2-stay { background: linear-gradient(160deg, #0f1e42 0%, #162a57 100%); }
.mh2-stay .mh2-section-head h2 { color: #f8f2e8; }

.mh2-stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.mh2-stay-card {
  min-height: 270px;
  padding: 30px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(225,179,59,0.15);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.mh2-stay-card:hover { transform: translateY(-3px); }
.mh2-stay-card-icon { font-size: 34px; }
.mh2-stay-card h3 { margin-top: 18px; color: #1f345f; font-size: 19px; line-height: 1.35; }
.mh2-stay-card p { margin-top: 14px; color: #4f6489; font-size: 15px; line-height: 1.75; }

/* ─── PRICING ─── */
.mh2-pricing { background: linear-gradient(180deg, #f5f1e8 0%, #ede8de 100%); }

.mh2-pricing-wrap { max-width: 820px; margin: 48px auto 0; }

.mh2-pricing-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(160deg, #0f1e42 0%, #1a2f60 40%, #1e3570 100%);
  border: 2px solid var(--mh2-gold);
  box-shadow: 0 0 0 1px rgba(225,179,59,0.2), 0 32px 80px rgba(10,20,50,0.35), 0 0 60px rgba(225,179,59,0.1);
  padding: 0 0 32px;
}

.mh2-pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px 18px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(225,179,59,0.15);
}

.mh2-pricing-kicker { color: #f0c44c; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 900; }

.mh2-pricing-pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  color: #162a57;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(225,179,59,0.4);
}

.mh2-pricing-card h3 { padding: 24px 30px 0; color: #ffffff; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; }
.mh2-pricing-sub { padding: 14px 30px 0; color: #c0cfe8; font-size: 17px; line-height: 1.75; }
.mh2-pricing-divider { height: 1px; margin: 24px 0; background: rgba(225,179,59,0.2); }

.mh2-price-row { display: flex; align-items: flex-end; gap: 12px; padding: 0 30px; }

.mh2-price-main {
  color: #f0c44c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6vw, 5.4rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(240,196,76,0.4);
}

.mh2-price-side { color: #c0cfe8; font-size: 20px; padding-bottom: 12px; }
.mh2-price-note { padding: 10px 30px 0; color: #c0cfe8; font-size: 17px; line-height: 1.7; }
.mh2-price-note strong { color: #f0c44c; }

.mh2-pricing-list { list-style: none; margin: 20px 0 0; padding: 0 30px; display: grid; gap: 2px; }

.mh2-pricing-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  color: #e4eaf5;
  font-size: 17px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mh2-pricing-list li:last-child { border-bottom: none; }

.mh2-pricing-list li::before { content: "✦"; position: absolute; left: 0; color: #f0c44c; font-weight: 900; }

.mh2-pricing-warning {
  margin: 22px 30px 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(225,179,59,0.4);
  background: rgba(225,179,59,0.08);
  color: #f0c44c;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
}

.mh2-pricing-micro { margin-top: 18px !important; text-align: center; color: #8099c4; font-size: 14px; line-height: 1.6; padding: 0 30px; }

/* ── Guarantee Badge in Pricing ── */
.mh2-guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 30px 0;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(74,106,58,0.12);
  border: 1px solid rgba(74,106,58,0.3);
}

.mh2-guarantee-badge-icon { font-size: 28px; flex-shrink: 0; }

.mh2-guarantee-badge strong { display: block; color: #a8d48a; font-size: 15px; margin-bottom: 4px; }
.mh2-guarantee-badge p { color: #7aaa5a; font-size: 13px; line-height: 1.5; margin: 0; }

.mh2-price-increase-box {
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  color: #5d7095;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 10px 28px rgba(20,36,74,0.07);
  border: 1px solid rgba(22,42,87,0.08);
}

.mh2-price-increase-box strong { color: #162a57; }

/* ─── FINAL CTA ─── */
.mh2-final-cta {
  background: radial-gradient(circle at 50% 0%, rgba(225,179,59,0.12), transparent 50%), linear-gradient(180deg, #0f1e42 0%, #1a2f60 100%);
  text-align: center;
}

.mh2-final-inner { max-width: 900px; margin: 0 auto; }

.mh2-final-cta h2 { font-size: clamp(2.4rem, 4.8vw, 4.4rem); line-height: 1.06; color: #f8f2e8; }
.mh2-final-cta h2 span { color: #f0c44c; }

.mh2-final-cta p { margin: 22px auto 0; max-width: 820px; font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.8; color: #b8c8e4; }

.mh2-final-btn { margin-top: 36px; padding: 22px 40px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); box-shadow: 0 10px 40px rgba(225,179,59,0.5) !important; }

.mh2-final-note { margin-top: 18px; color: #7a94be; font-size: 15px; }

.mh2-final-guarantee { margin-top: 10px; color: #4a8a3a; font-size: 14px; font-weight: 700; }

/* ─── FOOTER ─── */
.mh2-footer { background: #0a1428; padding: 24px 0 30px; border-top: 1px solid rgba(225,179,59,0.1); }

.mh2-footer-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; color: #7f93b9; font-size: 14px; }

.mh2-footer-links { display: flex; align-items: center; gap: 10px; }
.mh2-footer-links button { background: none; border: none; color: #7f93b9; cursor: pointer; font: inherit; }
.mh2-footer-links button:hover { color: #f0c44c; }

/* ─── STICKY CTA ─── */
.mh2-sticky-cta {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 36;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c44c, #d8a623);
  color: #162a57;
  font-weight: 900;
  font-size: 15px;
  padding: 16px 24px;
  min-height: 44px;
  line-height: 1.35;
  box-shadow: 0 8px 30px rgba(225,179,59,0.5);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: Inter, sans-serif;
}

.mh2-sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(225,179,59,0.6); }

/* ─── MODAL ─── */
.mh2-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,19,38,0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mh2-modal {
  width: min(620px, 100%);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(10,19,38,0.3);
  position: relative;
}

.mh2-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(22,42,87,0.08);
  color: #162a57;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mh2-modal-topbar {
  padding: 16px 24px;
  background: linear-gradient(90deg, #1a2f60, #223f80);
  color: #f0c44c;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mh2-modal-body { padding: 32px 26px 28px; }

.mh2-modal-kicker { color: #c99512; font-size: 13px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }

.mh2-modal-heading { margin-top: 14px; color: #1a2f60; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.08; }

.mh2-modal-copy { margin-top: 14px; color: #63779b; font-size: 17px; line-height: 1.7; }

.mh2-inline-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff3f0;
  border: 1px solid #efb2a8;
  color: #b43c2e;
  font-size: 14px;
  line-height: 1.5;
}

.mh2-form-stack { margin-top: 22px; display: grid; gap: 16px; }
.mh2-field { display: grid; gap: 8px; }

.mh2-field label, .mh2-card-shell label { color: #385077; font-size: 14px; font-weight: 700; }

.mh2-field input {
  width: 100%;
  border: 1px solid rgba(22,42,87,0.14);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 16px;
  color: #1f345f;
  background: #fff;
  outline: none;
  font-family: Inter, sans-serif;
}

.mh2-field input:focus { border-color: #d3a21c; box-shadow: 0 0 0 4px rgba(225,179,59,0.14); }

.mh2-price-box {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(240,196,76,0.12), rgba(22,42,87,0.04));
  border: 1px solid rgba(225,179,59,0.24);
}

.mh2-price-box-top { display: flex; align-items: flex-end; gap: 8px; }

.mh2-price-box-top strong { font-family: Georgia, "Times New Roman", serif; font-size: 2.6rem; color: #1a2f60; line-height: 1; }
.mh2-price-box-top span { color: #63779b; font-size: 1rem; padding-bottom: 6px; }
.mh2-price-box-bottom { margin-top: 8px; color: #5f7297; font-size: 15px; line-height: 1.6; }

.mh2-card-shell { display: grid; gap: 8px; }

.mh2-card-element-wrap { border: 1px solid rgba(22,42,87,0.14); border-radius: 14px; padding: 16px; background: #fff; }

.mh2-checkout-note { text-align: center; color: #8092b4; font-size: 14px; line-height: 1.6; }

.mh2-secondary-link-btn { border: none; background: transparent; color: #5f7297; font-size: 15px; font-weight: 700; cursor: pointer; text-align: center; padding: 4px 0 0; font-family: Inter, sans-serif; }
.mh2-secondary-link-btn:hover { color: #1a2f60; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 1200px) {
  .mh2-transform-grid { grid-template-columns: repeat(2, 1fr); }
  .mh2-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mh2-stay-grid { grid-template-columns: repeat(2, 1fr); }
  .mh2-testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .mh2-proof-grid { grid-template-columns: repeat(2, 1fr); }

  .mh2-proof-item:nth-child(2) { border-right: none; }
  .mh2-proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(22,42,87,0.06); }
  .mh2-proof-item:last-child { border-bottom: none; }

  .mh2-problem-grid { grid-template-columns: 1fr; }

  .mh2-seasons-tabs { grid-template-columns: repeat(2, 1fr); }
  .mh2-season-tab { border-right: none; border-bottom: 1px solid rgba(22,42,87,0.08); }
  .mh2-season-list { grid-template-columns: 1fr; }
  .mh2-season-list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mh2-season-list li:last-child { border-bottom: none; }

  .mh2-vs-table-wrap { margin-top: 36px; }

  .mh2-steps-grid { flex-direction: column; align-items: center; gap: 16px; }
  .mh2-step-arrow { transform: rotate(90deg); padding: 0; }
  .mh2-step-card { max-width: 100%; width: 100%; }

  .mh2-compare-table th,
  .mh2-ct-feature-cell,
  .mh2-ct-others-cell,
  .mh2-ct-kingdom-cell { padding: 12px 14px; font-size: 13px; }

  .mh2-testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mh2-topbar { font-size: 11px; padding: 10px 14px; }

  .mh2-page { padding-top: 42px; }

  .mh2-navbar { top: 42px; }
  .mh2-navbar-member-text { display: none; }

  .mh2-hero { padding: 48px 0 52px; }

  .mh2-chip,
  .mh2-section-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 10px 14px;
    line-height: 1.45;
  }

  .mh2-chip { margin-bottom: 20px; }

  .mh2-hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    line-height: 1.06;
  }

  .mh2-hero-sub {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .mh2-vsl-wrap { margin-top: 32px; }

  .mh2-hero-btn {
    width: min(100%, 400px);
    padding: 18px 28px;
    font-size: 17px;
  }

  .mh2-hero-note { font-size: 14px; }

  .mh2-hero-proof-strip {
    font-size: 12px;
    gap: 10px;
    padding: 12px 18px;
  }

  .mh2-proof-item { padding: 28px 18px; }
  .mh2-proof-label { font-size: 14px; }

  .mh2-section { padding: 64px 0; }
  .mh2-section-head h2 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .mh2-section-head p { font-size: 16px; }

  .mh2-problem-card { min-height: auto; padding: 32px 24px; }

  .mh2-question-item {
    gap: 12px;
    padding: 16px;
    font-size: 15px;
  }

  .mh2-problem-conclusion { padding: 18px; font-size: 16px; }

  .mh2-transform-grid,
  .mh2-feature-grid,
  .mh2-stay-grid { grid-template-columns: 1fr; }

  .mh2-transform-card,
  .mh2-feature-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .mh2-vs-table-wrap { border-radius: 16px; }

  .mh2-vs-th-item,
  .mh2-vs-th-value,
  .mh2-vs-td-item,
  .mh2-vs-td-value,
  .mh2-vs-total-label,
  .mh2-vs-total-value,
  .mh2-vs-price-label,
  .mh2-vs-price-value { padding: 14px 16px; }

  .mh2-vs-td-item { font-size: 14px; }
  .mh2-vs-price-value { font-size: 2rem; }

  .mh2-guarantee-box { flex-direction: column; gap: 14px; padding: 24px 20px; }

  .mh2-seasons-tabs { grid-template-columns: repeat(2, 1fr); }
  .mh2-season-detail { padding: 28px 22px; }

  .mh2-season-arc { gap: 4px; }
  .mh2-arc-line { width: 20px; }
  .mh2-arc-label { font-size: 10px; margin-left: 4px; margin-right: 4px; }

  .mh2-faq-question { font-size: 15px; padding: 18px 20px; }
  .mh2-faq-answer { padding: 14px 20px 20px; font-size: 15px; }

  .mh2-pricing-head { flex-direction: column; align-items: flex-start; }

  .mh2-pricing-card h3,
  .mh2-pricing-sub,
  .mh2-price-row,
  .mh2-price-note,
  .mh2-pricing-list,
  .mh2-pricing-warning,
  .mh2-pricing-micro,
  .mh2-guarantee-badge { padding-left: 20px; padding-right: 20px; }

  .mh2-pricing-card h3 { padding-top: 20px; }

  .mh2-price-row { flex-wrap: wrap; row-gap: 4px; }
  .mh2-price-side { width: 100%; padding-bottom: 0; font-size: 16px; }

  .mh2-mid-cta { padding: 44px 0; }
  .mh2-mid-cta-copy { font-size: 16px; }

  .mh2-final-btn { padding: 20px 28px; font-size: 18px; }

  .mh2-sticky-cta {
    left: 14px;
    right: 14px;
    width: auto;
    text-align: center;
    bottom: 14px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .mh2-footer { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }

  .mh2-modal-overlay { padding: 12px; }
  .mh2-modal-topbar { padding: 15px 52px 15px 18px; font-size: 12px; letter-spacing: 0.16em; }
  .mh2-modal-body { padding: 24px 18px 22px; }
  .mh2-modal-copy { font-size: 15px; line-height: 1.65; }
  .mh2-form-stack { gap: 14px; }
  .mh2-price-box-top { flex-wrap: wrap; row-gap: 4px; }
  .mh2-card-element-wrap { padding: 14px; }
}

@media (max-width: 540px) {
  .mh2-container { width: calc(100% - 24px); }
  .mh2-section { padding: 52px 0; }

  .mh2-topbar { font-size: 10px; padding: 9px 10px; }

  .mh2-chip {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 9px 12px;
    margin-bottom: 20px;
    width: min(100%, 320px);
  }

  .mh2-section-kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
    width: min(100%, 320px);
  }

  .mh2-hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }

  .mh2-hero-sub { font-size: 15px; line-height: 1.7; margin-top: 18px; }

  .mh2-hero-btn {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
  }

  .mh2-hero-note { font-size: 13px; }

  .mh2-hero-proof-strip {
    flex-direction: column;
    gap: 6px;
    border-radius: 16px;
    padding: 14px 18px;
    text-align: center;
  }

  .mh2-hero-proof-divider { display: none; }

  .mh2-proof-grid { grid-template-columns: 1fr; }
  .mh2-proof-item { border-right: none !important; border-bottom: 1px solid rgba(22,42,87,0.06); }
  .mh2-proof-item:last-child { border-bottom: none; }

  .mh2-section-head h2 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .mh2-section-head p { font-size: 15px; line-height: 1.7; }

  .mh2-problem-card { padding: 28px 20px; }
  .mh2-problem-card h3 { font-size: 1.5rem; }
  .mh2-problem-card p { font-size: 15px; }

  .mh2-question-item { padding: 14px; font-size: 14px; }
  .mh2-question-mark { font-size: 20px; }

  .mh2-problem-conclusion { font-size: 15px; padding: 16px; }

  .mh2-transform-card { -moz-column-gap: 12px; column-gap: 12px; row-gap: 10px; padding: 20px 16px; }
  .mh2-transform-icon { width: 42px; height: 42px; border-radius: 12px; font-size: 20px; }
  .mh2-transform-card h3 { font-size: 17px; }
  .mh2-transform-card p { font-size: 14px; }

  .mh2-vs-td-item { font-size: 13px; }
  .mh2-vs-td-value { font-size: 13px; }
  .mh2-vs-price-value { font-size: 1.8rem; }

  .mh2-steps-grid { gap: 12px; }
  .mh2-step-card { padding: 24px 20px; }
  .mh2-step-num { width: 48px; height: 48px; font-size: 20px; }
  .mh2-step-card h3 { font-size: 16px; }
  .mh2-step-card p { font-size: 14px; }

  .mh2-guarantee-box { padding: 20px 16px; }
  .mh2-guarantee-box strong { font-size: 16px; }
  .mh2-guarantee-box p { font-size: 14px; }

  .mh2-seasons-tabs { grid-template-columns: 1fr 1fr; }
  .mh2-season-tab { padding: 16px 16px; }
  .mh2-season-tab-name { font-size: 16px; }
  .mh2-season-detail { padding: 24px 18px; }
  .mh2-season-detail h3 { font-size: 1.5rem; }

  .mh2-season-arc { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .mh2-arc-line { display: none; }
  .mh2-arc-item { flex-direction: column; align-items: center; gap: 4px; }
  .mh2-arc-label { margin: 0; }

  .mh2-compare-table-wrap { border-radius: 14px; }
  .mh2-compare-table th { padding: 12px 10px; font-size: 11px; }
  .mh2-ct-feature-cell { padding: 12px 10px; font-size: 13px; }
  .mh2-ct-others-cell,
  .mh2-ct-kingdom-cell { padding: 12px 10px; }

  .mh2-feature-card { flex-direction: row; align-items: flex-start; gap: 12px; padding: 18px 16px; }
  .mh2-feature-icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 13px; font-size: 20px; }
  .mh2-feature-card h3 { font-size: 16px; }
  .mh2-feature-card p { font-size: 14px; }

  .mh2-testimonial-card { padding: 22px 18px; min-height: auto; }
  .mh2-testimonial-highlight { font-size: 13px; }
  .mh2-testimonial-card p { font-size: 14px; }

  .mh2-faq-question { font-size: 14px; padding: 16px 18px; }
  .mh2-faq-answer { padding: 12px 18px 18px; font-size: 14px; }

  .mh2-stay-grid { grid-template-columns: 1fr; }
  .mh2-stay-card { min-height: auto; padding: 24px 18px; }
  .mh2-stay-card h3 { font-size: 17px; }
  .mh2-stay-card p { font-size: 14px; }

  .mh2-pricing-card { border-radius: 24px; }
  .mh2-pricing-head { padding: 20px 18px 14px; gap: 10px; }
  .mh2-pricing-kicker { font-size: 11px; letter-spacing: 0.16em; }
  .mh2-pricing-pill { font-size: 10px; padding: 8px 12px; }

  .mh2-pricing-card h3,
  .mh2-pricing-sub,
  .mh2-price-row,
  .mh2-price-note,
  .mh2-pricing-list,
  .mh2-pricing-warning,
  .mh2-pricing-micro,
  .mh2-guarantee-badge { padding-left: 16px; padding-right: 16px; }

  .mh2-price-main { font-size: 3.4rem; }
  .mh2-pricing-card h3 { font-size: 1.8rem; }
  .mh2-pricing-list li { font-size: 14px; padding: 10px 0 10px 22px; }
  .mh2-pricing-warning { font-size: 13px; padding: 14px 16px; margin: 16px 16px 0; }
  .mh2-pricing-micro { font-size: 13px; }

  .mh2-guarantee-badge { margin: 16px 16px 0; padding: 16px; }
  .mh2-guarantee-badge strong { font-size: 14px; }
  .mh2-guarantee-badge p { font-size: 12px; }

  .mh2-price-increase-box { font-size: 14px; padding: 18px 16px; }

  .mh2-final-cta h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .mh2-final-cta p { font-size: 15px; }
  .mh2-final-btn { width: 100%; padding: 18px 20px; font-size: 17px; }
  .mh2-final-note { font-size: 13px; }
  .mh2-final-guarantee { font-size: 13px; }

  .mh2-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 14px 16px;
    font-size: 14px;
  }

  .mh2-footer { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }

  .mh2-footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .mh2-footer-links { flex-wrap: wrap; justify-content: center; }

  .mh2-modal { max-height: calc(100dvh - 24px); border-radius: 22px; }
  .mh2-modal-body { padding: 20px 16px 20px; }
  .mh2-modal-heading { font-size: 1.7rem; }
  .mh2-modal-copy { font-size: 14px; line-height: 1.6; }
  .mh2-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .mh2-price-box-top strong { font-size: 2.2rem; }
}
/* ═══════════════════════════════════════════════════
   TESTIMONIAL VIDEO CARDS
═══════════════════════════════════════════════════ */

.mh2-testimonial-card-video {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(225, 179, 59, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-radius: 26px;
}

.mh2-tcard-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f60 100%);
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  flex-shrink: 0;
  min-height: 400px;
}

.mh2-tcard-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: block;
}

.mh2-tcard-thumbnail {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d1b3e 0%, #1c3367 50%, #243f82 100%);
  width: 100%;
  height: 100%;
}

.mh2-tcard-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10, 20, 50, 0.45);
  transition: background 0.2s ease;
  width: 100%;
  height: 100%;
}

.mh2-tcard-play-btn:hover .mh2-tcard-play-overlay,
[role="button"]:hover .mh2-tcard-play-overlay {
  background: rgba(10, 20, 50, 0.6);
}

.mh2-tcard-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c44c, #d9a725);
  display: grid;
  place-items: center;
  color: #162a57;
  font-size: 28px;
  box-shadow: 0 0 0 16px rgba(240, 196, 76, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[role="button"]:hover .mh2-tcard-play-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 20px rgba(240, 196, 76, 0.25);
}

.mh2-tcard-play-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.mh2-tcard-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mh2-tcard-quote {
  color: #3a4f72;
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  margin: 0;
}

.mh2-testimonial-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 24px;
  font-family: Inter, sans-serif;
}

/* ── Testimonial Grid — 3 columns desktop ── */
.mh2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .mh2-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .mh2-testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .mh2-tcard-video-wrap {
    border-radius: 26px 26px 0 0;
  }
}

@media (max-width: 540px) {
  .mh2-tcard-body {
    padding: 20px 18px 24px;
  }

  .mh2-tcard-play-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .mh2-tcard-play-label {
    font-size: 12px;
  }
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container{
  width: 100%;
}

@media (min-width: 640px){

  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){

  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){

  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){

  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){

  .container{
    max-width: 1536px;
  }
}

.pointer-events-none{
  pointer-events: none;
}

.\!visible{
  visibility: visible !important;
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.collapse{
  visibility: collapse;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-0{
  inset: 0px;
}

.bottom-0{
  bottom: 0px;
}

.bottom-6{
  bottom: 1.5rem;
}

.bottom-full{
  bottom: 100%;
}

.left-0{
  left: 0px;
}

.left-0\.5{
  left: 0.125rem;
}

.left-1\/2{
  left: 50%;
}

.left-3{
  left: 0.75rem;
}

.left-4{
  left: 1rem;
}

.right-0{
  right: 0px;
}

.right-6{
  right: 1.5rem;
}

.top-0{
  top: 0px;
}

.top-0\.5{
  top: 0.125rem;
}

.top-1{
  top: 0.25rem;
}

.top-1\/2{
  top: 50%;
}

.-z-10{
  z-index: -10;
}

.z-10{
  z-index: 10;
}

.z-50{
  z-index: 50;
}

.m-0{
  margin: 0px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.\!mt-3{
  margin-top: 0.75rem !important;
}

.\!mt-\[18px\]{
  margin-top: 18px !important;
}

.-mb-24{
  margin-bottom: -6rem;
}

.-ml-2{
  margin-left: -0.5rem;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-1\.5{
  margin-bottom: 0.375rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.ml-0\.5{
  margin-left: 0.125rem;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-1\.5{
  margin-left: 0.375rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-3{
  margin-left: 0.75rem;
}

.ml-4{
  margin-left: 1rem;
}

.ml-auto{
  margin-left: auto;
}

.mr-1{
  margin-right: 0.25rem;
}

.mr-1\.5{
  margin-right: 0.375rem;
}

.mt-0\.5{
  margin-top: 0.125rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-1\.5{
  margin-top: 0.375rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-2\.5{
  margin-top: 0.625rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.box-border{
  box-sizing: border-box;
}

.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-video{
  aspect-ratio: 16 / 9;
}

.h-1\.5{
  height: 0.375rem;
}

.h-10{
  height: 2.5rem;
}

.h-11{
  height: 2.75rem;
}

.h-14{
  height: 3.5rem;
}

.h-16{
  height: 4rem;
}

.h-2{
  height: 0.5rem;
}

.h-2\.5{
  height: 0.625rem;
}

.h-20{
  height: 5rem;
}

.h-24{
  height: 6rem;
}

.h-3{
  height: 0.75rem;
}

.h-3\.5{
  height: 0.875rem;
}

.h-32{
  height: 8rem;
}

.h-4{
  height: 1rem;
}

.h-40{
  height: 10rem;
}

.h-5{
  height: 1.25rem;
}

.h-6{
  height: 1.5rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-9{
  height: 2.25rem;
}

.h-\[42px\]{
  height: 42px;
}

.h-full{
  height: 100%;
}

.h-px{
  height: 1px;
}

.max-h-\[calc\(100dvh-24px\)\]{
  max-height: calc(100dvh - 24px);
}

.min-h-0{
  min-height: 0px;
}

.min-h-\[100dvh\]{
  min-height: 100dvh;
}

.min-h-\[100px\]{
  min-height: 100px;
}

.min-h-\[44px\]{
  min-height: 44px;
}

.min-h-screen{
  min-height: 100vh;
}

.w-1\.5{
  width: 0.375rem;
}

.w-10{
  width: 2.5rem;
}

.w-11{
  width: 2.75rem;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-16{
  width: 4rem;
}

.w-2{
  width: 0.5rem;
}

.w-2\.5{
  width: 0.625rem;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-28{
  width: 7rem;
}

.w-3{
  width: 0.75rem;
}

.w-3\.5{
  width: 0.875rem;
}

.w-4{
  width: 1rem;
}

.w-40{
  width: 10rem;
}

.w-5{
  width: 1.25rem;
}

.w-56{
  width: 14rem;
}

.w-6{
  width: 1.5rem;
}

.w-64{
  width: 16rem;
}

.w-7{
  width: 1.75rem;
}

.w-8{
  width: 2rem;
}

.w-9{
  width: 2.25rem;
}

.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.min-w-0{
  min-width: 0px;
}

.min-w-\[200px\]{
  min-width: 200px;
}

.min-w-\[220px\]{
  min-width: 220px;
}

.min-w-\[44px\]{
  min-width: 44px;
}

.min-w-full{
  min-width: 100%;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-4xl{
  max-width: 56rem;
}

.max-w-6xl{
  max-width: 72rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-\[140px\]{
  max-width: 140px;
}

.max-w-\[280px\]{
  max-width: 280px;
}

.max-w-\[620px\]{
  max-width: 620px;
}

.max-w-lg{
  max-width: 32rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-sm{
  max-width: 24rem;
}

.max-w-xl{
  max-width: 36rem;
}

.max-w-xs{
  max-width: 20rem;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink{
  flex-shrink: 1;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.shrink-0{
  flex-shrink: 0;
}

.grow{
  flex-grow: 1;
}

.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse{

  50%{
    opacity: .5;
  }
}

.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin{

  to{
    transform: rotate(360deg);
  }
}

.animate-spin{
  animation: spin 1s linear infinite;
}

.cursor-not-allowed{
  cursor: not-allowed;
}

.cursor-pointer{
  cursor: pointer;
}

.resize-none{
  resize: none;
}

.resize{
  resize: both;
}

.list-inside{
  list-style-position: inside;
}

.list-decimal{
  list-style-type: decimal;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-\[1fr_1\.5fr\]{
  grid-template-columns: 1fr 1.5fr;
}

.grid-cols-\[1fr_1fr_120px_140px\]{
  grid-template-columns: 1fr 1fr 120px 140px;
}

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.\!gap-3\.5{
  gap: 0.875rem !important;
}

.gap-0{
  gap: 0px;
}

.gap-0\.5{
  gap: 0.125rem;
}

.gap-1{
  gap: 0.25rem;
}

.gap-1\.5{
  gap: 0.375rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-6{
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-1{
  row-gap: 0.25rem;
}

.gap-y-1\.5{
  row-gap: 0.375rem;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-\[\#e8dcc2\] > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(232 220 194 / var(--tw-divide-opacity, 1));
}

.divide-\[\#ede4d4\] > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(237 228 212 / var(--tw-divide-opacity, 1));
}

.divide-\[\#eee4d0\] > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(238 228 208 / var(--tw-divide-opacity, 1));
}

.divide-stone-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-divide-opacity, 1));
}

.divide-white\/5 > :not([hidden]) ~ :not([hidden]){
  border-color: rgb(255 255 255 / 0.05);
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.overscroll-contain{
  overscroll-behavior: contain;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-wrap{
  text-wrap: wrap;
}

.break-words{
  overflow-wrap: break-word;
}

.break-all{
  word-break: break-all;
}

.\!rounded-2xl{
  border-radius: 1rem !important;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-\[1\.1rem\]{
  border-radius: 1.1rem;
}

.rounded-\[1\.25rem\]{
  border-radius: 1.25rem;
}

.rounded-\[28px\]{
  border-radius: 28px;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.rounded-t-3xl{
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.border{
  border-width: 1px;
}

.border-2{
  border-width: 2px;
}

.border-x{
  border-left-width: 1px;
  border-right-width: 1px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-dashed{
  border-style: dashed;
}

.border-\[\#0f1f38\]{
  --tw-border-opacity: 1;
  border-color: rgb(15 31 56 / var(--tw-border-opacity, 1));
}

.border-\[\#9a4d12\]{
  --tw-border-opacity: 1;
  border-color: rgb(154 77 18 / var(--tw-border-opacity, 1));
}

.border-\[\#a7f3d0\]{
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.border-\[\#bfdbfe\]{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-\[\#d2b46c\]{
  --tw-border-opacity: 1;
  border-color: rgb(210 180 108 / var(--tw-border-opacity, 1));
}

.border-\[\#d4af37\]\/25{
  border-color: rgb(212 175 55 / 0.25);
}

.border-\[\#d4af37\]\/35{
  border-color: rgb(212 175 55 / 0.35);
}

.border-\[\#d4b15a\]{
  --tw-border-opacity: 1;
  border-color: rgb(212 177 90 / var(--tw-border-opacity, 1));
}

.border-\[\#d6c5a2\]{
  --tw-border-opacity: 1;
  border-color: rgb(214 197 162 / var(--tw-border-opacity, 1));
}

.border-\[\#d7ba72\]{
  --tw-border-opacity: 1;
  border-color: rgb(215 186 114 / var(--tw-border-opacity, 1));
}

.border-\[\#d8b4fe\]{
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

.border-\[\#d97706\]{
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}

.border-\[\#dbeafe\]{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-\[\#dcc9a5\]{
  --tw-border-opacity: 1;
  border-color: rgb(220 201 165 / var(--tw-border-opacity, 1));
}

.border-\[\#dec79b\]{
  --tw-border-opacity: 1;
  border-color: rgb(222 199 155 / var(--tw-border-opacity, 1));
}

.border-\[\#e2c777\]{
  --tw-border-opacity: 1;
  border-color: rgb(226 199 119 / var(--tw-border-opacity, 1));
}

.border-\[\#e2d3b5\]{
  --tw-border-opacity: 1;
  border-color: rgb(226 211 181 / var(--tw-border-opacity, 1));
}

.border-\[\#e2e8f0\]{
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border-\[\#e3d3b1\]{
  --tw-border-opacity: 1;
  border-color: rgb(227 211 177 / var(--tw-border-opacity, 1));
}

.border-\[\#e7dac0\]{
  --tw-border-opacity: 1;
  border-color: rgb(231 218 192 / var(--tw-border-opacity, 1));
}

.border-\[\#e8d9b5\]{
  --tw-border-opacity: 1;
  border-color: rgb(232 217 181 / var(--tw-border-opacity, 1));
}

.border-\[\#e8dcc2\]{
  --tw-border-opacity: 1;
  border-color: rgb(232 220 194 / var(--tw-border-opacity, 1));
}

.border-\[\#eadfca\]{
  --tw-border-opacity: 1;
  border-color: rgb(234 223 202 / var(--tw-border-opacity, 1));
}

.border-\[\#ecd7a3\]{
  --tw-border-opacity: 1;
  border-color: rgb(236 215 163 / var(--tw-border-opacity, 1));
}

.border-\[\#ede4d4\]{
  --tw-border-opacity: 1;
  border-color: rgb(237 228 212 / var(--tw-border-opacity, 1));
}

.border-\[\#f0e8d8\]{
  --tw-border-opacity: 1;
  border-color: rgb(240 232 216 / var(--tw-border-opacity, 1));
}

.border-\[\#f5d673\]\/40{
  border-color: rgb(245 214 115 / 0.4);
}

.border-\[\#fde68a\]{
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}

.border-\[rgba\(201\2c 162\2c 39\2c \.12\)\]{
  border-color: rgba(201,162,39,.12);
}

.border-\[rgba\(201\2c 162\2c 39\2c \.3\)\]{
  border-color: rgba(201,162,39,.3);
}

.border-amber-100{
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}

.border-amber-200{
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}

.border-amber-300\/30{
  border-color: rgb(252 211 77 / 0.3);
}

.border-amber-400\/20{
  border-color: rgb(251 191 36 / 0.2);
}

.border-amber-400\/25{
  border-color: rgb(251 191 36 / 0.25);
}

.border-amber-400\/30{
  border-color: rgb(251 191 36 / 0.3);
}

.border-amber-600{
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}

.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-blue-300\/25{
  border-color: rgb(147 197 253 / 0.25);
}

.border-blue-400\/20{
  border-color: rgb(96 165 250 / 0.2);
}

.border-emerald-200{
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.border-emerald-300{
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}

.border-emerald-300\/25{
  border-color: rgb(110 231 183 / 0.25);
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-green-100{
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-green-400\/20{
  border-color: rgb(74 222 128 / 0.2);
}

.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-purple-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}

.border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}

.border-purple-300{
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

.border-purple-400\/20{
  border-color: rgb(192 132 252 / 0.2);
}

.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-red-400\/20{
  border-color: rgb(248 113 113 / 0.2);
}

.border-rose-100{
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}

.border-rose-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}

.border-slate-100{
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}

.border-slate-200{
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border-slate-300{
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}

.border-stone-200{
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}

.border-stone-300{
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}

.border-transparent{
  border-color: transparent;
}

.border-violet-100{
  --tw-border-opacity: 1;
  border-color: rgb(237 233 254 / var(--tw-border-opacity, 1));
}

.border-violet-200{
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-white\/10{
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/15{
  border-color: rgb(255 255 255 / 0.15);
}

.border-white\/20{
  border-color: rgb(255 255 255 / 0.2);
}

.border-yellow-400\/20{
  border-color: rgb(250 204 21 / 0.2);
}

.border-t-transparent{
  border-top-color: transparent;
}

.bg-\[\#0b1320\]{
  --tw-bg-opacity: 1;
  background-color: rgb(11 19 32 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0f1f38\]{
  --tw-bg-opacity: 1;
  background-color: rgb(15 31 56 / var(--tw-bg-opacity, 1));
}

.bg-\[\#111827\]\/85{
  background-color: rgb(17 24 39 / 0.85);
}

.bg-\[\#172238\]{
  --tw-bg-opacity: 1;
  background-color: rgb(23 34 56 / var(--tw-bg-opacity, 1));
}

.bg-\[\#c9a227\]{
  --tw-bg-opacity: 1;
  background-color: rgb(201 162 39 / var(--tw-bg-opacity, 1));
}

.bg-\[\#d4af37\]{
  --tw-bg-opacity: 1;
  background-color: rgb(212 175 55 / var(--tw-bg-opacity, 1));
}

.bg-\[\#eff6ff\]{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f0e8d5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 232 213 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f0fdf4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f5d673\]\/20{
  background-color: rgb(245 214 115 / 0.2);
}

.bg-\[\#f6f0e4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(246 240 228 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f7f1e4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(247 241 228 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f8fafc\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.bg-\[\#faf5ff\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#faf7f0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 247 240 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fbf7ef\]{
  --tw-bg-opacity: 1;
  background-color: rgb(251 247 239 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fcfaf4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(252 250 244 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff4d6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 244 214 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff7dd\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 221 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff8e2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 248 226 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff8e6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 248 230 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fffbeb\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fffdf7\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 253 247 / var(--tw-bg-opacity, 1));
}

.bg-\[rgba\(201\2c 162\2c 39\2c \.08\)\]{
  background-color: rgba(201,162,39,.08);
}

.bg-\[rgba\(201\2c 162\2c 39\2c \.1\)\]{
  background-color: rgba(201,162,39,.1);
}

.bg-\[rgba\(201\2c 162\2c 39\2c \.12\)\]{
  background-color: rgba(201,162,39,.12);
}

.bg-amber-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}

.bg-amber-100\/60{
  background-color: rgb(254 243 199 / 0.6);
}

.bg-amber-400\/10{
  background-color: rgb(251 191 36 / 0.1);
}

.bg-amber-400\/15{
  background-color: rgb(251 191 36 / 0.15);
}

.bg-amber-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-amber-50\/40{
  background-color: rgb(255 251 235 / 0.4);
}

.bg-amber-50\/80{
  background-color: rgb(255 251 235 / 0.8);
}

.bg-amber-600{
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/30{
  background-color: rgb(0 0 0 / 0.3);
}

.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-100\/60{
  background-color: rgb(219 234 254 / 0.6);
}

.bg-blue-400\/10{
  background-color: rgb(96 165 250 / 0.1);
}

.bg-blue-400\/15{
  background-color: rgb(96 165 250 / 0.15);
}

.bg-blue-50\/40{
  background-color: rgb(239 246 255 / 0.4);
}

.bg-emerald-400\/15{
  background-color: rgb(52 211 153 / 0.15);
}

.bg-emerald-50{
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}

.bg-emerald-500{
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-green-400\/10{
  background-color: rgb(74 222 128 / 0.1);
}

.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-green-50\/60{
  background-color: rgb(240 253 244 / 0.6);
}

.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}

.bg-purple-100\/60{
  background-color: rgb(243 232 255 / 0.6);
}

.bg-purple-200\/60{
  background-color: rgb(233 213 255 / 0.6);
}

.bg-purple-400\/10{
  background-color: rgb(192 132 252 / 0.1);
}

.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}

.bg-purple-50\/40{
  background-color: rgb(250 245 255 / 0.4);
}

.bg-red-400\/10{
  background-color: rgb(248 113 113 / 0.1);
}

.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-rose-100{
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}

.bg-rose-100\/60{
  background-color: rgb(255 228 230 / 0.6);
}

.bg-rose-50\/40{
  background-color: rgb(255 241 242 / 0.4);
}

.bg-slate-100{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.bg-slate-200{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.bg-slate-300{
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}

.bg-slate-50{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.bg-stone-100{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}

.bg-stone-900{
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color: transparent;
}

.bg-violet-100\/60{
  background-color: rgb(237 233 254 / 0.6);
}

.bg-violet-200\/60{
  background-color: rgb(221 214 254 / 0.6);
}

.bg-violet-50{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}

.bg-violet-50\/40{
  background-color: rgb(245 243 255 / 0.4);
}

.bg-violet-50\/60{
  background-color: rgb(245 243 255 / 0.6);
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/5{
  background-color: rgb(255 255 255 / 0.05);
}

.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/90{
  background-color: rgb(255 255 255 / 0.9);
}

.bg-yellow-400\/10{
  background-color: rgb(250 204 21 / 0.1);
}

.bg-\[linear-gradient\(120deg\2c transparent_0\%\2c rgba\(255\2c 255\2c 255\2c 0\.04\)_35\%\2c transparent_60\%\)\]{
  background-image: linear-gradient(120deg,transparent 0%,rgba(255,255,255,0.04) 35%,transparent 60%);
}

.bg-\[linear-gradient\(135deg\2c \#0f1f38\2c \#172554\)\]{
  background-image: linear-gradient(135deg,#0f1f38,#172554);
}

.bg-\[linear-gradient\(135deg\2c \#92400e\2c \#f59e0b\)\]{
  background-image: linear-gradient(135deg,#92400e,#f59e0b);
}

.bg-\[linear-gradient\(135deg\2c _rgba\(245\2c 158\2c 11\2c 0\.95\)\2c _rgba\(250\2c 204\2c 21\2c 0\.72\)\)\]{
  background-image: linear-gradient(135deg, rgba(245,158,11,0.95), rgba(250,204,21,0.72));
}

.bg-\[linear-gradient\(180deg\2c rgba\(255\2c 255\2c 255\2c 0\.03\)\2c rgba\(255\2c 255\2c 255\2c 0\.015\)\)\]{
  background-image: linear-gradient(180deg,rgba(255,255,255,0.03),rgba(255,255,255,0.015));
}

.bg-\[linear-gradient\(90deg\2c \#c9a227\2c \#f5d673\)\]{
  background-image: linear-gradient(90deg,#c9a227,#f5d673);
}

.bg-\[linear-gradient\(90deg\2c transparent\2c \#c9a227\2c \#f5d673\2c \#c9a227\2c transparent\)\]{
  background-image: linear-gradient(90deg,transparent,#c9a227,#f5d673,#c9a227,transparent);
}

.bg-\[radial-gradient\(circle_at_top_left\2c _rgba\(99\2c 102\2c 241\2c 0\.35\)\2c _transparent_30\%\)\2c radial-gradient\(circle_at_bottom_right\2c _rgba\(245\2c 158\2c 11\2c 0\.22\)\2c _transparent_28\%\)\2c linear-gradient\(135deg\2c _\#06111f_0\%\2c _\#0c1f3f_45\%\2c _\#10163a_100\%\)\]{
  background-image: radial-gradient(circle at top left, rgba(99,102,241,0.35), transparent 30%),radial-gradient(circle at bottom right, rgba(245,158,11,0.22), transparent 28%),linear-gradient(135deg, #06111f 0%, #0c1f3f 45%, #10163a 100%);
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-amber-100\/30{
  --tw-gradient-from: rgb(254 243 199 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(254 243 199 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-amber-50{
  --tw-gradient-from: #fffbeb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 251 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-amber-500{
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-slate-100{
  --tw-gradient-from: #f1f5f9 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(241 245 249 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-amber-50{
  --tw-gradient-to: rgb(255 251 235 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fffbeb var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-orange-50{
  --tw-gradient-to: rgb(255 247 237 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff7ed var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-amber-600{
  --tw-gradient-to: #d97706 var(--tw-gradient-to-position);
}

.to-orange-50{
  --tw-gradient-to: #fff7ed var(--tw-gradient-to-position);
}

.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.to-yellow-50{
  --tw-gradient-to: #fefce8 var(--tw-gradient-to-position);
}

.fill-\[\#eab308\]{
  fill: #eab308;
}

.\!p-3\.5{
  padding: 0.875rem !important;
}

.\!p-4{
  padding: 1rem !important;
}

.p-0\.5{
  padding: 0.125rem;
}

.p-1{
  padding: 0.25rem;
}

.p-12{
  padding: 3rem;
}

.p-2{
  padding: 0.5rem;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.\!px-4{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.\!py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.\!pb-\[18px\]{
  padding-bottom: 18px !important;
}

.\!pr-16{
  padding-right: 4rem !important;
}

.\!pt-5{
  padding-top: 1.25rem !important;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-28{
  padding-bottom: 7rem;
}

.pb-\[120px\]{
  padding-bottom: 120px;
}

.pl-10{
  padding-left: 2.5rem;
}

.pl-4{
  padding-left: 1rem;
}

.pl-9{
  padding-left: 2.25rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pr-4{
  padding-right: 1rem;
}

.pt-0\.5{
  padding-top: 0.125rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.font-\[\'Playfair_Display\'\]{
  font-family: 'Playfair Display';
}

.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.\!text-\[15px\]{
  font-size: 15px !important;
}

.\!text-xs{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl{
  font-size: 3rem;
  line-height: 1;
}

.text-\[10px\]{
  font-size: 10px;
}

.text-\[11px\]{
  font-size: 11px;
}

.text-\[12px\]{
  font-size: 12px;
}

.text-\[13px\]{
  font-size: 13px;
}

.text-\[14px\]{
  font-size: 14px;
}

.text-\[15px\]{
  font-size: 15px;
}

.text-\[16px\]{
  font-size: 16px;
}

.text-\[18px\]{
  font-size: 18px;
}

.text-\[20px\]{
  font-size: 20px;
}

.text-\[22px\]{
  font-size: 22px;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-black{
  font-weight: 900;
}

.font-bold{
  font-weight: 700;
}

.font-extrabold{
  font-weight: 800;
}

.font-light{
  font-weight: 300;
}

.font-medium{
  font-weight: 500;
}

.font-normal{
  font-weight: 400;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.capitalize{
  text-transform: capitalize;
}

.normal-case{
  text-transform: none;
}

.italic{
  font-style: italic;
}

.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.\!leading-6{
  line-height: 1.5rem !important;
}

.\!leading-\[1\.4\]{
  line-height: 1.4 !important;
}

.leading-4{
  line-height: 1rem;
}

.leading-5{
  line-height: 1.25rem;
}

.leading-6{
  line-height: 1.5rem;
}

.leading-7{
  line-height: 1.75rem;
}

.leading-8{
  line-height: 2rem;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-snug{
  line-height: 1.375;
}

.leading-tight{
  line-height: 1.25;
}

.\!tracking-\[0\.12em\]{
  letter-spacing: 0.12em !important;
}

.tracking-\[0\.08em\]{
  letter-spacing: 0.08em;
}

.tracking-\[0\.12em\]{
  letter-spacing: 0.12em;
}

.tracking-\[0\.14em\]{
  letter-spacing: 0.14em;
}

.tracking-\[0\.16em\]{
  letter-spacing: 0.16em;
}

.tracking-\[0\.18em\]{
  letter-spacing: 0.18em;
}

.tracking-\[0\.1em\]{
  letter-spacing: 0.1em;
}

.tracking-\[0\.24em\]{
  letter-spacing: 0.24em;
}

.tracking-tight{
  letter-spacing: -0.025em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.tracking-widest{
  letter-spacing: 0.1em;
}

.text-\[\#065f46\]{
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}

.text-\[\#08111f\]{
  --tw-text-opacity: 1;
  color: rgb(8 17 31 / var(--tw-text-opacity, 1));
}

.text-\[\#0d1b3e\]{
  --tw-text-opacity: 1;
  color: rgb(13 27 62 / var(--tw-text-opacity, 1));
}

.text-\[\#0f172a\]{
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

.text-\[\#0f1f38\]{
  --tw-text-opacity: 1;
  color: rgb(15 31 56 / var(--tw-text-opacity, 1));
}

.text-\[\#111827\]{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-\[\#172554\]{
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}

.text-\[\#1a2f60\]{
  --tw-text-opacity: 1;
  color: rgb(26 47 96 / var(--tw-text-opacity, 1));
}

.text-\[\#1c1917\]{
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}

.text-\[\#1e3a8a\]{
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-\[\#5f7297\]{
  --tw-text-opacity: 1;
  color: rgb(95 114 151 / var(--tw-text-opacity, 1));
}

.text-\[\#64748b\]{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.text-\[\#6b21a8\]{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}

.text-\[\#7c5208\]{
  --tw-text-opacity: 1;
  color: rgb(124 82 8 / var(--tw-text-opacity, 1));
}

.text-\[\#7c5a18\]{
  --tw-text-opacity: 1;
  color: rgb(124 90 24 / var(--tw-text-opacity, 1));
}

.text-\[\#8097ba\]{
  --tw-text-opacity: 1;
  color: rgb(128 151 186 / var(--tw-text-opacity, 1));
}

.text-\[\#8a5a00\]{
  --tw-text-opacity: 1;
  color: rgb(138 90 0 / var(--tw-text-opacity, 1));
}

.text-\[\#92400e\]{
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}

.text-\[\#9a4d12\]{
  --tw-text-opacity: 1;
  color: rgb(154 77 18 / var(--tw-text-opacity, 1));
}

.text-\[\#9a670d\]{
  --tw-text-opacity: 1;
  color: rgb(154 103 13 / var(--tw-text-opacity, 1));
}

.text-\[\#a16207\]{
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}

.text-\[\#b45309\]{
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.text-\[\#b8c8e4\]{
  --tw-text-opacity: 1;
  color: rgb(184 200 228 / var(--tw-text-opacity, 1));
}

.text-\[\#c9a227\]{
  --tw-text-opacity: 1;
  color: rgb(201 162 39 / var(--tw-text-opacity, 1));
}

.text-\[\#c9a227\]\/80{
  color: rgb(201 162 39 / 0.8);
}

.text-\[\#d4af37\]{
  --tw-text-opacity: 1;
  color: rgb(212 175 55 / var(--tw-text-opacity, 1));
}

.text-\[\#d4af37\]\/75{
  color: rgb(212 175 55 / 0.75);
}

.text-\[\#d4af37\]\/80{
  color: rgb(212 175 55 / 0.8);
}

.text-\[\#d97706\]{
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}

.text-\[\#eab308\]{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}

.text-\[\#f5d673\]{
  --tw-text-opacity: 1;
  color: rgb(245 214 115 / var(--tw-text-opacity, 1));
}

.text-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\]{
  color: rgba(255,255,255,0.5);
}

.text-amber-300{
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}

.text-amber-500{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.text-amber-600{
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}

.text-amber-700{
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.text-amber-800{
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}

.text-amber-900{
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-200{
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}

.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.text-emerald-200{
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}

.text-emerald-300{
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}

.text-emerald-500{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}

.text-emerald-600{
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}

.text-emerald-700{
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}

.text-emerald-800{
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}

.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-green-200{
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}

.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.text-green-800{
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-orange-500{
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}

.text-purple-200{
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}

.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}

.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}

.text-red-200{
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}

.text-red-300{
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.text-red-400{
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-rose-400{
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}

.text-rose-600{
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}

.text-rose-700{
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}

.text-slate-200{
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}

.text-slate-200\/90{
  color: rgb(226 232 240 / 0.9);
}

.text-slate-300{
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}

.text-slate-400{
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.text-slate-500{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.text-slate-600{
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.text-slate-700{
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}

.text-slate-800{
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}

.text-slate-950{
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}

.text-stone-400{
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}

.text-stone-500{
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}

.text-stone-600{
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}

.text-stone-700{
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}

.text-stone-900{
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}

.text-violet-500{
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}

.text-violet-600{
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}

.text-violet-700{
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/35{
  color: rgb(255 255 255 / 0.35);
}

.text-white\/40{
  color: rgb(255 255 255 / 0.4);
}

.text-white\/45{
  color: rgb(255 255 255 / 0.45);
}

.text-white\/50{
  color: rgb(255 255 255 / 0.5);
}

.text-white\/55{
  color: rgb(255 255 255 / 0.55);
}

.text-white\/60{
  color: rgb(255 255 255 / 0.6);
}

.text-white\/70{
  color: rgb(255 255 255 / 0.7);
}

.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}

.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}

.text-yellow-200{
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}

.underline{
  text-decoration-line: underline;
}

.line-through{
  text-decoration-line: line-through;
}

.underline-offset-2{
  text-underline-offset: 2px;
}

.underline-offset-4{
  text-underline-offset: 4px;
}

.placeholder-\[\#b8c8e4\]::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(184 200 228 / var(--tw-placeholder-opacity, 1));
}

.placeholder-\[\#b8c8e4\]::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(184 200 228 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(203 213 225 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(203 213 225 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(148 163 184 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(148 163 184 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity, 1));
}

.placeholder-slate-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity, 1));
}

.opacity-50{
  opacity: 0.5;
}

.opacity-60{
  opacity: 0.6;
}

.opacity-70{
  opacity: 0.7;
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_12px_30px_rgba\(0\2c 0\2c 0\2c 0\.18\)\]{
  --tw-shadow: 0 12px 30px rgba(0,0,0,0.18);
  --tw-shadow-colored: 0 12px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_20px_60px_rgba\(0\2c 0\2c 0\2c 0\.28\)\]{
  --tw-shadow: 0 20px 60px rgba(0,0,0,0.28);
  --tw-shadow-colored: 0 20px 60px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_8px_20px_rgba\(15\2c 27\2c 62\2c 0\.12\)\]{
  --tw-shadow: 0 8px 20px rgba(15,27,62,0.12);
  --tw-shadow-colored: 0 8px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline{
  outline-style: solid;
}

.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-200{
  transition-delay: 200ms;
}

.delay-300{
  transition-delay: 300ms;
}

.duration-1000{
  transition-duration: 1000ms;
}

.duration-300{
  transition-duration: 300ms;
}

.duration-500{
  transition-duration: 500ms;
}

.duration-700{
  transition-duration: 700ms;
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

:root {
  --kid-navy: #1e2d4a;
  --kid-navy-deep: #0d1b2a;
  --kid-gold: #c9a227;
  --kid-gold-light: #f5d673;
  --kid-gold-pale: rgba(201, 162, 39, 0.15);
  --kid-parchment: #f8f5f0;
  --kid-parchment-2: #ede9e4;

  --phase-foundation-color: #92400e;
  --phase-foundation-light: #f59e0b;
  --phase-foundation-bg: #fffbeb;
  --phase-foundation-border: #fde68a;

  --phase-alignment-color: #064e3b;
  --phase-alignment-light: #10b981;
  --phase-alignment-bg: #ecfdf5;
  --phase-alignment-border: #a7f3d0;

  --phase-authority-color: #3b0764;
  --phase-authority-light: #a78bfa;
  --phase-authority-bg: #f5f3ff;
  --phase-authority-border: #ddd6fe;

  --phase-commission-color: #7f1d1d;
  --phase-commission-light: #f87171;
  --phase-commission-bg: #fff1f2;
  --phase-commission-border: #fecdd3;

  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--kid-parchment);
  color: #1c1917;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.authority-fade-in { animation: authorityFadeIn 380ms ease-out both; }

.authority-fade-out { animation: authorityFadeOut 1500ms ease-in both; }

@keyframes authorityFadeIn {
  from { opacity: 0; transform: scale(0.995); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes authorityFadeOut {
  0% { opacity: 1; filter: blur(0px); }
  65% { opacity: 1; filter: blur(0px); }
  100% { opacity: 0; filter: blur(6px); }
}

.authority-shimmer {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 120, 0.10) 35%, rgba(255, 215, 120, 0.26) 50%, rgba(255, 215, 120, 0.10) 65%, transparent 100%);
  filter: blur(6px);
}

.authority-shimmer.is-active {
  opacity: 1;
  animation: shimmerSweep 900ms ease-out both;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-30%) rotate(18deg); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateX(30%) rotate(18deg); opacity: 0; }
}

.authority-card-enter { animation: authorityCardEnter 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both; }

@keyframes authorityCardEnter {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.authority-gold-glow {
  box-shadow: 0 0 0 1px rgba(255, 215, 120, 0.18), 0 0 24px rgba(255, 200, 120, 0.18), 0 0 55px rgba(255, 200, 120, 0.10), 0 26px 80px rgba(0, 0, 0, 0.55);
}

.authority-shake { animation: authorityShake 450ms ease-in-out both; }

@keyframes authorityShake {
  0% { transform: translate(0, 0) scale(1); }
  10% { transform: translate(-2px, 1px) scale(1.002); }
  20% { transform: translate(2px, -1px) scale(1.002); }
  30% { transform: translate(-3px, 2px) scale(1.003); }
  40% { transform: translate(3px, -2px) scale(1.003); }
  55% { transform: translate(-2px, 1px) scale(1.002); }
  70% { transform: translate(2px, -1px) scale(1.002); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes sosPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.45); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.sos-pulse { animation: sosPulse 2.2s infinite; }

@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.gold-shimmer {
  position: relative;
  overflow: hidden;
}

.gold-shimmer::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.20) 40%, rgba(255, 215, 0, 0.0) 60%);
  background-size: 200% 100%;
  animation: goldShimmer 2.6s linear infinite;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fu { animation: fadeUp 0.32s ease both; }

.fu2 { animation: fadeUp 0.32s ease both 0.06s; }

.fu3 { animation: fadeUp 0.32s ease both 0.12s; }

.fu4 { animation: fadeUp 0.32s ease both 0.18s; }

.fu5 { animation: fadeUp 0.32s ease both 0.24s; }

@keyframes shieldDrop {
  0% { opacity: 0; transform: translateY(-20px) scale(0.85); }
  60% { transform: translateY(4px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.kid-shield-drop { animation: shieldDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

@keyframes taglineReveal {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.kid-tagline-reveal { animation: taglineReveal 0.8s ease both 0.6s; }

.kid-divider-reveal { animation: taglineReveal 0.6s ease both 0.9s; }

@keyframes speakPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}

.speak-active { animation: speakPulse 1s ease-in-out infinite; }

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.kid-arrow-bounce { animation: arrowBounce 1.2s ease-in-out infinite; }

@keyframes audioBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes declareFlash {
  0% { background-color: #f0fdf4; }
  100% { background-color: transparent; }
}

.kid-bg { background-color: var(--kid-parchment); }

.kid-card {
  background: white;
  border: 1px solid var(--kid-parchment-2);
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.kid-card-dark {
  background: linear-gradient(135deg, var(--kid-navy), var(--kid-navy-deep));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.kid-card-premium {
  background: linear-gradient(135deg, #1c1917, #27211e);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 20px;
}

.kid-gold-glow {
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.2), 0 0 20px rgba(201, 162, 39, 0.1), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.kid-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.1);
  color: var(--kid-gold);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.kid-divider {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--kid-gold), transparent);
  border: none;
  margin: 0 auto;
}

.kid-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  background: linear-gradient(135deg, #92400e, #f59e0b);
  color: white;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.28);
  text-decoration: none;
}

.kid-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}

/* Library / premium episode system */

.cover-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  z-index: 2;
}

.cover-chip {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.cover-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.cover-title {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 8px rgba(2,6,23,.18);
}

.cover-copy {
  font-size: 14px;
  line-height: 1.58;
  color: rgba(255,255,255,.78);
  max-width: 560px;
}

.tab-active {
  color: #fff !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.placeholder\:text-slate-400::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.placeholder\:text-slate-400::placeholder{
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.placeholder\:text-slate-500::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.placeholder\:text-slate-500::placeholder{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-\[\#d2b46c\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(210 180 108 / var(--tw-border-opacity, 1));
}

.hover\:border-\[\#eadfca\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(234 223 202 / var(--tw-border-opacity, 1));
}

.hover\:border-amber-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}

.hover\:border-blue-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.hover\:border-red-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.hover\:border-slate-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}

.hover\:border-violet-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(196 181 253 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#111c2e\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(17 28 46 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#f4ecde\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(244 236 222 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#f5ede0\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 237 224 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#faf6ed\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 246 237 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#faf7f0\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 247 240 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#fbf7ef\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(251 247 239 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#fde68a\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#fef0c0\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 192 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#fef3c7\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#ffedbf\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 191 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[rgba\(201\2c 162\2c 39\2c \.2\)\]:hover{
  background-color: rgba(201,162,39,.2);
}

.hover\:bg-amber-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}

.hover\:bg-amber-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}

.hover\:bg-amber-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

.hover\:bg-purple-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:bg-rose-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.hover\:bg-violet-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/10:hover{
  background-color: rgb(255 255 255 / 0.1);
}

.hover\:bg-white\/20:hover{
  background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-white\/5:hover{
  background-color: rgb(255 255 255 / 0.05);
}

.hover\:bg-white\/\[0\.08\]:hover{
  background-color: rgb(255 255 255 / 0.08);
}

.hover\:text-\[\#9a4d12\]:hover{
  --tw-text-opacity: 1;
  color: rgb(154 77 18 / var(--tw-text-opacity, 1));
}

.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-700:hover{
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-800:hover{
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:opacity-100:hover{
  opacity: 1;
}

.hover\:opacity-90:hover{
  opacity: 0.9;
}

.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-amber-600\/20:hover{
  --tw-shadow-color: rgb(217 119 6 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.hover\:brightness-105:hover{
  --tw-brightness: brightness(1.05);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.focus\:border-\[\#c9a227\]:focus{
  --tw-border-opacity: 1;
  border-color: rgb(201 162 39 / var(--tw-border-opacity, 1));
}

.focus\:border-\[\#d4af37\]\/40:focus{
  border-color: rgb(212 175 55 / 0.4);
}

.focus\:border-\[\#d4b15a\]:focus{
  --tw-border-opacity: 1;
  border-color: rgb(212 177 90 / var(--tw-border-opacity, 1));
}

.focus\:border-amber-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}

.focus\:border-amber-600:focus{
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}

.focus\:border-stone-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-\[\#fde68a\]\/40:focus{
  --tw-ring-color: rgb(253 230 138 / 0.4);
}

.focus\:ring-amber-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}

.focus\:ring-amber-600\/20:focus{
  --tw-ring-color: rgb(217 119 6 / 0.2);
}

.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled{
  opacity: 0.5;
}

.disabled\:opacity-60:disabled{
  opacity: 0.6;
}

@media (min-width: 640px){

  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .sm\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .sm\:\!mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .sm\:\!mt-\[22px\]{
    margin-top: 22px !important;
  }

  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8{
    margin-bottom: 2rem;
  }

  .sm\:mt-6{
    margin-top: 1.5rem;
  }

  .sm\:mt-8{
    margin-top: 2rem;
  }

  .sm\:block{
    display: block;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:h-10{
    height: 2.5rem;
  }

  .sm\:h-12{
    height: 3rem;
  }

  .sm\:h-16{
    height: 4rem;
  }

  .sm\:h-20{
    height: 5rem;
  }

  .sm\:h-24{
    height: 6rem;
  }

  .sm\:h-6{
    height: 1.5rem;
  }

  .sm\:max-h-\[92vh\]{
    max-height: 92vh;
  }

  .sm\:w-10{
    width: 2.5rem;
  }

  .sm\:w-12{
    width: 3rem;
  }

  .sm\:w-16{
    width: 4rem;
  }

  .sm\:w-20{
    width: 5rem;
  }

  .sm\:w-24{
    width: 6rem;
  }

  .sm\:w-6{
    width: 1.5rem;
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:min-w-\[160px\]{
    min-width: 160px;
  }

  .sm\:min-w-\[180px\]{
    min-width: 180px;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:items-start{
    align-items: flex-start;
  }

  .sm\:items-center{
    align-items: center;
  }

  .sm\:justify-between{
    justify-content: space-between;
  }

  .sm\:\!gap-4{
    gap: 1rem !important;
  }

  .sm\:gap-2\.5{
    gap: 0.625rem;
  }

  .sm\:gap-8{
    gap: 2rem;
  }

  .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .sm\:\!rounded-\[18px\]{
    border-radius: 18px !important;
  }

  .sm\:\!p-4{
    padding: 1rem !important;
  }

  .sm\:\!p-\[18px\]{
    padding: 18px !important;
  }

  .sm\:p-10{
    padding: 2.5rem;
  }

  .sm\:p-6{
    padding: 1.5rem;
  }

  .sm\:p-8{
    padding: 2rem;
  }

  .sm\:\!px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .sm\:\!px-\[26px\]{
    padding-left: 26px !important;
    padding-right: 26px !important;
  }

  .sm\:\!py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .sm\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:\!pb-7{
    padding-bottom: 1.75rem !important;
  }

  .sm\:\!pr-20{
    padding-right: 5rem !important;
  }

  .sm\:\!pt-8{
    padding-top: 2rem !important;
  }

  .sm\:pb-\[136px\]{
    padding-bottom: 136px;
  }

  .sm\:pt-10{
    padding-top: 2.5rem;
  }

  .sm\:pt-8{
    padding-top: 2rem;
  }

  .sm\:\!text-\[17px\]{
    font-size: 17px !important;
  }

  .sm\:\!text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }

  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:\!leading-\[1\.7\]{
    line-height: 1.7 !important;
  }

  .sm\:\!tracking-\[0\.2em\]{
    letter-spacing: 0.2em !important;
  }
}

@media (min-width: 768px){

  .md\:w-auto{
    width: auto;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-\[1\.2fr_0\.8fr_0\.8fr_0\.8fr\]{
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:items-center{
    align-items: center;
  }

  .md\:justify-between{
    justify-content: space-between;
  }

  .md\:space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
  }

  .md\:p-5{
    padding: 1.25rem;
  }

  .md\:p-6{
    padding: 1.5rem;
  }

  .md\:p-8{
    padding: 2rem;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px){

  .lg\:sticky{
    position: sticky;
  }

  .lg\:top-6{
    top: 1.5rem;
  }

  .lg\:table-cell{
    display: table-cell;
  }

  .lg\:w-64{
    width: 16rem;
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1\.15fr_0\.85fr\]{
    grid-template-columns: 1.15fr 0.85fr;
  }

  .lg\:grid-cols-\[1\.2fr_1fr_180px_auto\]{
    grid-template-columns: 1.2fr 1fr 180px auto;
  }

  .lg\:grid-cols-\[256px_minmax\(0\2c 1fr\)\]{
    grid-template-columns: 256px minmax(0,1fr);
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:items-start{
    align-items: flex-start;
  }

  .lg\:items-center{
    align-items: center;
  }

  .lg\:justify-between{
    justify-content: space-between;
  }

  .lg\:border-l{
    border-left-width: 1px;
  }

  .lg\:border-t-0{
    border-top-width: 0px;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px){

  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-\[0\.95fr_1\.05fr\]{
    grid-template-columns: 0.95fr 1.05fr;
  }

  .xl\:grid-cols-\[minmax\(0\2c 1fr\)_420px\]{
    grid-template-columns: minmax(0,1fr) 420px;
  }
}
