:root {
  --terracotta: #da532c;
  --terracotta-dark: #c44a25;
  --teal: #1d9e75;
  --charcoal: #2c2c2a;
  --off-white: #faf8f4;
  --sand: #f1ede3;
  --stone: #888780;
  --light-stone: #d3d1c7;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(44, 44, 42, 0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(218, 83, 44, 0.09), transparent 24%),
    radial-gradient(circle at top right, rgba(29, 158, 117, 0.08), transparent 22%),
    var(--off-white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
summary {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-sand {
  background: var(--sand);
}

.page-shell {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 248, 244, 0.9);
  border-bottom: 1px solid rgba(211, 209, 199, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

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

.wordmark-icon,
.wordmark-text {
  display: block;
  height: 34px;
  width: auto;
}

.footer-brand .wordmark-icon,
.footer-brand .wordmark-text {
  height: 28px;
}

.training-record-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.training-record-brand-mark,
.training-record-brand-wordmark {
  display: block;
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a:not(.button) {
  color: var(--stone);
  transition: color var(--transition);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--charcoal);
}

.site-nav .nav-sign-in {
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--light-stone);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 4px 0;
  border-radius: 999px;
}

.hero {
  padding: 80px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6vw, 4.3rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

p {
  margin: 0;
}

.lead,
.section-heading p,
.compact p,
.pricing-note {
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(44, 44, 42, 0.85);
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions {
  align-items: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--terracotta);
  border: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-dark);
}

.button-secondary {
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--light-stone);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sand);
}

.signup-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.signup-reassurance {
  margin: 0;
  color: #686761;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
}

.site-nav .signup-cta {
  flex: 0 0 auto;
}

.wide {
  width: 100%;
}

.hero-points,
.pricing-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.pricing-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(44, 44, 42, 0.82);
}

.hero-points li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.14);
}

.hero-visual {
  position: relative;
}

.record-card {
  position: relative;
  padding: 18px 18px 8px;
  border: 1px solid rgba(211, 209, 199, 0.75);
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf5, #ffffff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.record-toolbar {
  display: flex;
  gap: 8px;
  padding: 4px 0 14px;
}

.record-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--light-stone);
}

.record-page {
  padding: 28px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(211, 209, 199, 0.7);
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding-bottom: 112px;
}

.record-summary,
.record-list,
.record-headline,
.record-foot {
  display: grid;
  gap: 12px;
}

.record-headline {
  grid-template-columns: 1fr max-content;
  align-items: center;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 500;
}

.record-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.badge-success {
  background: #e1f5ee;
  color: #085041;
}

.record-subtitle {
  margin-top: 10px;
  color: var(--stone);
}

.record-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 24px;
}

.record-summary strong {
  overflow-wrap: anywhere;
}

.summary-label {
  display: block;
  margin-bottom: 4px;
  color: var(--stone);
  font-size: 0.82rem;
}

.record-proof {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.record-proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-note {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f5fbf8;
  border: 1px solid rgba(29, 158, 117, 0.18);
}

.proof-note strong {
  color: #0c684c;
}

.proof-note span {
  font-size: 0.9rem;
  color: rgba(44, 44, 42, 0.78);
}

.record-list {
  margin-top: 0;
}

.record-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.record-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(211, 209, 199, 0.75);
}

.record-row span:last-child {
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.record-row:last-child {
  border-bottom: none;
}

.record-foot {
  grid-template-columns: minmax(92px, 124px) minmax(0, 1fr);
  grid-template-areas:
    "count signature"
    "list list";
  align-items: start;
  gap: 16px 18px;
}

.record-count {
  grid-area: count;
}

.record-list {
  grid-area: list;
}

.record-signature {
  grid-area: signature;
}

.record-count strong {
  display: block;
  font-size: 3.3rem;
  color: var(--teal);
  line-height: 0.95;
}

.record-count span:last-child {
  display: block;
  font-size: 0.92rem;
}

.record-signature {
  display: grid;
  justify-items: end;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--stone);
  align-self: start;
  text-align: right;
}

.record-signature .summary-label {
  margin-bottom: 2px;
}

.record-signature span:not(.signature-mark):not(.summary-label) {
  white-space: nowrap;
}

.signature-mark {
  font-size: 2rem;
  line-height: 1;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: var(--charcoal);
}

.eu-badge {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffe07a;
  background: #224a90;
  border: 5px dotted #ffe07a;
}

.status {
  font-size: 0.82rem;
  font-weight: 700;
}

.status-done {
  color: var(--teal);
}

.status-pending {
  color: #ba7517;
}

.floating-note {
  position: absolute;
  max-width: 180px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(211, 209, 199, 0.9);
  box-shadow: var(--shadow-soft);
}

.floating-note strong,
.signal-item strong,
.price-row strong {
  display: block;
}

.floating-note span,
.signal-item span {
  color: var(--stone);
}

.note-one {
  left: -26px;
  bottom: 128px;
}

.note-two {
  right: -18px;
  top: 82px;
}

.hero-accent-art {
  position: absolute;
  right: -52px;
  top: 88px;
  width: 220px;
  height: auto;
  z-index: 1;
  opacity: 0.95;
}

.signal-strip {
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 236, 0.92));
  color: var(--charcoal);
  border-top: 1px solid rgba(211, 209, 199, 0.55);
  border-bottom: 1px solid rgba(211, 209, 199, 0.55);
}

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

.signal-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  column-gap: 16px;
  padding-right: 16px;
}

.signal-item img {
  grid-row: 1 / span 2;
}

.signal-item span {
  color: var(--stone);
}

.video-section {
  background:
    radial-gradient(circle at top left, rgba(29, 158, 117, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 244, 0.94));
}

.video-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.video-copy {
  margin-bottom: 0;
}

.video-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.video-points li {
  position: relative;
  padding: 18px 20px 18px 52px;
  border: 1px solid rgba(211, 209, 199, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(44, 44, 42, 0.84);
}

.video-points li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.14);
}

.video-frame-card {
  padding: 18px;
  border: 1px solid rgba(211, 209, 199, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(218, 83, 44, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  box-shadow: var(--shadow-soft);
}

.video-frame-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border: 1px solid rgba(211, 209, 199, 0.8);
  border-radius: 20px;
  background: linear-gradient(180deg, #f5efe5 0%, #ffffff 100%);
}

.video-frame-wrap-portrait {
  width: min(100%, 380px);
  margin-inline: auto;
  padding-top: 0;
  aspect-ratio: 9 / 16;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 18px;
  color: var(--stone);
  font-size: 0.95rem;
}

.video-caption a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.video-caption a:hover,
.video-caption a:focus-visible {
  color: #15795a;
}

.section-heading {
  margin-bottom: 44px;
}

.compact {
  margin-bottom: 0;
}

.three-up,
.steps-grid,
.feature-grid {
  display: grid;
  gap: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.step-card,
.feature-card,
.pricing-card,
.faq-item,
.final-cta-card {
  border: 1px solid var(--light-stone);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.card,
.step-card,
.feature-card,
.pricing-card {
  padding: 28px;
}

.card-illustration {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 14px;
}

.accent-terracotta {
  border-top: 4px solid var(--terracotta);
}

.accent-teal {
  border-top: 4px solid var(--teal);
}

.step-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 244, 0.98)),
    var(--white);
  text-align: center;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--teal);
  border-radius: 999px;
}

.step-icon-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(211, 209, 199, 0.8);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -38px;
  width: 64px;
  border-top: 2px dashed rgba(218, 83, 44, 0.22);
}

.step-card:last-child::after {
  display: none;
}

.track-card .badge {
  margin-bottom: 14px;
}

.track-icon {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.track-icon-teal {
  background: #dff2ed;
}

.track-icon-warm {
  background: #ffe1cf;
}

.track-icon-blue {
  background: #dceef6;
}

.track-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(211, 209, 199, 0.75);
  color: var(--stone);
  font-size: 0.9rem;
}

.feature-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.feature-card {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.guides-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 158, 117, 0.08), transparent 22%),
    radial-gradient(circle at 85% 24%, rgba(218, 83, 44, 0.08), transparent 18%),
    var(--white);
}

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

.guide-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-top: 4px solid var(--teal);
}

.guide-card:nth-child(2n) {
  border-top-color: var(--terracotta);
}

.guide-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-bottom: 2px;
}

.guide-card p {
  color: rgba(44, 44, 42, 0.82);
}

.guide-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 700;
}

.guide-link:hover,
.guide-link:focus-visible {
  color: #15795a;
}

.pricing-card {
  max-width: 520px;
  justify-self: end;
  box-shadow: var(--shadow-soft);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0 10px;
}

.price-row strong {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.price-row span {
  color: var(--stone);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.admin-bars {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 50%;
  background: #eef7f2;
}

.admin-bars span {
  width: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.admin-bars span:nth-child(1) { height: 18px; }
.admin-bars span:nth-child(2) { height: 30px; }
.admin-bars span:nth-child(3) { height: 40px; }
.admin-bars span:nth-child(4) { height: 24px; }

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 28px 24px;
  color: rgba(44, 44, 42, 0.84);
}

.final-cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(218, 83, 44, 0.14), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(29, 158, 117, 0.16), transparent 20%),
    var(--sand);
}

.final-cta-card {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-soft);
}

.final-cta-card > div {
  flex: 1 1 22rem;
}

.cta-illustration {
  width: min(42%, 430px);
  height: auto;
  flex: 0 0 auto;
}

