:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065f46;
  --green-900: #064e3b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --red-400: #f87171;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 64px;
  --content-max: 680px;
  --page-max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

ul,
ol {
  list-style: none;
}

.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(--page-max), calc(100% - 48px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
  padding: 14px 26px;
  box-shadow: 0 1px 2px rgba(5, 150, 105, 0.25);
}

.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: var(--white);
  color: var(--green-800);
  padding: 14px 28px;
  margin-top: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  background: var(--green-50);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-600);
  padding: 13px 26px;
}

.btn--outline:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-900);
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.logo__img--footer {
  height: 32px;
  max-width: 180px;
}

.logo__mark {
  color: var(--green-600);
  display: flex;
}

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

.nav--desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav--desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav--desktop a:hover {
  color: var(--green-700);
}

/* Nav dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-dropdown__trigger:hover,
.nav-dropdown.is-open .nav-dropdown__trigger {
  color: var(--green-700);
}

.nav-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__label {
  display: block;
  padding: 8px 12px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__menu a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.nav-select-wrap {
  padding: 8px 16px 12px;
}

.nav-select-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.nav-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.nav-select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(300px, 85vw);
  height: calc(100dvh - var(--header-h));
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 101;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}

.mobile-nav__links a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
}

.mobile-nav__links a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 99;
}

.mobile-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Hero — two-column SaaS layout, left copy + flow panel */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--white);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(167, 243, 208, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero__dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
  z-index: 0;
}

.hero__dots::before,
.hero__dots::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 24px 24px;
}

.hero__dots::before {
  background-image: radial-gradient(circle, rgba(6, 78, 59, 0.36) 3px, transparent 3px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
}

.hero__dots::after {
  background-image: radial-gradient(circle, rgba(167, 243, 208, 0.5) 3px, transparent 3px);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.9) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero__copy {
  text-align: left;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: hero-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.92); }
}

.hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
  text-wrap: pretty;
}

.hero__actions {
  margin-bottom: 28px;
}

.hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  max-width: 520px;
  margin-bottom: 14px;
}

.hero__form-field {
  flex: 1 1 220px;
  min-width: 0;
}

.hero__form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.hero__form-field input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero__form-field input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.hero__form-field input.error {
  border-color: var(--red-400);
}

.hero__submit {
  flex: 0 0 auto;
  min-width: 148px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero__action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero__microcopy {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

.hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero flow panel (CSS-only, no screenshots) */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 48px rgba(6, 78, 59, 0.08),
    0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, var(--green-200), transparent 40%, var(--green-100));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.hero-panel__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.hero-panel__pill {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-panel__flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hero-panel__step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}

.hero-panel__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 44px;
  bottom: -2px;
  width: 2px;
  background: var(--green-100);
}

.hero-panel__step--active:not(:last-child)::after {
  background: linear-gradient(to bottom, var(--green-400), var(--green-100));
}

.hero-panel__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hero-panel__step--next .hero-panel__icon {
  color: var(--gray-400);
  background: var(--gray-50);
  border-color: var(--gray-200);
}

.hero-panel__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 4px;
}

.hero-panel__step-body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.hero-panel__step-body span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
}

.hero-panel__step--next .hero-panel__step-body strong {
  color: var(--gray-600);
}

.hero-panel__meter {
  display: block;
  height: 6px;
  margin-top: 8px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.hero-panel__meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  border-radius: inherit;
}

.hero-panel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}

.hero-panel__dot {
  color: var(--green-400);
  font-weight: 400;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 24px;
}

.trust-row li {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-form input::placeholder {
  color: var(--gray-400);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.waitlist-form input.error {
  border-color: var(--red-400);
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.form-note--light {
  color: rgba(255, 255, 255, 0.78);
}

/* Problem strip */
.problem-strip {
  padding: 56px 0;
  background: var(--gray-50);
  border-block: 1px solid var(--gray-100);
}

.problem-strip__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.problem-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.problem-strip__item {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}

.problem-strip__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.problem-strip__item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Solution bridge */
.solution-bridge {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.solution-bridge__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.solution-bridge__inner p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.solution-bridge__inner strong {
  color: var(--green-700);
}

/* Shared sections */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--green-200);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.88);
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

/* Benefits */
.benefits {
  padding: 80px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin-inline: auto;
}

.benefit-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}

.benefit-card__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-600);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* How it works */
.how-it-works {
  padding: 80px 0;
  background: var(--gray-50);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}

.step {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}

.code-snippet {
  display: block;
  padding: 10px 12px;
  background: var(--gray-900);
  color: var(--green-200);
  font-size: 11px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  white-space: nowrap;
  text-align: left;
}

/* Emails */
.emails {
  padding: 80px 0;
  background: var(--white);
}

.email-list {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--gray-800);
}

.email-list__trigger {
  flex-shrink: 0;
  min-width: 110px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--green-700);
  background: var(--green-50);
  border-radius: 4px;
}

/* Early access */
.early-access {
  padding: 72px 0;
  background: var(--green-800);
  color: var(--white);
}

.early-access__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.early-access h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.perks li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.perks li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--green-600);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Final CTA */
.cta-final {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--green-700) 0%, var(--green-900) 100%);
  color: var(--white);
}

.cta-final__inner {
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.waitlist-form--footer {
  margin-top: 28px;
  flex-direction: column;
  max-width: 440px;
  margin-inline: auto;
}

.waitlist-form--footer input {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 40px 0;
}

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

.logo--footer {
  color: var(--white);
}

.logo--footer .logo__mark {
  color: var(--green-500);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__nav a {
  font-size: 14px;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--green-400);
}

.footer__copy {
  font-size: 13px;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  max-width: calc(100% - 32px);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 22px;
  line-height: 1;
  color: var(--gray-600);
  cursor: pointer;
}

.modal__close:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  padding-right: 32px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 8px;
}