.final-signup {
  flex: 1 1 20rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.final-signup input {
  flex: 1 1 260px;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--light-stone);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.final-signup input::placeholder {
  color: var(--stone);
}

.final-signup input:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}

.final-signup .button {
  min-width: 150px;
}

.final-signup .signup-cta {
  flex: 0 0 auto;
}

.final-cta-note {
  margin-top: 14px;
  color: var(--stone);
  font-size: 0.95rem;
}

.site-footer {
  padding: 26px 0 34px;
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(211, 209, 199, 0.7);
}

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  padding: 72px 0 28px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--stone);
  font-size: 0.95rem;
}

.legal-shell {
  padding: 24px 0 88px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc,
.legal-card,
.legal-note {
  border: 1px solid var(--light-stone);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.legal-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border-radius: 20px;
}

.legal-toc strong {
  font-size: 0.96rem;
}

.legal-toc a {
  color: var(--stone);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--charcoal);
}

.legal-card {
  border-radius: 24px;
  padding: 32px;
}

.legal-intro {
  font-size: 1.08rem;
  color: rgba(44, 44, 42, 0.84);
  margin-bottom: 12px;
}

.legal-section + .legal-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(211, 209, 199, 0.7);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.legal-section p + p,
.legal-section ul,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-note {
  margin-top: 34px;
  border-radius: 20px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 237, 227, 0.92)),
    var(--white);
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
}

.legal-card a,
.faq-item a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-card a:hover,
.legal-card a:focus-visible,
.faq-item a:hover,
.faq-item a:focus-visible {
  color: #15795a;
}

.guide-summary-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.guide-summary-list li {
  padding: 18px 20px;
  border: 1px solid var(--light-stone);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.guide-summary-list strong {
  display: block;
  margin-bottom: 6px;
}

.guide-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 0.96rem;
}

.guide-table th,
.guide-table td {
  padding: 14px 16px;
  border: 1px solid rgba(211, 209, 199, 0.9);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  background: rgba(241, 237, 227, 0.8);
  font-weight: 700;
}

.guide-related-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.guide-related-card {
  padding: 22px 24px;
  border: 1px solid var(--light-stone);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
}

.guide-related-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.guide-related-card p {
  color: rgba(44, 44, 42, 0.8);
}

.source-list {
  padding-left: 22px;
}

.source-list li + li {
  margin-top: 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.footer-brand p,
.footer-meta,
.footer-links a,
.footer-nav a {
  color: var(--stone);
  font-size: 0.92rem;
}

.footer-brand p {
  max-width: 22rem;
  margin-top: 8px;
}

.footer-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

/*
  Tailwind-like utility layer.
  Use the `tw-` prefix so these helpers can coexist with the existing component CSS.
  Utilities use !important so they can safely override component defaults when needed.
*/

.tw-block { display: block !important; }
.tw-inline-block { display: inline-block !important; }
.tw-inline { display: inline !important; }
.tw-flex { display: flex !important; }
.tw-inline-flex { display: inline-flex !important; }
.tw-grid { display: grid !important; }
.tw-hidden { display: none !important; }

.tw-flex-row { flex-direction: row !important; }
.tw-flex-col { flex-direction: column !important; }
.tw-flex-wrap { flex-wrap: wrap !important; }
.tw-flex-nowrap { flex-wrap: nowrap !important; }
.tw-flex-1 { flex: 1 1 0% !important; }
.tw-flex-none { flex: none !important; }

.tw-items-start { align-items: flex-start !important; }
.tw-items-center { align-items: center !important; }
.tw-items-end { align-items: flex-end !important; }
.tw-items-stretch { align-items: stretch !important; }
.tw-items-baseline { align-items: baseline !important; }

.tw-justify-start { justify-content: flex-start !important; }
.tw-justify-center { justify-content: center !important; }
.tw-justify-end { justify-content: flex-end !important; }
.tw-justify-between { justify-content: space-between !important; }
.tw-justify-around { justify-content: space-around !important; }
.tw-justify-evenly { justify-content: space-evenly !important; }

.tw-self-start { align-self: flex-start !important; }
.tw-self-center { align-self: center !important; }
.tw-self-end { align-self: flex-end !important; }
.tw-self-stretch { align-self: stretch !important; }

.tw-text-left { text-align: left !important; }
.tw-text-center { text-align: center !important; }
.tw-text-right { text-align: right !important; }

.tw-relative { position: relative !important; }
.tw-absolute { position: absolute !important; }
.tw-static { position: static !important; }

.tw-w-full { width: 100% !important; }
.tw-w-auto { width: auto !important; }
.tw-h-full { height: 100% !important; }
.tw-h-auto { height: auto !important; }
.tw-max-w-content { max-width: var(--max-width) !important; }
.tw-mx-auto { margin-left: auto !important; margin-right: auto !important; }

.tw-gap-0 { gap: 0 !important; }
.tw-gap-1 { gap: 0.25rem !important; }
.tw-gap-2 { gap: 0.5rem !important; }
.tw-gap-3 { gap: 0.75rem !important; }
.tw-gap-4 { gap: 1rem !important; }
.tw-gap-5 { gap: 1.25rem !important; }
.tw-gap-6 { gap: 1.5rem !important; }
.tw-gap-8 { gap: 2rem !important; }
.tw-gap-10 { gap: 2.5rem !important; }
.tw-gap-12 { gap: 3rem !important; }
.tw-gap-16 { gap: 4rem !important; }

.tw-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.tw-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.tw-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

.tw-space-y-0 > * + * { margin-top: 0 !important; }
.tw-space-y-1 > * + * { margin-top: 0.25rem !important; }
.tw-space-y-2 > * + * { margin-top: 0.5rem !important; }
.tw-space-y-3 > * + * { margin-top: 0.75rem !important; }
.tw-space-y-4 > * + * { margin-top: 1rem !important; }
.tw-space-y-5 > * + * { margin-top: 1.25rem !important; }
.tw-space-y-6 > * + * { margin-top: 1.5rem !important; }
.tw-space-y-8 > * + * { margin-top: 2rem !important; }
.tw-space-y-10 > * + * { margin-top: 2.5rem !important; }
.tw-space-y-12 > * + * { margin-top: 3rem !important; }
.tw-space-y-16 > * + * { margin-top: 4rem !important; }

.tw-space-x-0 > * + * { margin-left: 0 !important; }
.tw-space-x-1 > * + * { margin-left: 0.25rem !important; }
.tw-space-x-2 > * + * { margin-left: 0.5rem !important; }
.tw-space-x-3 > * + * { margin-left: 0.75rem !important; }
.tw-space-x-4 > * + * { margin-left: 1rem !important; }
.tw-space-x-5 > * + * { margin-left: 1.25rem !important; }
.tw-space-x-6 > * + * { margin-left: 1.5rem !important; }
.tw-space-x-8 > * + * { margin-left: 2rem !important; }
.tw-space-x-10 > * + * { margin-left: 2.5rem !important; }
.tw-space-x-12 > * + * { margin-left: 3rem !important; }
.tw-space-x-16 > * + * { margin-left: 4rem !important; }

.tw-m-0 { margin: 0 !important; }
.tw-m-1 { margin: 0.25rem !important; }
.tw-m-2 { margin: 0.5rem !important; }
.tw-m-3 { margin: 0.75rem !important; }
.tw-m-4 { margin: 1rem !important; }
.tw-m-5 { margin: 1.25rem !important; }
.tw-m-6 { margin: 1.5rem !important; }
.tw-m-8 { margin: 2rem !important; }
.tw-m-10 { margin: 2.5rem !important; }
.tw-m-12 { margin: 3rem !important; }
.tw-m-16 { margin: 4rem !important; }
.tw-m-20 { margin: 5rem !important; }
.tw-m-24 { margin: 6rem !important; }
.tw-m-auto { margin: auto !important; }

.tw-mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.tw-mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.tw-mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.tw-mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
.tw-mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
.tw-mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
.tw-mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.tw-mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
.tw-mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }
.tw-mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; }
.tw-mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; }
.tw-mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; }
.tw-mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; }
.tw-mx-auto { margin-left: auto !important; margin-right: auto !important; }

.tw-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.tw-my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.tw-my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.tw-my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
.tw-my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.tw-my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
.tw-my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.tw-my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.tw-my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
.tw-my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.tw-my-16 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.tw-my-20 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
.tw-my-24 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
.tw-my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.tw-mt-0 { margin-top: 0 !important; }
.tw-mt-1 { margin-top: 0.25rem !important; }
.tw-mt-2 { margin-top: 0.5rem !important; }
.tw-mt-3 { margin-top: 0.75rem !important; }
.tw-mt-4 { margin-top: 1rem !important; }
.tw-mt-5 { margin-top: 1.25rem !important; }
.tw-mt-6 { margin-top: 1.5rem !important; }
.tw-mt-8 { margin-top: 2rem !important; }
.tw-mt-10 { margin-top: 2.5rem !important; }
.tw-mt-12 { margin-top: 3rem !important; }
.tw-mt-16 { margin-top: 4rem !important; }
.tw-mt-20 { margin-top: 5rem !important; }
.tw-mt-24 { margin-top: 6rem !important; }
.tw-mt-auto { margin-top: auto !important; }

.tw-mr-0 { margin-right: 0 !important; }
.tw-mr-1 { margin-right: 0.25rem !important; }
.tw-mr-2 { margin-right: 0.5rem !important; }
.tw-mr-3 { margin-right: 0.75rem !important; }
.tw-mr-4 { margin-right: 1rem !important; }
.tw-mr-5 { margin-right: 1.25rem !important; }
.tw-mr-6 { margin-right: 1.5rem !important; }
.tw-mr-8 { margin-right: 2rem !important; }
.tw-mr-10 { margin-right: 2.5rem !important; }
.tw-mr-12 { margin-right: 3rem !important; }
.tw-mr-16 { margin-right: 4rem !important; }
.tw-mr-20 { margin-right: 5rem !important; }
.tw-mr-24 { margin-right: 6rem !important; }
.tw-mr-auto { margin-right: auto !important; }

.tw-mb-0 { margin-bottom: 0 !important; }
.tw-mb-1 { margin-bottom: 0.25rem !important; }
.tw-mb-2 { margin-bottom: 0.5rem !important; }
.tw-mb-3 { margin-bottom: 0.75rem !important; }
.tw-mb-4 { margin-bottom: 1rem !important; }
.tw-mb-5 { margin-bottom: 1.25rem !important; }
.tw-mb-6 { margin-bottom: 1.5rem !important; }
.tw-mb-8 { margin-bottom: 2rem !important; }
.tw-mb-10 { margin-bottom: 2.5rem !important; }
.tw-mb-12 { margin-bottom: 3rem !important; }
.tw-mb-16 { margin-bottom: 4rem !important; }
.tw-mb-20 { margin-bottom: 5rem !important; }
.tw-mb-24 { margin-bottom: 6rem !important; }
.tw-mb-auto { margin-bottom: auto !important; }

.tw-ml-0 { margin-left: 0 !important; }
.tw-ml-1 { margin-left: 0.25rem !important; }
.tw-ml-2 { margin-left: 0.5rem !important; }
.tw-ml-3 { margin-left: 0.75rem !important; }
.tw-ml-4 { margin-left: 1rem !important; }
.tw-ml-5 { margin-left: 1.25rem !important; }
.tw-ml-6 { margin-left: 1.5rem !important; }
.tw-ml-8 { margin-left: 2rem !important; }
.tw-ml-10 { margin-left: 2.5rem !important; }
.tw-ml-12 { margin-left: 3rem !important; }
.tw-ml-16 { margin-left: 4rem !important; }
.tw-ml-20 { margin-left: 5rem !important; }
.tw-ml-24 { margin-left: 6rem !important; }
.tw-ml-auto { margin-left: auto !important; }

.tw-p-0 { padding: 0 !important; }
.tw-p-1 { padding: 0.25rem !important; }
.tw-p-2 { padding: 0.5rem !important; }
.tw-p-3 { padding: 0.75rem !important; }
.tw-p-4 { padding: 1rem !important; }
.tw-p-5 { padding: 1.25rem !important; }
.tw-p-6 { padding: 1.5rem !important; }
.tw-p-8 { padding: 2rem !important; }
.tw-p-10 { padding: 2.5rem !important; }
.tw-p-12 { padding: 3rem !important; }
.tw-p-16 { padding: 4rem !important; }
.tw-p-20 { padding: 5rem !important; }
.tw-p-24 { padding: 6rem !important; }

.tw-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.tw-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.tw-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.tw-px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.tw-px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.tw-px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.tw-px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.tw-px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.tw-px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
.tw-px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
.tw-px-16 { padding-left: 4rem !important; padding-right: 4rem !important; }
.tw-px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
.tw-px-24 { padding-left: 6rem !important; padding-right: 6rem !important; }

.tw-py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.tw-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.tw-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.tw-py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.tw-py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.tw-py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.tw-py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.tw-py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.tw-py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.tw-py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.tw-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.tw-py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.tw-py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

.tw-pt-0 { padding-top: 0 !important; }
.tw-pt-1 { padding-top: 0.25rem !important; }
.tw-pt-2 { padding-top: 0.5rem !important; }
.tw-pt-3 { padding-top: 0.75rem !important; }
.tw-pt-4 { padding-top: 1rem !important; }
.tw-pt-5 { padding-top: 1.25rem !important; }
.tw-pt-6 { padding-top: 1.5rem !important; }
.tw-pt-8 { padding-top: 2rem !important; }
.tw-pt-10 { padding-top: 2.5rem !important; }
.tw-pt-12 { padding-top: 3rem !important; }
.tw-pt-16 { padding-top: 4rem !important; }
.tw-pt-20 { padding-top: 5rem !important; }
.tw-pt-24 { padding-top: 6rem !important; }

.tw-pr-0 { padding-right: 0 !important; }
.tw-pr-1 { padding-right: 0.25rem !important; }
.tw-pr-2 { padding-right: 0.5rem !important; }
.tw-pr-3 { padding-right: 0.75rem !important; }
.tw-pr-4 { padding-right: 1rem !important; }
.tw-pr-5 { padding-right: 1.25rem !important; }
.tw-pr-6 { padding-right: 1.5rem !important; }
.tw-pr-8 { padding-right: 2rem !important; }
.tw-pr-10 { padding-right: 2.5rem !important; }
.tw-pr-12 { padding-right: 3rem !important; }
.tw-pr-16 { padding-right: 4rem !important; }
.tw-pr-20 { padding-right: 5rem !important; }
.tw-pr-24 { padding-right: 6rem !important; }

.tw-pb-0 { padding-bottom: 0 !important; }
.tw-pb-1 { padding-bottom: 0.25rem !important; }
.tw-pb-2 { padding-bottom: 0.5rem !important; }
.tw-pb-3 { padding-bottom: 0.75rem !important; }
.tw-pb-4 { padding-bottom: 1rem !important; }
.tw-pb-5 { padding-bottom: 1.25rem !important; }
.tw-pb-6 { padding-bottom: 1.5rem !important; }
.tw-pb-8 { padding-bottom: 2rem !important; }
.tw-pb-10 { padding-bottom: 2.5rem !important; }
.tw-pb-12 { padding-bottom: 3rem !important; }
.tw-pb-16 { padding-bottom: 4rem !important; }
.tw-pb-20 { padding-bottom: 5rem !important; }
.tw-pb-24 { padding-bottom: 6rem !important; }

.tw-pl-0 { padding-left: 0 !important; }
.tw-pl-1 { padding-left: 0.25rem !important; }
.tw-pl-2 { padding-left: 0.5rem !important; }
.tw-pl-3 { padding-left: 0.75rem !important; }
.tw-pl-4 { padding-left: 1rem !important; }
.tw-pl-5 { padding-left: 1.25rem !important; }
.tw-pl-6 { padding-left: 1.5rem !important; }
.tw-pl-8 { padding-left: 2rem !important; }
.tw-pl-10 { padding-left: 2.5rem !important; }
.tw-pl-12 { padding-left: 3rem !important; }
.tw-pl-16 { padding-left: 4rem !important; }
.tw-pl-20 { padding-left: 5rem !important; }
.tw-pl-24 { padding-left: 6rem !important; }

/*
  Responsive utility variants.
  Naming uses hyphens instead of colons, for example:
  `tw-sm-flex`, `tw-md-grid-cols-2`, `tw-lg-mt-12`
*/