.modal__email-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 20px;
  word-break: break-all;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-field .required {
  color: var(--green-600);
}

.form-field .optional {
  font-weight: 400;
  color: var(--gray-400);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-field input.error,
.form-field textarea.error {
  border-color: var(--red-400);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding: 40px 0 56px;
    min-height: auto;
  }

  .hero__dots {
    height: 45%;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__copy {
    text-align: center;
    max-width: none;
  }

  .hero__badge {
    margin-bottom: 20px;
  }

  .hero__title {
    font-size: clamp(2.125rem, 8vw, 2.75rem);
  }

  .hero__subtitle {
    margin-bottom: 28px;
  }

  .hero__form {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }

  .hero__submit {
    width: 100%;
    min-width: 0;
  }

  .hero__action-row {
    justify-content: center;
  }

  .hero__action-row .btn--outline {
    width: 100%;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero-panel {
    max-width: 100%;
  }

  .problem-strip__grid,
  .benefits__grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .hero__form.waitlist-form {
    flex-direction: column;
  }

  .waitlist-form .btn {
    width: 100%;
  }

  .sticky-cta {
    display: block;
  }

  body.has-sticky-cta {
    padding-bottom: 72px;
  }

  .email-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .email-list__trigger {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .modal__dialog {
    padding: 28px 20px 24px;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
  }
}

/* Subpages: breadcrumbs, compare, blog, SEO blocks */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray-500);
}

.breadcrumbs a {
  color: var(--green-700);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero {
  position: relative;
  padding: 48px 0 56px;
  text-align: center;
  overflow: hidden;
}

.page-hero--compact {
  min-height: auto;
  padding: 40px 0 48px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 28px;
}

.content-section {
  padding: 64px 0;
}

.content-section--alt {
  background: var(--gray-50);
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.content-wide {
  max-width: 880px;
  margin: 0 auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.compare-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-900);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--green-600);
  font-weight: 700;
}

.compare-table .cross {
  color: var(--gray-400);
}

.compare-table .highlight-col {
  background: var(--green-50);
}

.verdict-box {
  padding: 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.verdict-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}

.verdict-box p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
}

.geo-answer {
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}

.geo-answer strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.geo-answer p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.link-grid a {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
}

.link-grid a:hover {
  border-color: var(--green-200);
  color: var(--green-700);
}

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

.internal-links {
  padding: 56px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.internal-links h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.internal-links > .container > p {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-link {
  display: block;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card-link:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}

.card-link h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.card-link p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.card-link__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-700);
  margin-bottom: 10px;
}

/* Blog */
.blog-page {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 320px);
}

.blog-hero {
  position: relative;
  padding: 56px 0 48px;
  text-align: center;
  overflow: hidden;
}

.blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  margin-bottom: 20px;
}

.blog-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.1;
}

.blog-hero__lead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.blog-hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--green-100);
}

.blog-hero__stat {
  text-align: center;
}

.blog-hero__stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-700);
}

.blog-hero__stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

.nav--desktop a.is-active,
.mobile-nav__links a.is-active {
  color: var(--green-700);
  font-weight: 600;
}

.blog-layout {
  padding: 48px 0 80px;
}

.blog-layout--showcase {
  background: var(--white);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.blog-card {
  display: block;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
}

.blog-card__meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
  margin-bottom: 10px;
}

.blog-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Blog showcase widgets */
.blog-showcase-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.blog-showcase-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.blog-showcase-header p {
  font-size: 15px;
  color: var(--gray-500);
}

.blog-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.blog-widget {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-widget::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-600), var(--green-400));
  opacity: 0;
  transition: opacity 0.2s;
}

.blog-widget:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-widget:hover::before {
  opacity: 1;
}

.blog-widget__date {
  text-align: center;
  padding: 14px 10px;
  background: linear-gradient(145deg, var(--green-50), var(--white));
  border-radius: var(--radius-md);
  border: 1px solid var(--green-200);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.blog-widget__issued {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.blog-widget__day {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.blog-widget__month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  margin-top: 4px;
}

.blog-widget__year {
  display: block;
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

.blog-widget__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-700);
  background: var(--green-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.blog-widget__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.blog-widget:hover .blog-widget__title {
  color: var(--green-800);
}

.blog-widget__subtitle {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.blog-widget__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
}

.blog-widget__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-widget__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  transition: gap 0.2s;
}

.blog-widget:hover .blog-widget__read {
  gap: 10px;
}

.blog-widget__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: 20px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.blog-widget:hover .blog-widget__arrow {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateX(4px);
}

.blog-showcase-count {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.blog-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--gray-500);
  font-size: 15px;
}

.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.article__meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.article h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}

.article h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 40px 0 14px;
}

.article h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 10px;
}

.article p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article ul,
.article ol {
  margin: 0 0 20px 24px;
  color: var(--gray-700);
}

.article li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-inline {
  text-align: center;
  padding: 40px 28px;
  margin: 40px 0;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-md);
}

.cta-inline h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-inline p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
  color: var(--white);
}

@media (max-width: 768px) {
  .link-grid,
  .link-grid--2,
  .card-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-widget {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .blog-widget__date {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    width: fit-content;
    padding: 10px 16px;
  }

  .blog-widget__day {
    font-size: 22px;
  }

  .blog-widget__month,
  .blog-widget__year {
    display: inline;
    margin-top: 0;
    margin-left: 4px;
  }

  .blog-widget__arrow {
    display: none;
  }

  .blog-hero__stats {
    flex-direction: column;
    gap: 16px;
  }
}