@media (min-width: 640px) {
  .tw-sm-block { display: block !important; }
  .tw-sm-inline-block { display: inline-block !important; }
  .tw-sm-inline { display: inline !important; }
  .tw-sm-flex { display: flex !important; }
  .tw-sm-inline-flex { display: inline-flex !important; }
  .tw-sm-grid { display: grid !important; }
  .tw-sm-hidden { display: none !important; }

  .tw-sm-flex-row { flex-direction: row !important; }
  .tw-sm-flex-col { flex-direction: column !important; }
  .tw-sm-flex-wrap { flex-wrap: wrap !important; }
  .tw-sm-flex-nowrap { flex-wrap: nowrap !important; }
  .tw-sm-flex-1 { flex: 1 1 0% !important; }
  .tw-sm-flex-none { flex: none !important; }

  .tw-sm-items-start { align-items: flex-start !important; }
  .tw-sm-items-center { align-items: center !important; }
  .tw-sm-items-end { align-items: flex-end !important; }
  .tw-sm-items-stretch { align-items: stretch !important; }
  .tw-sm-items-baseline { align-items: baseline !important; }

  .tw-sm-justify-start { justify-content: flex-start !important; }
  .tw-sm-justify-center { justify-content: center !important; }
  .tw-sm-justify-end { justify-content: flex-end !important; }
  .tw-sm-justify-between { justify-content: space-between !important; }
  .tw-sm-justify-around { justify-content: space-around !important; }
  .tw-sm-justify-evenly { justify-content: space-evenly !important; }

  .tw-sm-self-start { align-self: flex-start !important; }
  .tw-sm-self-center { align-self: center !important; }
  .tw-sm-self-end { align-self: flex-end !important; }
  .tw-sm-self-stretch { align-self: stretch !important; }

  .tw-sm-text-left { text-align: left !important; }
  .tw-sm-text-center { text-align: center !important; }
  .tw-sm-text-right { text-align: right !important; }

  .tw-sm-relative { position: relative !important; }
  .tw-sm-absolute { position: absolute !important; }
  .tw-sm-static { position: static !important; }

  .tw-sm-w-full { width: 100% !important; }
  .tw-sm-w-auto { width: auto !important; }
  .tw-sm-h-full { height: 100% !important; }
  .tw-sm-h-auto { height: auto !important; }
  .tw-sm-max-w-content { max-width: var(--max-width) !important; }
  .tw-sm-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-sm-gap-0 { gap: 0 !important; }
  .tw-sm-gap-1 { gap: 0.25rem !important; }
  .tw-sm-gap-2 { gap: 0.5rem !important; }
  .tw-sm-gap-3 { gap: 0.75rem !important; }
  .tw-sm-gap-4 { gap: 1rem !important; }
  .tw-sm-gap-5 { gap: 1.25rem !important; }
  .tw-sm-gap-6 { gap: 1.5rem !important; }
  .tw-sm-gap-8 { gap: 2rem !important; }
  .tw-sm-gap-10 { gap: 2.5rem !important; }
  .tw-sm-gap-12 { gap: 3rem !important; }
  .tw-sm-gap-16 { gap: 4rem !important; }

  .tw-sm-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .tw-sm-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .tw-sm-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .tw-sm-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

  .tw-sm-space-y-0 > * + * { margin-top: 0 !important; }
  .tw-sm-space-y-1 > * + * { margin-top: 0.25rem !important; }
  .tw-sm-space-y-2 > * + * { margin-top: 0.5rem !important; }
  .tw-sm-space-y-3 > * + * { margin-top: 0.75rem !important; }
  .tw-sm-space-y-4 > * + * { margin-top: 1rem !important; }
  .tw-sm-space-y-5 > * + * { margin-top: 1.25rem !important; }
  .tw-sm-space-y-6 > * + * { margin-top: 1.5rem !important; }
  .tw-sm-space-y-8 > * + * { margin-top: 2rem !important; }
  .tw-sm-space-y-10 > * + * { margin-top: 2.5rem !important; }
  .tw-sm-space-y-12 > * + * { margin-top: 3rem !important; }
  .tw-sm-space-y-16 > * + * { margin-top: 4rem !important; }

  .tw-sm-space-x-0 > * + * { margin-left: 0 !important; }
  .tw-sm-space-x-1 > * + * { margin-left: 0.25rem !important; }
  .tw-sm-space-x-2 > * + * { margin-left: 0.5rem !important; }
  .tw-sm-space-x-3 > * + * { margin-left: 0.75rem !important; }
  .tw-sm-space-x-4 > * + * { margin-left: 1rem !important; }
  .tw-sm-space-x-5 > * + * { margin-left: 1.25rem !important; }
  .tw-sm-space-x-6 > * + * { margin-left: 1.5rem !important; }
  .tw-sm-space-x-8 > * + * { margin-left: 2rem !important; }
  .tw-sm-space-x-10 > * + * { margin-left: 2.5rem !important; }
  .tw-sm-space-x-12 > * + * { margin-left: 3rem !important; }
  .tw-sm-space-x-16 > * + * { margin-left: 4rem !important; }

  .tw-sm-m-0 { margin: 0 !important; }
  .tw-sm-m-1 { margin: 0.25rem !important; }
  .tw-sm-m-2 { margin: 0.5rem !important; }
  .tw-sm-m-3 { margin: 0.75rem !important; }
  .tw-sm-m-4 { margin: 1rem !important; }
  .tw-sm-m-5 { margin: 1.25rem !important; }
  .tw-sm-m-6 { margin: 1.5rem !important; }
  .tw-sm-m-8 { margin: 2rem !important; }
  .tw-sm-m-10 { margin: 2.5rem !important; }
  .tw-sm-m-12 { margin: 3rem !important; }
  .tw-sm-m-16 { margin: 4rem !important; }
  .tw-sm-m-20 { margin: 5rem !important; }
  .tw-sm-m-24 { margin: 6rem !important; }
  .tw-sm-m-auto { margin: auto !important; }

  .tw-sm-mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
  .tw-sm-mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
  .tw-sm-mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
  .tw-sm-mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
  .tw-sm-mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
  .tw-sm-mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
  .tw-sm-mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
  .tw-sm-mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
  .tw-sm-mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }
  .tw-sm-mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; }
  .tw-sm-mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; }
  .tw-sm-mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; }
  .tw-sm-mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; }
  .tw-sm-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-sm-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .tw-sm-my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
  .tw-sm-my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
  .tw-sm-my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
  .tw-sm-my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .tw-sm-my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
  .tw-sm-my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .tw-sm-my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
  .tw-sm-my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
  .tw-sm-my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .tw-sm-my-16 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
  .tw-sm-my-20 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
  .tw-sm-my-24 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .tw-sm-my-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .tw-sm-mt-0 { margin-top: 0 !important; }
  .tw-sm-mt-1 { margin-top: 0.25rem !important; }
  .tw-sm-mt-2 { margin-top: 0.5rem !important; }
  .tw-sm-mt-3 { margin-top: 0.75rem !important; }
  .tw-sm-mt-4 { margin-top: 1rem !important; }
  .tw-sm-mt-5 { margin-top: 1.25rem !important; }
  .tw-sm-mt-6 { margin-top: 1.5rem !important; }
  .tw-sm-mt-8 { margin-top: 2rem !important; }
  .tw-sm-mt-10 { margin-top: 2.5rem !important; }
  .tw-sm-mt-12 { margin-top: 3rem !important; }
  .tw-sm-mt-16 { margin-top: 4rem !important; }
  .tw-sm-mt-20 { margin-top: 5rem !important; }
  .tw-sm-mt-24 { margin-top: 6rem !important; }
  .tw-sm-mt-auto { margin-top: auto !important; }

  .tw-sm-mr-0 { margin-right: 0 !important; }
  .tw-sm-mr-1 { margin-right: 0.25rem !important; }
  .tw-sm-mr-2 { margin-right: 0.5rem !important; }
  .tw-sm-mr-3 { margin-right: 0.75rem !important; }
  .tw-sm-mr-4 { margin-right: 1rem !important; }
  .tw-sm-mr-5 { margin-right: 1.25rem !important; }
  .tw-sm-mr-6 { margin-right: 1.5rem !important; }
  .tw-sm-mr-8 { margin-right: 2rem !important; }
  .tw-sm-mr-10 { margin-right: 2.5rem !important; }
  .tw-sm-mr-12 { margin-right: 3rem !important; }
  .tw-sm-mr-16 { margin-right: 4rem !important; }
  .tw-sm-mr-20 { margin-right: 5rem !important; }
  .tw-sm-mr-24 { margin-right: 6rem !important; }
  .tw-sm-mr-auto { margin-right: auto !important; }

  .tw-sm-mb-0 { margin-bottom: 0 !important; }
  .tw-sm-mb-1 { margin-bottom: 0.25rem !important; }
  .tw-sm-mb-2 { margin-bottom: 0.5rem !important; }
  .tw-sm-mb-3 { margin-bottom: 0.75rem !important; }
  .tw-sm-mb-4 { margin-bottom: 1rem !important; }
  .tw-sm-mb-5 { margin-bottom: 1.25rem !important; }
  .tw-sm-mb-6 { margin-bottom: 1.5rem !important; }
  .tw-sm-mb-8 { margin-bottom: 2rem !important; }
  .tw-sm-mb-10 { margin-bottom: 2.5rem !important; }
  .tw-sm-mb-12 { margin-bottom: 3rem !important; }
  .tw-sm-mb-16 { margin-bottom: 4rem !important; }
  .tw-sm-mb-20 { margin-bottom: 5rem !important; }
  .tw-sm-mb-24 { margin-bottom: 6rem !important; }
  .tw-sm-mb-auto { margin-bottom: auto !important; }

  .tw-sm-ml-0 { margin-left: 0 !important; }
  .tw-sm-ml-1 { margin-left: 0.25rem !important; }
  .tw-sm-ml-2 { margin-left: 0.5rem !important; }
  .tw-sm-ml-3 { margin-left: 0.75rem !important; }
  .tw-sm-ml-4 { margin-left: 1rem !important; }
  .tw-sm-ml-5 { margin-left: 1.25rem !important; }
  .tw-sm-ml-6 { margin-left: 1.5rem !important; }
  .tw-sm-ml-8 { margin-left: 2rem !important; }
  .tw-sm-ml-10 { margin-left: 2.5rem !important; }
  .tw-sm-ml-12 { margin-left: 3rem !important; }
  .tw-sm-ml-16 { margin-left: 4rem !important; }
  .tw-sm-ml-20 { margin-left: 5rem !important; }
  .tw-sm-ml-24 { margin-left: 6rem !important; }
  .tw-sm-ml-auto { margin-left: auto !important; }

  .tw-sm-p-0 { padding: 0 !important; }
  .tw-sm-p-1 { padding: 0.25rem !important; }
  .tw-sm-p-2 { padding: 0.5rem !important; }
  .tw-sm-p-3 { padding: 0.75rem !important; }
  .tw-sm-p-4 { padding: 1rem !important; }
  .tw-sm-p-5 { padding: 1.25rem !important; }
  .tw-sm-p-6 { padding: 1.5rem !important; }
  .tw-sm-p-8 { padding: 2rem !important; }
  .tw-sm-p-10 { padding: 2.5rem !important; }
  .tw-sm-p-12 { padding: 3rem !important; }
  .tw-sm-p-16 { padding: 4rem !important; }
  .tw-sm-p-20 { padding: 5rem !important; }
  .tw-sm-p-24 { padding: 6rem !important; }

  .tw-sm-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .tw-sm-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .tw-sm-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .tw-sm-px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .tw-sm-px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .tw-sm-px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .tw-sm-px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .tw-sm-px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .tw-sm-px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
  .tw-sm-px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
  .tw-sm-px-16 { padding-left: 4rem !important; padding-right: 4rem !important; }
  .tw-sm-px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
  .tw-sm-px-24 { padding-left: 6rem !important; padding-right: 6rem !important; }

  .tw-sm-py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .tw-sm-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .tw-sm-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .tw-sm-py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
  .tw-sm-py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .tw-sm-py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
  .tw-sm-py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .tw-sm-py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .tw-sm-py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .tw-sm-py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .tw-sm-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .tw-sm-py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .tw-sm-py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

  .tw-sm-pt-0 { padding-top: 0 !important; }
  .tw-sm-pt-1 { padding-top: 0.25rem !important; }
  .tw-sm-pt-2 { padding-top: 0.5rem !important; }
  .tw-sm-pt-3 { padding-top: 0.75rem !important; }
  .tw-sm-pt-4 { padding-top: 1rem !important; }
  .tw-sm-pt-5 { padding-top: 1.25rem !important; }
  .tw-sm-pt-6 { padding-top: 1.5rem !important; }
  .tw-sm-pt-8 { padding-top: 2rem !important; }
  .tw-sm-pt-10 { padding-top: 2.5rem !important; }
  .tw-sm-pt-12 { padding-top: 3rem !important; }
  .tw-sm-pt-16 { padding-top: 4rem !important; }
  .tw-sm-pt-20 { padding-top: 5rem !important; }
  .tw-sm-pt-24 { padding-top: 6rem !important; }

  .tw-sm-pr-0 { padding-right: 0 !important; }
  .tw-sm-pr-1 { padding-right: 0.25rem !important; }
  .tw-sm-pr-2 { padding-right: 0.5rem !important; }
  .tw-sm-pr-3 { padding-right: 0.75rem !important; }
  .tw-sm-pr-4 { padding-right: 1rem !important; }
  .tw-sm-pr-5 { padding-right: 1.25rem !important; }
  .tw-sm-pr-6 { padding-right: 1.5rem !important; }
  .tw-sm-pr-8 { padding-right: 2rem !important; }
  .tw-sm-pr-10 { padding-right: 2.5rem !important; }
  .tw-sm-pr-12 { padding-right: 3rem !important; }
  .tw-sm-pr-16 { padding-right: 4rem !important; }
  .tw-sm-pr-20 { padding-right: 5rem !important; }
  .tw-sm-pr-24 { padding-right: 6rem !important; }

  .tw-sm-pb-0 { padding-bottom: 0 !important; }
  .tw-sm-pb-1 { padding-bottom: 0.25rem !important; }
  .tw-sm-pb-2 { padding-bottom: 0.5rem !important; }
  .tw-sm-pb-3 { padding-bottom: 0.75rem !important; }
  .tw-sm-pb-4 { padding-bottom: 1rem !important; }
  .tw-sm-pb-5 { padding-bottom: 1.25rem !important; }
  .tw-sm-pb-6 { padding-bottom: 1.5rem !important; }
  .tw-sm-pb-8 { padding-bottom: 2rem !important; }
  .tw-sm-pb-10 { padding-bottom: 2.5rem !important; }
  .tw-sm-pb-12 { padding-bottom: 3rem !important; }
  .tw-sm-pb-16 { padding-bottom: 4rem !important; }
  .tw-sm-pb-20 { padding-bottom: 5rem !important; }
  .tw-sm-pb-24 { padding-bottom: 6rem !important; }

  .tw-sm-pl-0 { padding-left: 0 !important; }
  .tw-sm-pl-1 { padding-left: 0.25rem !important; }
  .tw-sm-pl-2 { padding-left: 0.5rem !important; }
  .tw-sm-pl-3 { padding-left: 0.75rem !important; }
  .tw-sm-pl-4 { padding-left: 1rem !important; }
  .tw-sm-pl-5 { padding-left: 1.25rem !important; }
  .tw-sm-pl-6 { padding-left: 1.5rem !important; }
  .tw-sm-pl-8 { padding-left: 2rem !important; }
  .tw-sm-pl-10 { padding-left: 2.5rem !important; }
  .tw-sm-pl-12 { padding-left: 3rem !important; }
  .tw-sm-pl-16 { padding-left: 4rem !important; }
  .tw-sm-pl-20 { padding-left: 5rem !important; }
  .tw-sm-pl-24 { padding-left: 6rem !important; }
}

@media (min-width: 768px) {
  .tw-md-block { display: block !important; }
  .tw-md-inline-block { display: inline-block !important; }
  .tw-md-inline { display: inline !important; }
  .tw-md-flex { display: flex !important; }
  .tw-md-inline-flex { display: inline-flex !important; }
  .tw-md-grid { display: grid !important; }
  .tw-md-hidden { display: none !important; }

  .tw-md-flex-row { flex-direction: row !important; }
  .tw-md-flex-col { flex-direction: column !important; }
  .tw-md-flex-wrap { flex-wrap: wrap !important; }
  .tw-md-flex-nowrap { flex-wrap: nowrap !important; }
  .tw-md-flex-1 { flex: 1 1 0% !important; }
  .tw-md-flex-none { flex: none !important; }

  .tw-md-items-start { align-items: flex-start !important; }
  .tw-md-items-center { align-items: center !important; }
  .tw-md-items-end { align-items: flex-end !important; }
  .tw-md-items-stretch { align-items: stretch !important; }
  .tw-md-items-baseline { align-items: baseline !important; }

  .tw-md-justify-start { justify-content: flex-start !important; }
  .tw-md-justify-center { justify-content: center !important; }
  .tw-md-justify-end { justify-content: flex-end !important; }
  .tw-md-justify-between { justify-content: space-between !important; }
  .tw-md-justify-around { justify-content: space-around !important; }
  .tw-md-justify-evenly { justify-content: space-evenly !important; }

  .tw-md-self-start { align-self: flex-start !important; }
  .tw-md-self-center { align-self: center !important; }
  .tw-md-self-end { align-self: flex-end !important; }
  .tw-md-self-stretch { align-self: stretch !important; }

  .tw-md-text-left { text-align: left !important; }
  .tw-md-text-center { text-align: center !important; }
  .tw-md-text-right { text-align: right !important; }

  .tw-md-relative { position: relative !important; }
  .tw-md-absolute { position: absolute !important; }
  .tw-md-static { position: static !important; }

  .tw-md-w-full { width: 100% !important; }
  .tw-md-w-auto { width: auto !important; }
  .tw-md-h-full { height: 100% !important; }
  .tw-md-h-auto { height: auto !important; }
  .tw-md-max-w-content { max-width: var(--max-width) !important; }
  .tw-md-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-md-gap-0 { gap: 0 !important; }
  .tw-md-gap-1 { gap: 0.25rem !important; }
  .tw-md-gap-2 { gap: 0.5rem !important; }
  .tw-md-gap-3 { gap: 0.75rem !important; }
  .tw-md-gap-4 { gap: 1rem !important; }
  .tw-md-gap-5 { gap: 1.25rem !important; }
  .tw-md-gap-6 { gap: 1.5rem !important; }
  .tw-md-gap-8 { gap: 2rem !important; }
  .tw-md-gap-10 { gap: 2.5rem !important; }
  .tw-md-gap-12 { gap: 3rem !important; }
  .tw-md-gap-16 { gap: 4rem !important; }

  .tw-md-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .tw-md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .tw-md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .tw-md-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

  .tw-md-space-y-0 > * + * { margin-top: 0 !important; }
  .tw-md-space-y-1 > * + * { margin-top: 0.25rem !important; }
  .tw-md-space-y-2 > * + * { margin-top: 0.5rem !important; }
  .tw-md-space-y-3 > * + * { margin-top: 0.75rem !important; }
  .tw-md-space-y-4 > * + * { margin-top: 1rem !important; }
  .tw-md-space-y-5 > * + * { margin-top: 1.25rem !important; }
  .tw-md-space-y-6 > * + * { margin-top: 1.5rem !important; }
  .tw-md-space-y-8 > * + * { margin-top: 2rem !important; }
  .tw-md-space-y-10 > * + * { margin-top: 2.5rem !important; }
  .tw-md-space-y-12 > * + * { margin-top: 3rem !important; }
  .tw-md-space-y-16 > * + * { margin-top: 4rem !important; }

  .tw-md-space-x-0 > * + * { margin-left: 0 !important; }
  .tw-md-space-x-1 > * + * { margin-left: 0.25rem !important; }
  .tw-md-space-x-2 > * + * { margin-left: 0.5rem !important; }
  .tw-md-space-x-3 > * + * { margin-left: 0.75rem !important; }
  .tw-md-space-x-4 > * + * { margin-left: 1rem !important; }
  .tw-md-space-x-5 > * + * { margin-left: 1.25rem !important; }
  .tw-md-space-x-6 > * + * { margin-left: 1.5rem !important; }
  .tw-md-space-x-8 > * + * { margin-left: 2rem !important; }
  .tw-md-space-x-10 > * + * { margin-left: 2.5rem !important; }
  .tw-md-space-x-12 > * + * { margin-left: 3rem !important; }
  .tw-md-space-x-16 > * + * { margin-left: 4rem !important; }

  .tw-md-m-0 { margin: 0 !important; }
  .tw-md-m-1 { margin: 0.25rem !important; }
  .tw-md-m-2 { margin: 0.5rem !important; }
  .tw-md-m-3 { margin: 0.75rem !important; }
  .tw-md-m-4 { margin: 1rem !important; }
  .tw-md-m-5 { margin: 1.25rem !important; }
  .tw-md-m-6 { margin: 1.5rem !important; }
  .tw-md-m-8 { margin: 2rem !important; }
  .tw-md-m-10 { margin: 2.5rem !important; }
  .tw-md-m-12 { margin: 3rem !important; }
  .tw-md-m-16 { margin: 4rem !important; }
  .tw-md-m-20 { margin: 5rem !important; }
  .tw-md-m-24 { margin: 6rem !important; }
  .tw-md-m-auto { margin: auto !important; }

  .tw-md-mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
  .tw-md-mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
  .tw-md-mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
  .tw-md-mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
  .tw-md-mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
  .tw-md-mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
  .tw-md-mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
  .tw-md-mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
  .tw-md-mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }
  .tw-md-mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; }
  .tw-md-mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; }
  .tw-md-mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; }
  .tw-md-mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; }
  .tw-md-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-md-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .tw-md-my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
  .tw-md-my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
  .tw-md-my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
  .tw-md-my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .tw-md-my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
  .tw-md-my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .tw-md-my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
  .tw-md-my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
  .tw-md-my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .tw-md-my-16 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
  .tw-md-my-20 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
  .tw-md-my-24 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .tw-md-my-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .tw-md-mt-0 { margin-top: 0 !important; }
  .tw-md-mt-1 { margin-top: 0.25rem !important; }
  .tw-md-mt-2 { margin-top: 0.5rem !important; }
  .tw-md-mt-3 { margin-top: 0.75rem !important; }
  .tw-md-mt-4 { margin-top: 1rem !important; }
  .tw-md-mt-5 { margin-top: 1.25rem !important; }
  .tw-md-mt-6 { margin-top: 1.5rem !important; }
  .tw-md-mt-8 { margin-top: 2rem !important; }
  .tw-md-mt-10 { margin-top: 2.5rem !important; }
  .tw-md-mt-12 { margin-top: 3rem !important; }
  .tw-md-mt-16 { margin-top: 4rem !important; }
  .tw-md-mt-20 { margin-top: 5rem !important; }
  .tw-md-mt-24 { margin-top: 6rem !important; }
  .tw-md-mt-auto { margin-top: auto !important; }

  .tw-md-mr-0 { margin-right: 0 !important; }
  .tw-md-mr-1 { margin-right: 0.25rem !important; }
  .tw-md-mr-2 { margin-right: 0.5rem !important; }
  .tw-md-mr-3 { margin-right: 0.75rem !important; }
  .tw-md-mr-4 { margin-right: 1rem !important; }
  .tw-md-mr-5 { margin-right: 1.25rem !important; }
  .tw-md-mr-6 { margin-right: 1.5rem !important; }
  .tw-md-mr-8 { margin-right: 2rem !important; }
  .tw-md-mr-10 { margin-right: 2.5rem !important; }
  .tw-md-mr-12 { margin-right: 3rem !important; }
  .tw-md-mr-16 { margin-right: 4rem !important; }
  .tw-md-mr-20 { margin-right: 5rem !important; }
  .tw-md-mr-24 { margin-right: 6rem !important; }
  .tw-md-mr-auto { margin-right: auto !important; }

  .tw-md-mb-0 { margin-bottom: 0 !important; }
  .tw-md-mb-1 { margin-bottom: 0.25rem !important; }
  .tw-md-mb-2 { margin-bottom: 0.5rem !important; }
  .tw-md-mb-3 { margin-bottom: 0.75rem !important; }
  .tw-md-mb-4 { margin-bottom: 1rem !important; }
  .tw-md-mb-5 { margin-bottom: 1.25rem !important; }
  .tw-md-mb-6 { margin-bottom: 1.5rem !important; }
  .tw-md-mb-8 { margin-bottom: 2rem !important; }
  .tw-md-mb-10 { margin-bottom: 2.5rem !important; }
  .tw-md-mb-12 { margin-bottom: 3rem !important; }
  .tw-md-mb-16 { margin-bottom: 4rem !important; }
  .tw-md-mb-20 { margin-bottom: 5rem !important; }
  .tw-md-mb-24 { margin-bottom: 6rem !important; }
  .tw-md-mb-auto { margin-bottom: auto !important; }

  .tw-md-ml-0 { margin-left: 0 !important; }
  .tw-md-ml-1 { margin-left: 0.25rem !important; }
  .tw-md-ml-2 { margin-left: 0.5rem !important; }
  .tw-md-ml-3 { margin-left: 0.75rem !important; }
  .tw-md-ml-4 { margin-left: 1rem !important; }
  .tw-md-ml-5 { margin-left: 1.25rem !important; }
  .tw-md-ml-6 { margin-left: 1.5rem !important; }
  .tw-md-ml-8 { margin-left: 2rem !important; }
  .tw-md-ml-10 { margin-left: 2.5rem !important; }
  .tw-md-ml-12 { margin-left: 3rem !important; }
  .tw-md-ml-16 { margin-left: 4rem !important; }
  .tw-md-ml-20 { margin-left: 5rem !important; }
  .tw-md-ml-24 { margin-left: 6rem !important; }
  .tw-md-ml-auto { margin-left: auto !important; }

  .tw-md-p-0 { padding: 0 !important; }
  .tw-md-p-1 { padding: 0.25rem !important; }
  .tw-md-p-2 { padding: 0.5rem !important; }
  .tw-md-p-3 { padding: 0.75rem !important; }
  .tw-md-p-4 { padding: 1rem !important; }
  .tw-md-p-5 { padding: 1.25rem !important; }
  .tw-md-p-6 { padding: 1.5rem !important; }
  .tw-md-p-8 { padding: 2rem !important; }
  .tw-md-p-10 { padding: 2.5rem !important; }
  .tw-md-p-12 { padding: 3rem !important; }
  .tw-md-p-16 { padding: 4rem !important; }
  .tw-md-p-20 { padding: 5rem !important; }
  .tw-md-p-24 { padding: 6rem !important; }

  .tw-md-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .tw-md-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .tw-md-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .tw-md-px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .tw-md-px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .tw-md-px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .tw-md-px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .tw-md-px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .tw-md-px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
  .tw-md-px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
  .tw-md-px-16 { padding-left: 4rem !important; padding-right: 4rem !important; }
  .tw-md-px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
  .tw-md-px-24 { padding-left: 6rem !important; padding-right: 6rem !important; }

  .tw-md-py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .tw-md-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .tw-md-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .tw-md-py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
  .tw-md-py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .tw-md-py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
  .tw-md-py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .tw-md-py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .tw-md-py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .tw-md-py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .tw-md-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .tw-md-py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .tw-md-py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

  .tw-md-pt-0 { padding-top: 0 !important; }
  .tw-md-pt-1 { padding-top: 0.25rem !important; }
  .tw-md-pt-2 { padding-top: 0.5rem !important; }
  .tw-md-pt-3 { padding-top: 0.75rem !important; }
  .tw-md-pt-4 { padding-top: 1rem !important; }
  .tw-md-pt-5 { padding-top: 1.25rem !important; }
  .tw-md-pt-6 { padding-top: 1.5rem !important; }
  .tw-md-pt-8 { padding-top: 2rem !important; }
  .tw-md-pt-10 { padding-top: 2.5rem !important; }
  .tw-md-pt-12 { padding-top: 3rem !important; }
  .tw-md-pt-16 { padding-top: 4rem !important; }
  .tw-md-pt-20 { padding-top: 5rem !important; }
  .tw-md-pt-24 { padding-top: 6rem !important; }

  .tw-md-pr-0 { padding-right: 0 !important; }
  .tw-md-pr-1 { padding-right: 0.25rem !important; }
  .tw-md-pr-2 { padding-right: 0.5rem !important; }
  .tw-md-pr-3 { padding-right: 0.75rem !important; }
  .tw-md-pr-4 { padding-right: 1rem !important; }
  .tw-md-pr-5 { padding-right: 1.25rem !important; }
  .tw-md-pr-6 { padding-right: 1.5rem !important; }
  .tw-md-pr-8 { padding-right: 2rem !important; }
  .tw-md-pr-10 { padding-right: 2.5rem !important; }
  .tw-md-pr-12 { padding-right: 3rem !important; }
  .tw-md-pr-16 { padding-right: 4rem !important; }
  .tw-md-pr-20 { padding-right: 5rem !important; }
  .tw-md-pr-24 { padding-right: 6rem !important; }

  .tw-md-pb-0 { padding-bottom: 0 !important; }
  .tw-md-pb-1 { padding-bottom: 0.25rem !important; }
  .tw-md-pb-2 { padding-bottom: 0.5rem !important; }
  .tw-md-pb-3 { padding-bottom: 0.75rem !important; }
  .tw-md-pb-4 { padding-bottom: 1rem !important; }
  .tw-md-pb-5 { padding-bottom: 1.25rem !important; }
  .tw-md-pb-6 { padding-bottom: 1.5rem !important; }
  .tw-md-pb-8 { padding-bottom: 2rem !important; }
  .tw-md-pb-10 { padding-bottom: 2.5rem !important; }
  .tw-md-pb-12 { padding-bottom: 3rem !important; }
  .tw-md-pb-16 { padding-bottom: 4rem !important; }
  .tw-md-pb-20 { padding-bottom: 5rem !important; }
  .tw-md-pb-24 { padding-bottom: 6rem !important; }

  .tw-md-pl-0 { padding-left: 0 !important; }
  .tw-md-pl-1 { padding-left: 0.25rem !important; }
  .tw-md-pl-2 { padding-left: 0.5rem !important; }
  .tw-md-pl-3 { padding-left: 0.75rem !important; }
  .tw-md-pl-4 { padding-left: 1rem !important; }
  .tw-md-pl-5 { padding-left: 1.25rem !important; }
  .tw-md-pl-6 { padding-left: 1.5rem !important; }
  .tw-md-pl-8 { padding-left: 2rem !important; }
  .tw-md-pl-10 { padding-left: 2.5rem !important; }
  .tw-md-pl-12 { padding-left: 3rem !important; }
  .tw-md-pl-16 { padding-left: 4rem !important; }
  .tw-md-pl-20 { padding-left: 5rem !important; }
  .tw-md-pl-24 { padding-left: 6rem !important; }
}

@media (min-width: 1024px) {
  .tw-lg-block { display: block !important; }
  .tw-lg-inline-block { display: inline-block !important; }
  .tw-lg-inline { display: inline !important; }
  .tw-lg-flex { display: flex !important; }
  .tw-lg-inline-flex { display: inline-flex !important; }
  .tw-lg-grid { display: grid !important; }
  .tw-lg-hidden { display: none !important; }

  .tw-lg-flex-row { flex-direction: row !important; }
  .tw-lg-flex-col { flex-direction: column !important; }
  .tw-lg-flex-wrap { flex-wrap: wrap !important; }
  .tw-lg-flex-nowrap { flex-wrap: nowrap !important; }
  .tw-lg-flex-1 { flex: 1 1 0% !important; }
  .tw-lg-flex-none { flex: none !important; }

  .tw-lg-items-start { align-items: flex-start !important; }
  .tw-lg-items-center { align-items: center !important; }
  .tw-lg-items-end { align-items: flex-end !important; }
  .tw-lg-items-stretch { align-items: stretch !important; }
  .tw-lg-items-baseline { align-items: baseline !important; }

  .tw-lg-justify-start { justify-content: flex-start !important; }
  .tw-lg-justify-center { justify-content: center !important; }
  .tw-lg-justify-end { justify-content: flex-end !important; }
  .tw-lg-justify-between { justify-content: space-between !important; }
  .tw-lg-justify-around { justify-content: space-around !important; }
  .tw-lg-justify-evenly { justify-content: space-evenly !important; }

  .tw-lg-self-start { align-self: flex-start !important; }
  .tw-lg-self-center { align-self: center !important; }
  .tw-lg-self-end { align-self: flex-end !important; }
  .tw-lg-self-stretch { align-self: stretch !important; }

  .tw-lg-text-left { text-align: left !important; }
  .tw-lg-text-center { text-align: center !important; }
  .tw-lg-text-right { text-align: right !important; }

  .tw-lg-relative { position: relative !important; }
  .tw-lg-absolute { position: absolute !important; }
  .tw-lg-static { position: static !important; }

  .tw-lg-w-full { width: 100% !important; }
  .tw-lg-w-auto { width: auto !important; }
  .tw-lg-h-full { height: 100% !important; }
  .tw-lg-h-auto { height: auto !important; }
  .tw-lg-max-w-content { max-width: var(--max-width) !important; }
  .tw-lg-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-lg-gap-0 { gap: 0 !important; }
  .tw-lg-gap-1 { gap: 0.25rem !important; }
  .tw-lg-gap-2 { gap: 0.5rem !important; }
  .tw-lg-gap-3 { gap: 0.75rem !important; }
  .tw-lg-gap-4 { gap: 1rem !important; }
  .tw-lg-gap-5 { gap: 1.25rem !important; }
  .tw-lg-gap-6 { gap: 1.5rem !important; }
  .tw-lg-gap-8 { gap: 2rem !important; }
  .tw-lg-gap-10 { gap: 2.5rem !important; }
  .tw-lg-gap-12 { gap: 3rem !important; }
  .tw-lg-gap-16 { gap: 4rem !important; }

  .tw-lg-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .tw-lg-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .tw-lg-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .tw-lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

  .tw-lg-space-y-0 > * + * { margin-top: 0 !important; }
  .tw-lg-space-y-1 > * + * { margin-top: 0.25rem !important; }
  .tw-lg-space-y-2 > * + * { margin-top: 0.5rem !important; }
  .tw-lg-space-y-3 > * + * { margin-top: 0.75rem !important; }
  .tw-lg-space-y-4 > * + * { margin-top: 1rem !important; }
  .tw-lg-space-y-5 > * + * { margin-top: 1.25rem !important; }
  .tw-lg-space-y-6 > * + * { margin-top: 1.5rem !important; }
  .tw-lg-space-y-8 > * + * { margin-top: 2rem !important; }
  .tw-lg-space-y-10 > * + * { margin-top: 2.5rem !important; }
  .tw-lg-space-y-12 > * + * { margin-top: 3rem !important; }
  .tw-lg-space-y-16 > * + * { margin-top: 4rem !important; }

  .tw-lg-space-x-0 > * + * { margin-left: 0 !important; }
  .tw-lg-space-x-1 > * + * { margin-left: 0.25rem !important; }
  .tw-lg-space-x-2 > * + * { margin-left: 0.5rem !important; }
  .tw-lg-space-x-3 > * + * { margin-left: 0.75rem !important; }
  .tw-lg-space-x-4 > * + * { margin-left: 1rem !important; }
  .tw-lg-space-x-5 > * + * { margin-left: 1.25rem !important; }
  .tw-lg-space-x-6 > * + * { margin-left: 1.5rem !important; }
  .tw-lg-space-x-8 > * + * { margin-left: 2rem !important; }
  .tw-lg-space-x-10 > * + * { margin-left: 2.5rem !important; }
  .tw-lg-space-x-12 > * + * { margin-left: 3rem !important; }
  .tw-lg-space-x-16 > * + * { margin-left: 4rem !important; }

  .tw-lg-m-0 { margin: 0 !important; }
  .tw-lg-m-1 { margin: 0.25rem !important; }
  .tw-lg-m-2 { margin: 0.5rem !important; }
  .tw-lg-m-3 { margin: 0.75rem !important; }
  .tw-lg-m-4 { margin: 1rem !important; }
  .tw-lg-m-5 { margin: 1.25rem !important; }
  .tw-lg-m-6 { margin: 1.5rem !important; }
  .tw-lg-m-8 { margin: 2rem !important; }
  .tw-lg-m-10 { margin: 2.5rem !important; }
  .tw-lg-m-12 { margin: 3rem !important; }
  .tw-lg-m-16 { margin: 4rem !important; }
  .tw-lg-m-20 { margin: 5rem !important; }
  .tw-lg-m-24 { margin: 6rem !important; }
  .tw-lg-m-auto { margin: auto !important; }

  .tw-lg-mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
  .tw-lg-mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
  .tw-lg-mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
  .tw-lg-mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
  .tw-lg-mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
  .tw-lg-mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
  .tw-lg-mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
  .tw-lg-mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
  .tw-lg-mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }
  .tw-lg-mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; }
  .tw-lg-mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; }
  .tw-lg-mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; }
  .tw-lg-mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; }
  .tw-lg-mx-auto { margin-left: auto !important; margin-right: auto !important; }

  .tw-lg-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .tw-lg-my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
  .tw-lg-my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
  .tw-lg-my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
  .tw-lg-my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .tw-lg-my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
  .tw-lg-my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .tw-lg-my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
  .tw-lg-my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
  .tw-lg-my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .tw-lg-my-16 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
  .tw-lg-my-20 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
  .tw-lg-my-24 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .tw-lg-my-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .tw-lg-mt-0 { margin-top: 0 !important; }
  .tw-lg-mt-1 { margin-top: 0.25rem !important; }
  .tw-lg-mt-2 { margin-top: 0.5rem !important; }
  .tw-lg-mt-3 { margin-top: 0.75rem !important; }
  .tw-lg-mt-4 { margin-top: 1rem !important; }
  .tw-lg-mt-5 { margin-top: 1.25rem !important; }
  .tw-lg-mt-6 { margin-top: 1.5rem !important; }
  .tw-lg-mt-8 { margin-top: 2rem !important; }
  .tw-lg-mt-10 { margin-top: 2.5rem !important; }
  .tw-lg-mt-12 { margin-top: 3rem !important; }
  .tw-lg-mt-16 { margin-top: 4rem !important; }
  .tw-lg-mt-20 { margin-top: 5rem !important; }
  .tw-lg-mt-24 { margin-top: 6rem !important; }
  .tw-lg-mt-auto { margin-top: auto !important; }

  .tw-lg-mr-0 { margin-right: 0 !important; }
  .tw-lg-mr-1 { margin-right: 0.25rem !important; }
  .tw-lg-mr-2 { margin-right: 0.5rem !important; }
  .tw-lg-mr-3 { margin-right: 0.75rem !important; }
  .tw-lg-mr-4 { margin-right: 1rem !important; }
  .tw-lg-mr-5 { margin-right: 1.25rem !important; }
  .tw-lg-mr-6 { margin-right: 1.5rem !important; }
  .tw-lg-mr-8 { margin-right: 2rem !important; }
  .tw-lg-mr-10 { margin-right: 2.5rem !important; }
  .tw-lg-mr-12 { margin-right: 3rem !important; }
  .tw-lg-mr-16 { margin-right: 4rem !important; }
  .tw-lg-mr-20 { margin-right: 5rem !important; }
  .tw-lg-mr-24 { margin-right: 6rem !important; }
  .tw-lg-mr-auto { margin-right: auto !important; }

  .tw-lg-mb-0 { margin-bottom: 0 !important; }
  .tw-lg-mb-1 { margin-bottom: 0.25rem !important; }
  .tw-lg-mb-2 { margin-bottom: 0.5rem !important; }
  .tw-lg-mb-3 { margin-bottom: 0.75rem !important; }
  .tw-lg-mb-4 { margin-bottom: 1rem !important; }
  .tw-lg-mb-5 { margin-bottom: 1.25rem !important; }
  .tw-lg-mb-6 { margin-bottom: 1.5rem !important; }
  .tw-lg-mb-8 { margin-bottom: 2rem !important; }
  .tw-lg-mb-10 { margin-bottom: 2.5rem !important; }
  .tw-lg-mb-12 { margin-bottom: 3rem !important; }
  .tw-lg-mb-16 { margin-bottom: 4rem !important; }
  .tw-lg-mb-20 { margin-bottom: 5rem !important; }
  .tw-lg-mb-24 { margin-bottom: 6rem !important; }
  .tw-lg-mb-auto { margin-bottom: auto !important; }

  .tw-lg-ml-0 { margin-left: 0 !important; }
  .tw-lg-ml-1 { margin-left: 0.25rem !important; }
  .tw-lg-ml-2 { margin-left: 0.5rem !important; }
  .tw-lg-ml-3 { margin-left: 0.75rem !important; }
  .tw-lg-ml-4 { margin-left: 1rem !important; }
  .tw-lg-ml-5 { margin-left: 1.25rem !important; }
  .tw-lg-ml-6 { margin-left: 1.5rem !important; }
  .tw-lg-ml-8 { margin-left: 2rem !important; }
  .tw-lg-ml-10 { margin-left: 2.5rem !important; }
  .tw-lg-ml-12 { margin-left: 3rem !important; }
  .tw-lg-ml-16 { margin-left: 4rem !important; }
  .tw-lg-ml-20 { margin-left: 5rem !important; }
  .tw-lg-ml-24 { margin-left: 6rem !important; }
  .tw-lg-ml-auto { margin-left: auto !important; }

  .tw-lg-p-0 { padding: 0 !important; }
  .tw-lg-p-1 { padding: 0.25rem !important; }
  .tw-lg-p-2 { padding: 0.5rem !important; }
  .tw-lg-p-3 { padding: 0.75rem !important; }
  .tw-lg-p-4 { padding: 1rem !important; }
  .tw-lg-p-5 { padding: 1.25rem !important; }
  .tw-lg-p-6 { padding: 1.5rem !important; }
  .tw-lg-p-8 { padding: 2rem !important; }
  .tw-lg-p-10 { padding: 2.5rem !important; }
  .tw-lg-p-12 { padding: 3rem !important; }
  .tw-lg-p-16 { padding: 4rem !important; }
  .tw-lg-p-20 { padding: 5rem !important; }
  .tw-lg-p-24 { padding: 6rem !important; }

  .tw-lg-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .tw-lg-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .tw-lg-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .tw-lg-px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .tw-lg-px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .tw-lg-px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .tw-lg-px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .tw-lg-px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .tw-lg-px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
  .tw-lg-px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
  .tw-lg-px-16 { padding-left: 4rem !important; padding-right: 4rem !important; }
  .tw-lg-px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
  .tw-lg-px-24 { padding-left: 6rem !important; padding-right: 6rem !important; }

  .tw-lg-py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .tw-lg-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .tw-lg-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .tw-lg-py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
  .tw-lg-py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .tw-lg-py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
  .tw-lg-py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .tw-lg-py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .tw-lg-py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .tw-lg-py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .tw-lg-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .tw-lg-py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .tw-lg-py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

  .tw-lg-pt-0 { padding-top: 0 !important; }
  .tw-lg-pt-1 { padding-top: 0.25rem !important; }
  .tw-lg-pt-2 { padding-top: 0.5rem !important; }
  .tw-lg-pt-3 { padding-top: 0.75rem !important; }
  .tw-lg-pt-4 { padding-top: 1rem !important; }
  .tw-lg-pt-5 { padding-top: 1.25rem !important; }
  .tw-lg-pt-6 { padding-top: 1.5rem !important; }
  .tw-lg-pt-8 { padding-top: 2rem !important; }
  .tw-lg-pt-10 { padding-top: 2.5rem !important; }
  .tw-lg-pt-12 { padding-top: 3rem !important; }
  .tw-lg-pt-16 { padding-top: 4rem !important; }
  .tw-lg-pt-20 { padding-top: 5rem !important; }
  .tw-lg-pt-24 { padding-top: 6rem !important; }

  .tw-lg-pr-0 { padding-right: 0 !important; }
  .tw-lg-pr-1 { padding-right: 0.25rem !important; }
  .tw-lg-pr-2 { padding-right: 0.5rem !important; }
  .tw-lg-pr-3 { padding-right: 0.75rem !important; }
  .tw-lg-pr-4 { padding-right: 1rem !important; }
  .tw-lg-pr-5 { padding-right: 1.25rem !important; }
  .tw-lg-pr-6 { padding-right: 1.5rem !important; }
  .tw-lg-pr-8 { padding-right: 2rem !important; }
  .tw-lg-pr-10 { padding-right: 2.5rem !important; }
  .tw-lg-pr-12 { padding-right: 3rem !important; }
  .tw-lg-pr-16 { padding-right: 4rem !important; }
  .tw-lg-pr-20 { padding-right: 5rem !important; }
  .tw-lg-pr-24 { padding-right: 6rem !important; }

  .tw-lg-pb-0 { padding-bottom: 0 !important; }
  .tw-lg-pb-1 { padding-bottom: 0.25rem !important; }
  .tw-lg-pb-2 { padding-bottom: 0.5rem !important; }
  .tw-lg-pb-3 { padding-bottom: 0.75rem !important; }
  .tw-lg-pb-4 { padding-bottom: 1rem !important; }
  .tw-lg-pb-5 { padding-bottom: 1.25rem !important; }
  .tw-lg-pb-6 { padding-bottom: 1.5rem !important; }
  .tw-lg-pb-8 { padding-bottom: 2rem !important; }
  .tw-lg-pb-10 { padding-bottom: 2.5rem !important; }
  .tw-lg-pb-12 { padding-bottom: 3rem !important; }
  .tw-lg-pb-16 { padding-bottom: 4rem !important; }
  .tw-lg-pb-20 { padding-bottom: 5rem !important; }
  .tw-lg-pb-24 { padding-bottom: 6rem !important; }

  .tw-lg-pl-0 { padding-left: 0 !important; }
  .tw-lg-pl-1 { padding-left: 0.25rem !important; }
  .tw-lg-pl-2 { padding-left: 0.5rem !important; }
  .tw-lg-pl-3 { padding-left: 0.75rem !important; }
  .tw-lg-pl-4 { padding-left: 1rem !important; }
  .tw-lg-pl-5 { padding-left: 1.25rem !important; }
  .tw-lg-pl-6 { padding-left: 1.5rem !important; }
  .tw-lg-pl-8 { padding-left: 2rem !important; }
  .tw-lg-pl-10 { padding-left: 2.5rem !important; }
  .tw-lg-pl-12 { padding-left: 3rem !important; }
  .tw-lg-pl-16 { padding-left: 4rem !important; }
  .tw-lg-pl-20 { padding-left: 5rem !important; }
  .tw-lg-pl-24 { padding-left: 6rem !important; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .video-layout,
  .feature-layout,
  .pricing-layout,
  .three-up,
  .steps-grid,
  .signal-grid,
  .feature-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    justify-self: stretch;
    max-width: none;
  }

  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-signup {
    width: 100%;
    justify-content: flex-start;
  }

  .note-one,
  .note-two {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .record-summary {
    grid-template-columns: 1fr;
  }

  .record-proof,
  .record-foot {
    grid-template-columns: 1fr;
  }

  .record-foot {
    grid-template-areas:
      "count"
      "list"
      "signature";
  }

  .record-page {
    padding-bottom: 118px;
  }

  .record-signature {
    justify-items: start;
    text-align: left;
  }

  .record-signature span:not(.signature-mark):not(.summary-label) {
    white-space: normal;
  }

  .hero-accent-art {
    position: static;
    display: block;
    width: 180px;
    margin: 12px 0 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--max-width), calc(100% - 32px));
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(250, 248, 244, 0.98);
    border: 1px solid var(--light-stone);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
    margin-top: 4px;
  }

  .site-nav .nav-sign-in {
    margin-top: 4px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .record-page {
    padding: 24px;
    padding-bottom: 108px;
  }

  .record-headline {
    gap: 10px;
  }

  .record-summary {
    margin-bottom: 20px;
  }

  .record-proof {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .record-proof-icon img {
    width: 84px;
    height: 84px;
  }

  .record-count strong {
    font-size: 2.8rem;
  }

  .record-list-head,
  .record-row {
    font-size: 0.94rem;
  }

  .video-frame-card {
    padding: 14px;
    border-radius: 24px;
  }

  .step-card::after {
    display: none;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: none;
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .record-page,
  .card,
  .step-card,
  .feature-card,
  .pricing-card,
  .video-frame-card,
  .final-cta-card {
    padding: 22px;
  }

  .record-page {
    padding-bottom: 104px;
  }

  .record-headline {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .record-proof {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .record-proof-icon img {
    width: 72px;
    height: 72px;
  }

  .hero-actions,
  .final-cta-actions,
  .final-signup {
    flex-direction: column;
    align-items: stretch;
  }

  .final-signup .signup-cta {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .final-signup input {
    width: 100%;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-illustration {
    width: 100%;
  }

  .video-points li {
    padding: 16px 16px 16px 46px;
  }

  .video-points li::before {
    left: 16px;
    top: 20px;
  }

  .faq-item summary,
  .faq-item p {
    padding-left: 22px;
    padding-right: 22px;
  }
}
