/* SecureSetups — Hugo theme */
:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --accent-green: #10b981;
  --accent-violet: #7c3aed;
  --navy: #0a1628;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #f1f5f9;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --max-w: 76rem;
  --page-gutter: 1.5rem;
  --radius: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --topic-icon-size: 1.3125rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.06), transparent);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

@media (max-width: 639px) {
  :root {
    --page-gutter: 1.75rem;
    --card-gutter: 0.5rem;
  }

  body {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Full-bleed bands: background edge-to-edge */
  .site-header,
  .page-header,
  .site-footer,
  .topic-header {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero,
  .ptr-hero,
  .section,
  .cta-band {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
  }

  .ptr-hero {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .reading-progress--blog {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
  }
}

main { flex: 1; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: #FBF8F5;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.45rem 0; gap: 0.75rem;
}
.header-right {
  display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: flex-end;
}
@media (min-width: 768px) {
  .header-right { gap: 0.85rem; }
}
.logo { display: flex; align-items: center; gap: 0.625rem; transition: opacity 0.15s; }
.logo:hover { opacity: 0.85; }
.navbar-logo,
.h-10.w-auto {
  display: block;
  height: 28px;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
.footer-navbar-logo {
  height: 28px;
  max-height: 28px;
}
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.625rem; color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.logo-text { font-size: 1.125rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.nav-desktop { display: none; gap: 0.25rem; align-items: center; }
.nav-desktop a {
  font-size: 0.8125rem; font-weight: 600; color: #5c5c5c;
  padding: 0.35rem 0.6rem; border-radius: 0.5rem;
  transition: all 0.15s;
}
.nav-desktop a:hover { color: #1A1A1A; background: rgba(26, 26, 26, 0.06); }
.nav-desktop a.is-active { color: #1A1A1A; background: rgba(26, 26, 26, 0.08); }
.nav-auth-in,
[data-auth-signed-in] {
  display: none !important;
}
body.is-signed-in [data-auth-signed-out] {
  display: none !important;
}
body.is-signed-in .nav-auth-in {
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
}
body.is-signed-in .nav-mobile-menu > li[data-auth-signed-in] {
  display: list-item !important;
}
body.is-signed-in .nav-mobile-menu > li.nav-mobile-auth {
  display: flex !important;
  flex-direction: column;
  gap: 0.125rem;
}
.nav-auth-name,
.nav-mobile-name {
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c5c5c;
}
.nav-desktop a.nav-auth-name {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 0;
}
.nav-desktop a.nav-auth-name.is-loading,
.nav-auth-name.is-loading {
  min-width: 7rem;
}
.nav-auth-name.is-loading::after,
.nav-mobile-name.is-loading::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.06) 0%,
    rgba(26, 26, 26, 0.14) 50%,
    rgba(26, 26, 26, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: nav-name-shimmer 1.1s ease-in-out infinite;
}
.nav-auth-name:not(.is-loading) {
  animation: nav-name-in 0.18s ease;
}
@keyframes nav-name-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@keyframes nav-name-in {
  from { opacity: 0.45; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-auth-name.is-loading::after,
  .nav-mobile-name.is-loading::after {
    animation: none;
    background: rgba(26, 26, 26, 0.12);
  }
  .nav-auth-name:not(.is-loading) {
    animation: none;
  }
}
.nav-mobile-name {
  display: flex;
  align-items: center;
  max-width: none;
  min-width: 0;
  min-height: calc(0.875rem * 1.2 + 1.125rem);
  padding: 0.5625rem 0.625rem;
  font-size: 0.875rem;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
  white-space: nowrap;
}
.nav-cta:hover { background: #333333; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 600; color: var(--muted);
  padding: 0.5rem 0.875rem; border-radius: 0.5rem;
  border: none; background: none; cursor: pointer;
  font-family: var(--font-sans); transition: all 0.15s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active {
  color: var(--primary); background: rgba(37, 99, 235, 0.08);
}
.nav-dropdown-chevron {
  width: 0.875rem; height: 0.875rem;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.375rem); left: 0;
  min-width: 15rem; z-index: 60;
  background: white; border: 1px solid var(--border);
  border-radius: 0.75rem; box-shadow: var(--shadow-lg);
  padding: 0.375rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.5rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--navy);
  transition: background 0.1s;
}
.nav-dropdown-item:hover { background: var(--surface); color: var(--primary); }
.nav-dropdown-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 0.375rem;
  flex-shrink: 0;
}
.nav-dropdown-icon--blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.nav-dropdown-icon--rose { background: rgba(225, 29, 72, 0.1); color: #e11d48; }
.nav-dropdown-icon--green { background: rgba(5, 150, 105, 0.1); color: #059669; }
.nav-dropdown-icon--violet { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.nav-dropdown-icon--cyan { background: rgba(8, 145, 178, 0.1); color: #0891b2; }
.nav-dropdown-icon--amber { background: rgba(217, 119, 6, 0.1); color: #d97706; }
.nav-dropdown-icon--slate { background: rgba(71, 85, 105, 0.1); color: #475569; }
.nav-dropdown-icon--fuchsia { background: rgba(192, 38, 211, 0.1); color: #c026d3; }
.nav-dropdown-icon--indigo { background: rgba(79, 70, 229, 0.1); color: #4f46e5; }
.nav-dropdown-item--all {
  justify-content: space-between;
  font-weight: 600; color: var(--primary);
}
.nav-dropdown-footer {
  border-top: 1px solid var(--border);
  margin-top: 0.25rem; padding-top: 0.25rem;
}
.menu-toggle { background: none; border: none; cursor: pointer; padding: 0.25rem; color: var(--ptr-ink, #1A1A1A); }
.menu-toggle svg { color: inherit; stroke: currentColor; }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.nav-mobile.open {
  pointer-events: auto;
  visibility: visible;
}
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 301;
  background: rgba(10, 22, 40, 0.38);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.nav-mobile.open .nav-mobile-overlay { opacity: 1; }
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 302;
  width: max-content;
  min-width: 9.25rem;
  max-width: min(13.5rem, calc(100vw - 1.25rem));
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0.375rem 0.375rem 0.625rem;
  background: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-right: none;
  box-shadow: -16px 0 48px rgba(15, 23, 42, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.nav-mobile.open .nav-mobile-drawer { transform: translateX(0); }
.nav-mobile-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0.125rem 0.125rem 0.25rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--ptr-ink, #1A1A1A);
}
.nav-mobile-close svg {
  width: 1.125rem;
  height: 1.125rem;
  color: inherit;
  stroke: currentColor;
}
.nav-mobile-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.25rem;
}
.nav-mobile-menu,
.nav-mobile-subnav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5625rem 0.625rem;
  border: none;
  border-radius: 0.5rem;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
a.nav-mobile-link:hover,
button.nav-mobile-link:hover {
  background: var(--surface);
  color: var(--primary);
}
.nav-mobile-link.is-active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}
.nav-mobile-chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.22s ease;
}
.nav-mobile-group.open .nav-mobile-chevron { transform: rotate(180deg); }
.nav-mobile-group.open .nav-mobile-link--toggle {
  background: var(--surface);
  color: var(--navy);
}
.nav-mobile-subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding-left: 0.375rem;
}
.nav-mobile-group.open .nav-mobile-subnav {
  max-height: 16rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-sublink {
  display: block;
  padding: 0.4375rem 0.625rem;
  border-radius: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-sublink:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
}
.nav-mobile-sublink--all {
  margin-top: 0.125rem;
  padding-top: 0.625rem;
  font-weight: 600;
  color: var(--primary);
}
body.mobile-nav-open { overflow: hidden; }

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

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* Site search */
.site-search { position: relative; flex: 1; max-width: 14rem; }
@media (min-width: 768px) { .site-search { max-width: 16rem; } }
.search-input-wrap {
  position: relative; display: flex; align-items: center;
}
.search-icon {
  position: absolute; left: 0.75rem; color: var(--muted); pointer-events: none;
}
.search-input {
  width: 100%; padding: 0.5rem 2.25rem 0.5rem 2.25rem;
  border: 1px solid var(--border); border-radius: 0.625rem;
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 500;
  background: var(--surface); color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input::placeholder { color: #94a3b8; }
.search-input:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); background: white;
}
.search-kbd {
  position: absolute; right: 0.5rem;
  display: none; font-size: 0.625rem; font-family: var(--font-sans);
  color: var(--muted); background: white; border: 1px solid var(--border);
  border-radius: 0.25rem; padding: 0.125rem 0.375rem;
}
@media (min-width: 1024px) { .search-kbd { display: inline; } }
.search-results {
  position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0;
  min-width: 18rem; z-index: 100;
  background: white; border: 1px solid var(--border);
  border-radius: 0.75rem; box-shadow: var(--shadow-lg);
  padding: 0.5rem; max-height: 24rem; overflow-y: auto;
}
@media (min-width: 768px) {
  .search-results { right: auto; width: 22rem; }
}
.search-results-list { list-style: none; }
.search-results-empty {
  padding: 1rem; text-align: center; font-size: 0.8125rem; color: var(--muted);
}
.search-result-item {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  transition: background 0.1s;
}
.search-result-item:hover { background: var(--surface); }
.search-result-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.search-result-summary {
  font-size: 0.75rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #FBF8F5;
  color: #5c5c5c;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2.5rem 0 2.75rem;
}
.footer-mission {
  max-width: 36rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5c5c5c;
}
.footer-simple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.footer-simple-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
}
.footer-simple-nav a:hover { opacity: 0.7; }
.footer-tagline {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: #5c5c5c;
}
.footer-copy {
  font-size: 0.8125rem;
  color: #5c5c5c;
  margin: 0;
}

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; padding: 0.125rem 0.625rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-review { background: rgba(0,102,255,0.1); color: var(--primary); }
.badge-guide { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.badge-article { background: rgba(124, 58, 237, 0.14); color: #6d28d9; }
.badge-comparison { background: rgba(0,194,255,0.1); color: var(--primary-dark); }

/* Stars */
.stars { display: flex; align-items: center; gap: 0.125rem; }
.star { width: 1rem; height: 1rem; color: #e2e8f0; }
.star.filled { color: #fbbf24; fill: #fbbf24; }
.star.half { color: #fbbf24; }
.stars .rating-text { margin-left: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }

/* Score */
.score-badge {
  display: flex; flex-direction: column; align-items: center;
  border-radius: 0.75rem; padding: 0.75rem 1rem; color: white;
}
.score-badge.high { background: var(--accent-green); }
.score-badge.mid { background: var(--primary); }
.score-badge.low { background: #f59e0b; }
.score-badge .score { font-size: 1.875rem; font-weight: 700; line-height: 1; }
.score-badge .max { font-size: 0.75rem; opacity: 0.9; margin-top: 0.125rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.625rem; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 700; transition: all 0.2s; cursor: pointer; border: none;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), #059669);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}
.btn-glow { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45); }
.btn-glass {
  border: 1px solid rgba(255,255,255,0.25); color: white;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-outline { border: 2px solid white; color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-ghost { border: 1px solid var(--border); color: var(--navy); background: white; }
.btn-ghost:hover { background: var(--surface); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: #030712;
  color: white;
  min-height: auto;
  display: flex; flex-direction: column;
}
.hero--home {
  background: #f8fafc;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.hero--home > .container {
  max-width: 100%;
  overflow: visible;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(16, 185, 129, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(124, 58, 237, 0.12), transparent);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb--1 { width: 20rem; height: 20rem; background: rgba(6, 182, 212, 0.2); top: 10%; right: 5%; }
.hero-orb--2 { width: 16rem; height: 16rem; background: rgba(16, 185, 129, 0.15); bottom: 20%; left: 10%; animation-delay: -3s; }
.hero-orb--3 { width: 12rem; height: 12rem; background: rgba(124, 58, 237, 0.15); top: 50%; left: 45%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.hero-layout {
  position: relative; width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.hero--home .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-top: 1rem;
  padding-bottom: 1.75rem;
}
.hero--home .hero-content {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Homepage topic buttons */
.hero-topic-list--desktop {
  display: none;
  flex: 0 0 auto;
  min-width: 0;
}
.hero-topic-list--mobile {
  display: block;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}
@media (min-width: 900px) {
  .hero--home .hero-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    width: fit-content;
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }
  .hero--home .hero-content {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 32rem;
    overflow: visible;
  }
  .hero-topic-list--desktop { display: block; }
  .hero-topic-list--mobile { display: none; }
}
.topic-picker--stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-topic-list--desktop .topic-picker--stack {
  align-items: flex-end;
}
.hero-topic-list--mobile .topic-picker--stack {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0.125rem 0.5rem 0.25rem 0;
}
.hero-topic-list--mobile::-webkit-scrollbar {
  display: none;
}
.hero-topic-list--mobile::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2rem;
  background: linear-gradient(to right, transparent, #f8fafc);
  pointer-events: none;
}
.hero--home .topic-btn--stack {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 2px solid var(--border);
  background: white;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  border-radius: 0.625rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.hero-topic-list--desktop .topic-btn--stack {
  --topic-offset: 0.75rem;
  margin-right: calc((var(--topic-step) - 1) * var(--topic-offset));
  margin-left: 0;
  width: max-content;
  min-width: 10.5rem;
  transform: rotate(calc((var(--topic-step) - 1) * -0.35deg));
}
.hero-topic-list--mobile .topic-btn--stack {
  margin: 0;
  width: max-content;
  min-width: 0;
  max-width: none;
  transform: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem 0.4375rem 0.4375rem;
  border-width: 1px;
  border-radius: 0.625rem;
  min-height: auto;
  scroll-snap-stop: normal;
}
.hero-topic-list--mobile .topic-btn--stack .topic-btn-label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  color: var(--navy);
}
.hero-topic-list--mobile .topic-btn--stack .topic-btn-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4375rem;
  flex-shrink: 0;
}
.hero-topic-list--mobile .topic-btn--stack .topic-icon {
  --topic-icon-size: 1.0625rem;
}
.hero-topic-list--desktop .topic-btn--stack:hover {
  background: white;
  transform: translateY(-2px) rotate(0deg);
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.08);
}
.hero-topic-list--mobile .topic-btn--stack:active {
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}
.hero--home .topic-btn--stack.is-active {
  background: #f8fafc;
  border-color: var(--navy);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}
.hero-topic-list--desktop .topic-btn--stack.is-active {
  transform: rotate(0deg);
}
.hero--home .topic-btn--stack .topic-btn-icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 0.5rem;
  background: #f1f5f9;
  color: var(--navy);
}
.hero--home .topic-btn--stack .topic-btn-label {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy);
}
.hero--home .topic-btn--stack .topic-icon {
  --topic-icon-size: 1.25rem;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 0.625rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 9999px; padding: 0.375rem 1rem 0.375rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero--home .hero-pill {
  border-color: var(--border);
  background: white;
  color: var(--muted);
  backdrop-filter: none;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.hero--home .hero-sections { margin-top: 1.25rem; }
.hero--home .hero-actions { margin-top: 1.25rem; }
.hero--home p { color: var(--muted); max-width: 100%; }
@media (max-width: 639px) {
  .hero--home h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    overflow-wrap: break-word;
  }
  .hero--home p {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.pulse-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 12px var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero h1 {
  font-size: 2.75rem; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; text-wrap: balance;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.text-gradient {
  background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #4f46e5 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { margin-top: 1.25rem; font-size: 1.125rem; color: #94a3b8; line-height: 1.7; max-width: 36rem; }

.hero-sections {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.375rem 0;
  margin-top: 1.75rem;
}
.hero-sections a {
  font-size: 0.875rem; font-weight: 600; color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.hero-sections a:hover { color: var(--primary); }
.hero-sections a:not(:last-child)::after {
  content: "·";
  margin: 0 0.75rem;
  color: var(--border);
  font-weight: 400;
  pointer-events: none;
}
.topic-picker {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.topic-picker--strip {
  flex-wrap: nowrap;
  gap: 0.625rem;
  min-width: min-content;
}
@media (min-width: 1200px) {
  .topic-picker--strip {
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    min-width: 0;
  }
}
.topic-btn {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.4375rem 0.875rem 0.4375rem 0.4375rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  flex-shrink: 0;
  min-width: 0;
}
.topic-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--topic-accent) 30%, var(--border));
}
.topic-btn.is-active {
  border-color: color-mix(in srgb, var(--topic-accent) 45%, var(--border));
  background: var(--topic-tint);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--topic-accent) 20%, transparent);
}
.topic-btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.375rem; height: 2.375rem; border-radius: 0.5rem;
  background: var(--topic-tint);
  color: var(--topic-accent);
  flex-shrink: 0;
}
.topic-icon { width: var(--topic-icon-size); height: var(--topic-icon-size); flex-shrink: 0; }
.topic-btn-label {
  font-size: 0.8125rem; font-weight: 600; color: var(--navy);
  line-height: 1.2; white-space: nowrap;
}
@media (max-width: 639px) {
  .topic-btn { padding: 0.375rem 0.75rem 0.375rem 0.375rem; }
  .topic-btn-icon { width: 2.125rem; height: 2.125rem; }
  .topic-btn-label { font-size: 0.75rem; }
}
.topic-btn--blue { --topic-accent: #2563eb; --topic-tint: rgba(37, 99, 235, 0.1); }
.topic-btn--rose { --topic-accent: #e11d48; --topic-tint: rgba(225, 29, 72, 0.1); }
.topic-btn--green { --topic-accent: #059669; --topic-tint: rgba(5, 150, 105, 0.1); }
.topic-btn--violet { --topic-accent: #7c3aed; --topic-tint: rgba(124, 58, 237, 0.1); }
.topic-btn--cyan { --topic-accent: #0891b2; --topic-tint: rgba(8, 145, 178, 0.1); }
.topic-btn--amber { --topic-accent: #d97706; --topic-tint: rgba(217, 119, 6, 0.1); }
.topic-btn--slate { --topic-accent: #475569; --topic-tint: rgba(71, 85, 105, 0.1); }
.topic-btn--fuchsia { --topic-accent: #c026d3; --topic-tint: rgba(192, 38, 211, 0.1); }
.topic-btn--indigo { --topic-accent: #4f46e5; --topic-tint: rgba(79, 70, 229, 0.1); }
.topic-picker--inline { margin-top: 1.25rem; }
.topic-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 0.875rem; border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 600;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted);
  transition: all 0.15s;
  white-space: nowrap;
}
.topic-picker--grid .topic-chip,
.topic-picker--inline .topic-chip,
.topic-hub .topic-card {
  color: var(--navy);
  background: white;
  border-color: var(--border);
}
.topic-chip:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--primary);
  background: white;
}
.topic-picker--grid .topic-chip:hover,
.topic-picker--inline .topic-chip:hover,
.topic-hub .topic-card:hover {
  border-color: var(--primary);
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.topic-chip.is-active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}
.topic-picker--grid .topic-chip.is-active,
.topic-picker--inline .topic-chip.is-active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}
.topic-chip-dot,
.topic-card-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0;
}
.topic-chip--rose .topic-chip-dot, .topic-card--rose .topic-card-dot { background: #f43f5e; }
.topic-chip--blue .topic-chip-dot, .topic-card--blue .topic-card-dot { background: #3b82f6; }
.topic-chip--green .topic-chip-dot, .topic-card--green .topic-card-dot { background: #10b981; }
.topic-chip--violet .topic-chip-dot, .topic-card--violet .topic-card-dot { background: #8b5cf6; }
.topic-chip--cyan .topic-chip-dot, .topic-card--cyan .topic-card-dot { background: #06b6d4; }
.topic-chip--amber .topic-chip-dot, .topic-card--amber .topic-card-dot { background: #f59e0b; }
.topic-chip--slate .topic-chip-dot, .topic-card--slate .topic-card-dot { background: #64748b; }
.topic-chip--fuchsia .topic-chip-dot, .topic-card--fuchsia .topic-card-dot { background: #d946ef; }
.topic-chip--indigo .topic-chip-dot, .topic-card--indigo .topic-card-dot { background: #6366f1; }
.topic-hub-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .topic-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .topic-hub-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.topic-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.25rem 1.5rem; border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.topic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}
.topic-card h2 { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.topic-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.topic-card-meta { font-size: 0.75rem; font-weight: 600; color: var(--primary); margin-top: 0.25rem; }
.topic-header { position: relative; overflow: hidden; }
.topic-back {
  display: inline-block; font-size: 0.875rem; font-weight: 600;
  color: var(--muted); margin-bottom: 1rem;
}
.topic-back:hover { color: var(--primary); }
.topic-header--rose { background: linear-gradient(180deg, rgba(244,63,94,0.08), transparent); }
.topic-header--blue { background: linear-gradient(180deg, rgba(59,130,246,0.08), transparent); }
.topic-header--green { background: linear-gradient(180deg, rgba(16,185,129,0.08), transparent); }
.topic-header--violet { background: linear-gradient(180deg, rgba(139,92,246,0.08), transparent); }
.topic-header--cyan { background: linear-gradient(180deg, rgba(6,182,212,0.08), transparent); }
.topic-header--amber { background: linear-gradient(180deg, rgba(245,158,11,0.08), transparent); }
.topic-header--slate { background: linear-gradient(180deg, rgba(100,116,139,0.08), transparent); }
.topic-header--fuchsia { background: linear-gradient(180deg, rgba(217,70,239,0.08), transparent); }
.topic-header--indigo { background: linear-gradient(180deg, rgba(99,102,241,0.08), transparent); }
.topic-section { margin-bottom: 3rem; }
.topic-section:last-child { margin-bottom: 0; }
.topic-section-title {
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.25rem;
}
.topic-empty {
  text-align: center; max-width: 36rem; margin: 0 auto;
  padding: 2rem 0;
}
.topic-empty p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.topic-empty .topic-picker { justify-content: center; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.875rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2.5rem;
}
.hero-stat {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1rem 1.25rem;
  backdrop-filter: blur(8px); min-width: 6rem;
}
.hero-stat strong { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: white; }
.hero-stat span { font-size: 0.75rem; color: #64748b; margin-top: 0.125rem; }

/* Hero tiles */
.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.hero-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.875rem; padding: 1.75rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-tile:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.hero-tile-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.875rem;
  background: var(--hero-accent-tint);
  color: var(--hero-accent);
}
.hero-tile-icon svg { width: 1.375rem; height: 1.375rem; }
.hero-tile-label {
  font-size: 0.875rem; font-weight: 700; color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}
.hero-tile--guide { --hero-accent: #34d399; --hero-accent-tint: rgba(52, 211, 153, 0.14); }
.hero-tile--compare { --hero-accent: #60a5fa; --hero-accent-tint: rgba(96, 165, 250, 0.14); }
.hero-tile--review { --hero-accent: #fbbf24; --hero-accent-tint: rgba(251, 191, 36, 0.14); }
.hero-tile--blog { --hero-accent: #a78bfa; --hero-accent-tint: rgba(167, 139, 250, 0.14); }

/* Topic strip (non-home) */
.topic-strip {
  border-bottom: 1px solid var(--border);
  background: white;
}
.topic-strip-inner {
  padding: 0.625rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.topic-strip-inner::-webkit-scrollbar { display: none; }

/* Sections */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.section--guides { background: #f8fffe; }
.section--comparisons { background: #f5f9ff; }
.section--reviews { background: #fffdf5; }
.section--blog { background: #faf8ff; }
.section-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5;
}
.section-blob--green { width: 24rem; height: 24rem; background: rgba(16,185,129,0.15); top: -8rem; right: -8rem; }
.section-blob--blue { width: 20rem; height: 20rem; background: rgba(37,99,235,0.12); bottom: -6rem; left: -6rem; }
.section-blob--amber { width: 22rem; height: 22rem; background: rgba(245,158,11,0.12); top: -6rem; left: 20%; }
.section-blob--violet { width: 20rem; height: 20rem; background: rgba(124,58,237,0.12); bottom: -8rem; right: 10%; }
.section-intro { margin-bottom: 2.5rem; max-width: 36rem; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 0.75rem;
}
.section-eyebrow--guide { color: #059669; background: rgba(16,185,129,0.12); }
.section-eyebrow--compare { color: var(--primary); background: rgba(37,99,235,0.1); }
.section-eyebrow--review { color: #d97706; background: rgba(245,158,11,0.12); }
.section-eyebrow--blog { color: var(--accent-violet); background: rgba(124,58,237,0.1); }
.section-title { font-size: 2.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1.15; }
@media (min-width: 640px) { .section-title { font-size: 2.75rem; } }
.section-subtitle { color: var(--muted); margin-top: 0.75rem; font-size: 1.0625rem; line-height: 1.6; }
.section-footer-link { text-align: center; margin-top: 2rem; }
.section-footer-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: 2rem;
}
.section-footer-actions .btn { text-decoration: none; }
.section-text-link {
  font-size: 0.9375rem; font-weight: 600; color: var(--primary);
  text-decoration: none;
}
.section-text-link:hover { text-decoration: underline; }
.section--compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .section--compact {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.section-title--sm {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .section-title--sm { font-size: 1.75rem; } }
.section-intro--row { margin-bottom: 1.5rem; }
@media (max-width: 639px) {
  .hero-content,
  .section-intro,
  .section-footer-actions,
  .cta-band-inner {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  /* Card grids: nearly full-width; titles/headers stay inset above */
  .section > .container > .card-grid {
    padding-left: var(--card-gutter);
    padding-right: var(--card-gutter);
  }

  .archive-card-grid,
  .container.card-grid {
    width: calc(100% + 2 * var(--page-gutter) - 2 * var(--card-gutter));
    max-width: calc(100% + 2 * var(--page-gutter) - 2 * var(--card-gutter));
    margin-left: calc(-1 * var(--page-gutter) + var(--card-gutter));
    margin-right: calc(-1 * var(--page-gutter) + var(--card-gutter));
  }

  .archive-main > .guide-featured:not(.comparison-featured) {
    width: calc(100% + 2 * var(--page-gutter) - 2 * var(--card-gutter));
    max-width: calc(100% + 2 * var(--page-gutter) - 2 * var(--card-gutter));
    margin-left: calc(-1 * var(--page-gutter) + var(--card-gutter));
    margin-right: calc(-1 * var(--page-gutter) + var(--card-gutter));
  }
}

/* Homepage post cards */
.home-post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: white;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
}
.home-post-card:hover { border-color: #cbd5e1; }
.post-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
  border-radius: 0.625rem;
}
.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.post-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.4;
}
.post-thumb--blue { background: #eff6ff; }
.post-thumb--rose { background: #fff1f2; }
.post-thumb--green { background: #ecfdf5; }
.post-thumb--violet { background: #f5f3ff; }
.post-thumb--cyan { background: #ecfeff; }
.post-thumb--amber { background: #fffbeb; }
.post-thumb--slate { background: #f8fafc; }
.post-thumb--fuchsia { background: #fdf4ff; }
.home-post-body { padding: 1rem 1.125rem 1.125rem; }
.home-post-title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  line-height: 1.35; letter-spacing: -0.01em;
}
.home-post-card:hover .home-post-title { color: var(--primary); }
.home-post-meta {
  margin-top: 0.375rem;
  font-size: 0.75rem; color: #94a3b8;
}
.home-post-label { font-weight: 600; color: var(--muted); }
.home-post-meta-sep { margin: 0 0.25rem; }
.home-post-desc {
  margin-top: 0.5rem;
  font-size: 0.8125rem; line-height: 1.55; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Secondary buttons */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 700;
  border: 2px solid transparent; transition: all 0.2s;
}
.btn-secondary--guide { color: #059669; background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); }
.btn-secondary--guide:hover { background: rgba(16,185,129,0.18); transform: translateY(-2px); }
.btn-secondary--compare { color: var(--primary); background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.2); }
.btn-secondary--compare:hover { background: rgba(37,99,235,0.15); transform: translateY(-2px); }
.btn-secondary--review { color: #d97706; background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); }
.btn-secondary--review:hover { background: rgba(245,158,11,0.18); transform: translateY(-2px); }
.btn-secondary--blog { color: var(--accent-violet); background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); }
.btn-secondary--blog:hover { background: rgba(124,58,237,0.15); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.link-arrow { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.link-arrow:hover { text-decoration: underline; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Trust grid */
.trust-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; gap: 1rem; }
.trust-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,102,255,0.1); border-radius: 0.75rem; color: var(--primary);
}
.trust-item h3 { font-weight: 600; color: var(--navy); }
.trust-item p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

/* Product cards */
.card-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex; flex-direction: column; position: relative;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.35);
}
.product-card--featured .product-card-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  pointer-events: none;
}
.product-card--featured:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(245, 158, 11, 0.15);
}
.product-card-inner { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-rank {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  font-size: 0.75rem; font-weight: 800; color: #d97706;
  background: rgba(245,158,11,0.12); padding: 0.125rem 0.5rem; border-radius: 9999px;
}
.product-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.product-logo {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 0.875rem;
  font-size: 1.125rem; font-weight: 800; color: var(--primary);
}
.product-logo--lg { width: 3.25rem; height: 3.25rem; }
.product-score-ring {
  display: flex; flex-direction: column; align-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), #059669);
  color: white; justify-content: center; line-height: 1;
}
.product-score-ring .score-num { font-size: 1rem; font-weight: 800; }
.product-score-ring .score-label { font-size: 0.5rem; opacity: 0.85; }
.product-category {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.25rem;
}
.product-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.product-card:hover h3 { color: var(--primary); }
.product-card .tagline { font-size: 0.8125rem; color: var(--muted); margin: 0.375rem 0 0.75rem; flex: 1; }
.product-card-footer {
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.product-card-footer .price { font-size: 0.8125rem; font-weight: 700; color: var(--navy); }
.product-cta { font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.product-card:hover .product-cta { text-decoration: underline; }
.score-pill {
  background: rgba(37,99,235,0.1); color: var(--primary);
  border-radius: 9999px; padding: 0.125rem 0.625rem;
  font-size: 0.75rem; font-weight: 700;
}

/* Guide cards */
.guide-card {
  position: relative; display: flex; align-items: flex-start; gap: 1rem;
  background: white; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}
.guide-card--grid {
  flex-direction: column; align-items: stretch; gap: 0;
  border-radius: 0.75rem; padding: 0;
  overflow: hidden;
  box-shadow: none;
}
.guide-card--grid:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--navy);
}
.guide-card--grid .guide-card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1rem 1.125rem 0;
}
.guide-card--grid h3 { margin-top: 0.375rem; font-size: 1rem; }
.guide-card--grid p {
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.guide-card--grid .guide-card-arrow {
  align-self: flex-end; margin-top: 0.75rem;
  padding: 0 1.125rem 1.125rem;
  font-size: 1.125rem;
}
.guide-card--grid:hover .guide-card-arrow { color: var(--primary); transform: translateX(3px); }
.guide-card--grid:hover h3 { color: var(--primary); }
.guide-card-num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-green), #059669);
  color: white; font-size: 1rem; font-weight: 800;
  border-radius: 0.75rem;
}
.guide-card-body { flex: 1; min-width: 0; }
.guide-card h3 { font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-top: 0.5rem; }
.guide-card:hover h3 { color: var(--accent-green); }
.guide-card p { font-size: 0.875rem; color: var(--muted); margin-top: 0.375rem; line-height: 1.55; }
.guide-meta {
  display: flex; align-items: center; gap: 0.375rem;
  margin-top: 0.875rem; font-size: 0.75rem; font-weight: 600; color: var(--muted);
}
.guide-meta-dot { opacity: 0.5; }
.guide-card-arrow {
  flex-shrink: 0; font-size: 1.25rem; color: var(--border);
  transition: all 0.2s; align-self: center;
}
.guide-card:hover .guide-card-arrow { color: var(--accent-green); transform: translateX(4px); }

.comparison-card:hover .comparison-cta { text-decoration: underline; }

.comparison-card--grid {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: white;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
  box-shadow: none;
}
.comparison-card--grid:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--navy);
}
.comparison-card--grid .comparison-card-body {
  padding: 1rem 1.125rem 0;
  display: flex; flex-direction: column; flex: 1;
}
.comparison-card--grid .comparison-card-glow { display: none; }
.comparison-card--grid h3 {
  margin-top: 0.375rem;
  font-size: 1rem; font-weight: 600;
}
.comparison-card--grid p {
  flex: 1;
  margin-top: 0.375rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.comparison-card--grid .comparison-card-meta {
  font-size: 0.6875rem; font-weight: 600; color: var(--muted);
}
.comparison-card--grid .comparison-card-footer {
  margin-top: 0.875rem;
  font-size: 0.75rem; color: #94a3b8;
}
.comparison-card--grid .comparison-card-arrow {
  align-self: flex-end;
  margin-top: 0.75rem;
  padding: 0 1.125rem 1.125rem;
  font-size: 1.125rem; color: #cbd5e1;
  transition: color 0.15s, transform 0.15s;
}
.comparison-card--grid:hover .comparison-card-arrow {
  color: var(--primary); transform: translateX(3px);
}
.comparison-card--grid:hover h3 { color: var(--primary); }

.product-card--grid {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: white;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
  box-shadow: none;
}
.product-card--grid:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--navy);
}
.product-card--grid .product-card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1rem 1.125rem 0;
}
.product-card--grid .product-card-category {
  font-size: 0.6875rem; font-weight: 600; color: var(--muted);
}
.product-card--grid h3 {
  margin-top: 0.375rem;
  font-size: 1rem; font-weight: 600;
}
.product-card--grid .tagline {
  flex: 1;
  margin: 0.375rem 0 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card--grid .product-card-footer {
  margin-top: 0.875rem; padding-top: 0;
  border-top: none;
  display: flex; justify-content: space-between; align-items: center;
}
.product-card--grid .product-card-date {
  font-size: 0.75rem; color: #94a3b8;
}
.product-card--grid .product-card-arrow {
  align-self: flex-end;
  margin-top: 0.75rem;
  padding: 0 1.125rem 1.125rem;
  font-size: 1.125rem; color: #cbd5e1;
  transition: color 0.15s, transform 0.15s;
}
.product-card--grid:hover .product-card-arrow {
  color: var(--primary); transform: translateX(3px);
}
.product-card--grid:hover h3 { color: var(--primary); }

/* Comparison link cards */
.comp-link-card {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: all 0.2s;
}
.comp-link-card:hover { border-color: rgba(0,102,255,0.3); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.comp-link-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.comp-link-card:hover h3 { color: var(--primary); }

/* Start Here / section boxes */
.start-box,
.compare-box {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; padding: 2rem;
}
@media (min-width: 640px) { .start-box, .compare-box { padding: 2.5rem; } }
.start-box-header,
.compare-box-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.start-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.1); border-radius: 0.75rem; color: var(--accent-green);
}
.compare-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,102,255,0.1); border-radius: 0.75rem; color: var(--primary);
}

/* Comparison cards */
.comparison-card {
  position: relative; border-radius: 1.25rem; overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}
.comparison-card-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}
.comparison-card-inner { padding: 1.5rem; }
.comparison-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.comparison-count {
  font-size: 0.6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary);
  background: rgba(37,99,235,0.1); padding: 0.2rem 0.6rem; border-radius: 9999px;
}
.comparison-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.comparison-card:hover h3 { color: var(--primary); }
.comparison-card p { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.55; }
.comparison-preview { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.comparison-preview-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--surface); border-radius: 0.625rem; padding: 0.5rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--navy);
}
.comparison-preview-rank {
  width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: white; border-radius: 50%;
  font-size: 0.6875rem; font-weight: 800; flex-shrink: 0;
}
.comparison-preview-score {
  margin-left: auto; color: var(--primary); font-weight: 800;
}
.comparison-cta {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--primary);
}
.comparison-card:hover .comparison-cta { text-decoration: underline; }

/* Trust cards */
.trust-cards { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .trust-cards { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.2s;
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-card-icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem; margin-bottom: 1rem;
}
.trust-card-icon--green { background: rgba(16,185,129,0.12); color: var(--accent-green); }
.trust-card-icon--blue { background: rgba(37,99,235,0.12); color: var(--primary); }
.trust-card-icon--cyan { background: rgba(6,182,212,0.12); color: var(--accent); }
.trust-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; }
.trust-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #030712 0%, #0f172a 50%, #1e1b4b 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.cta-band-pattern {
  position: absolute; inset: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-band-inner {
  position: relative;
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band h2 { font-size: 1.75rem; font-weight: 800; color: white; letter-spacing: -0.03em; }
.cta-band p { color: #94a3b8; margin-top: 0.5rem; font-size: 1rem; max-width: 28rem; }

/* Page header */
.page-header {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .page-header {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.page-header h1 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-top: 0.5rem; }
@media (min-width: 640px) { .page-header h1 { font-size: 2.25rem; } }
.page-header p { margin-top: 0.5rem; color: var(--muted); max-width: 42rem; }
.page-header.surface { background: var(--surface); border-bottom: 1px solid var(--border); }
.page-header--article {
  background: var(--background);
  border-bottom: none;
  padding-bottom: 0;
}
.page-header--article h1 {
  margin-top: 0.75rem;
}
@media (max-width: 639px) {
  .page-header {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
}
.article-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #b45309;
  margin-left: 0.5rem;
}
.article-body {
  padding: 2rem 0 4rem;
}
.article-main {
  min-width: 0;
}
.article-hero {
  width: 100%;
  margin: 0 0 2rem;
  padding: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 18rem;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
}

/* Review single */
.review-header-grid {
  display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem;
}
@media (min-width: 1024px) {
  .review-header-grid { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.review-product-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-logo {
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
  background: white; border-radius: 1rem; font-size: 1.5rem;
  font-weight: 700; color: var(--primary); box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  overflow: hidden; flex-shrink: 0;
}
.review-logo-img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  padding: 0.375rem;
}
.review-logo-img--profile {
  object-fit: cover;
  padding: 0;
}
.guide-callout {
  margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(16,185,129,0.3); background: rgba(16,185,129,0.05);
  border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem;
}
.guide-callout a { color: var(--accent-green); font-weight: 500; }
.guide-callout a:hover { text-decoration: underline; }

.content-grid { display: grid; gap: 3rem; padding: 3rem 0; }
@media (min-width: 1024px) { .content-grid { grid-template-columns: 2fr 1fr; } }
.content-grid > .content-main,
.content-grid > aside { min-width: 0; }
@media (max-width: 639px) {
  .content-main .article-content table,
  .content-main .pricing-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.content-main section { margin-bottom: 3rem; }
.content-main h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); }

.pros-cons { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros-box {
  border: 1px solid rgba(16,185,129,0.2); background: rgba(16,185,129,0.05);
  border-radius: var(--radius); padding: 1.5rem;
}
.cons-box {
  border: 1px solid #fecaca; background: rgba(254,242,242,0.5);
  border-radius: var(--radius); padding: 1.5rem;
}
.pros-cons h3 { font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.pros-cons li {
  display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.75rem;
}
.pros-box li svg { color: var(--accent-green); flex-shrink: 0; margin-top: 0.125rem; }
.cons-box li svg { color: #f87171; flex-shrink: 0; margin-top: 0.125rem; }

.screenshot-grid { display: grid; gap: 1rem; margin: 1rem 0 3rem; }
@media (min-width: 640px) { .screenshot-grid { grid-template-columns: 1fr 1fr; } }
.screenshot-figure {
  margin: 0;
  aspect-ratio: 1024 / 568;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--surface);
}
.screenshot-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.screenshot-caption {
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.screenshot-placeholder {
  aspect-ratio: 16/9; border: 1px solid var(--border);
  background: var(--surface); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--muted);
}

.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin-top: 1rem; border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.pricing-table th { text-align: left; padding: 0.75rem 1rem; background: var(--surface); font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); }
.pricing-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.pricing-table tr:nth-child(even) td { background: rgba(248,250,252,0.5); }
.pricing-table .price-cell { color: var(--primary); font-weight: 600; }

.sidebar-card {
  position: sticky; top: 6rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sidebar-card .score-badge { margin: 0 auto; }
.sidebar-meta { margin-top: 1.5rem; }
.sidebar-meta div { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.75rem; }
.sidebar-meta .label { color: var(--muted); }
.sidebar-meta .value { font-weight: 600; color: var(--navy); }
.sidebar-cta { margin-top: 1.5rem; width: 100%; }
.sidebar-note { margin-top: 0.75rem; text-align: center; font-size: 0.75rem; color: var(--muted); }

/* Ranked cards */
.ranked-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; padding: 1.5rem; transition: box-shadow 0.2s;
}
.ranked-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.ranked-inner { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .ranked-inner { flex-direction: row; align-items: flex-start; } }
.rank-num {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: white; border-radius: 50%;
  font-size: 1.125rem; font-weight: 700;
}
.ranked-body { flex: 1; }
.ranked-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.ranked-title-row h3 { font-size: 1.25rem; font-weight: 600; color: var(--navy); }
.highlight-pill {
  background: rgba(16,185,129,0.1); color: var(--accent-green);
  border-radius: 9999px; padding: 0.125rem 0.625rem;
  font-size: 0.75rem; font-weight: 600;
}
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; }
.spec-box { background: var(--surface); border-radius: 0.5rem; padding: 0.5rem 0.75rem; }
.spec-box dt { font-size: 0.75rem; color: var(--muted); }
.spec-box dd { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.ranked-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.ranked-score { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

/* Guide single */
.guide-steps { list-style: none; }
.guide-step { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.guide-step-inner { display: flex; gap: 1rem; }
.step-num {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-green); color: white; border-radius: 50%;
  font-size: 0.875rem; font-weight: 700;
}
.guide-step h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.guide-step p { margin-top: 0.75rem; color: var(--muted); line-height: 1.7; }

.progress-bar { margin-bottom: 1.5rem; }
.progress-bar--sticky,
.reading-progress--blog {
  position: sticky;
  top: var(--site-header-height, 7rem);
  z-index: 40;
}
.progress-bar--sticky {
  background: var(--background);
  padding: 0.75rem 0 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.reading-progress--blog {
  height: 2px;
  background: transparent;
}
.reading-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent));
  transition: width 0.12s ease-out;
}
.progress-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.25rem; }
.progress-track { height: 0.375rem; background: var(--border); border-radius: 9999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent-green); border-radius: 9999px; transition: width 0.3s; }

.checklist-box {
  margin-top: 4rem; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem;
}
@media (min-width: 640px) { .checklist-box { padding: 2rem; } }
.checklist-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.checklist-items li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.checklist-items input { margin-top: 0.125rem; accent-color: var(--accent-green); }

/* TOC sidebar */
.toc-sidebar { position: sticky; top: calc(var(--site-header-height, 6rem) + 1.5rem); display: none; }
@media (min-width: 1024px) { .toc-sidebar { display: block; } }
.toc-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.75rem; }
.toc-list { border-left: 1px solid var(--border); padding-left: 1rem; }
.toc-list a {
  display: block; padding: 0.375rem 0; font-size: 0.875rem;
  color: var(--muted); transition: color 0.15s;
}
.toc-list a:hover, .toc-list a.active { color: var(--primary); font-weight: 500; }
.toc-list a.active { border-left: 2px solid var(--primary); margin-left: -1.0625rem; padding-left: 0.9375rem; }
.article-toc ul { list-style: none; border-left: 1px solid var(--border); padding-left: 1rem; }
.article-toc li { margin-bottom: 0.25rem; }
.article-toc a { display: block; padding: 0.375rem 0; font-size: 0.875rem; color: var(--muted); }
.article-toc a:hover { color: var(--primary); }

.layout-with-toc { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .layout-with-toc { grid-template-columns: 1fr 15rem; } }

/* Blog */
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 1.25rem;
  background: white; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem;
}
.blog-card-thumb--news {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
}
.blog-card-thumb--threat {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #f97316 100%);
}
.blog-card-thumb--opinion {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
}
.blog-thumb-pattern {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: radial-gradient(circle at 20% 80%, white 1px, transparent 1px);
  background-size: 20px 20px;
}
.blog-thumb-category {
  position: relative; z-index: 1;
  align-self: flex-start;
  font-size: 0.6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: white;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(4px);
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.blog-thumb-date {
  position: relative; z-index: 1; align-self: flex-end;
  font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.9);
  line-height: 1; letter-spacing: -0.03em;
}
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h2 { font-size: 1.0625rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.35; }
.blog-card:hover h2 { color: var(--primary); }
.blog-excerpt { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; flex: 1; line-height: 1.55; }
.blog-meta {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center;
  font-size: 0.75rem; color: var(--muted);
}
.blog-label { font-weight: 600; }
.blog-meta-sep { margin: 0 0.25rem; }
.blog-author { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.blog-author-avatar {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-size: 0.625rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.article-meta { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.875rem; color: var(--muted); }
.article-content { line-height: 1.7; color: var(--muted); }
.article-content h2 {
  font-size: 1.375rem; font-weight: 700; color: var(--navy);
  margin: 2.75rem 0 1rem; scroll-margin-top: 6rem;
  line-height: 1.35; letter-spacing: -0.02em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--navy);
  margin: 1.75rem 0 0.625rem; line-height: 1.4;
}
.article-content p { margin-bottom: 1.25rem; }
.article-content p:last-child { margin-bottom: 0; }
.article-content ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
}
.article-content li { margin-bottom: 0.5rem; }
.article-content li:last-child { margin-bottom: 0; }
.article-content strong { color: var(--navy); font-weight: 600; }
.article-content table {
  width: 100%;
  margin: 0 0 1.25rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.article-content th,
.article-content td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-content th {
  background: var(--surface);
  font-weight: 600;
  color: var(--navy);
}
.article-content tr:nth-child(even) td { background: rgba(248, 250, 252, 0.6); }
.article-content tr:last-child td { border-bottom: none; }

.author-box {
  margin-top: 3rem; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius); padding: 1.5rem;
}
.author-box h3 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.author-box .name { font-weight: 600; color: var(--navy); margin-top: 0.5rem; }
.author-box .bio { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.author-box-link {
  display: inline-block; margin-top: 0.75rem; font-size: 0.875rem;
}

.related-list { margin-top: 2rem; }
.related-list h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.related-list ul { margin-top: 1rem; }
.related-list li { margin-bottom: 0.75rem; }
.related-list a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--primary); }
.related-list a:hover { text-decoration: underline; }

/* Deals */
.deal-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; padding: 1.5rem;
}
@media (min-width: 640px) { .deal-card { display: flex; align-items: center; justify-content: space-between; } }
.deal-inner { display: flex; gap: 1rem; }
.deal-discount { font-size: 1.5rem; font-weight: 700; color: var(--accent-green); margin-top: 0.25rem; }
.deal-code { font-size: 0.875rem; margin-top: 0.25rem; }
.deal-code code { background: var(--surface); padding: 0.125rem 0.5rem; border-radius: 0.25rem; font-family: monospace; color: var(--primary); }
.deal-actions { margin-top: 1rem; }
@media (min-width: 640px) { .deal-actions { margin-top: 0; text-align: right; } }

/* About authors */
.author-card {
  display: flex; gap: 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem;
}
.author-avatar {
  width: 3.5rem; height: 3.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,102,255,0.1); border-radius: 50%;
  font-weight: 700; color: var(--primary);
}
.author-card .role { font-size: 0.875rem; color: var(--primary); }
.author-card .credentials { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.author-card .bio { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }

.content-section { margin-top: 3rem; scroll-margin-top: 6rem; }
.content-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.content-section p {
  max-width: 42rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.methodology-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .methodology-grid { grid-template-columns: repeat(3, 1fr); } }
.methodology-card { border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.25rem; text-align: center; }
.methodology-card svg { margin: 0 auto; color: var(--primary); }
.methodology-card h3 { margin-top: 0.75rem; font-weight: 600; color: var(--navy); }
.methodology-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

.test-list li {
  display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem;
}
.test-list li::before {
  content: ""; width: 0.375rem; height: 0.375rem; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 0.5rem;
}

.info-box {
  margin-top: 3rem; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius); padding: 1.5rem;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.filter-pill {
  border: 1px solid var(--border); border-radius: 9999px;
  padding: 0.375rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--muted);
  cursor: pointer;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }

.disclaimer {
  margin-top: 2.5rem; background: var(--surface);
  border-radius: 0.5rem; padding: 0.75rem 1rem;
  font-size: 0.75rem; color: var(--muted);
}
.disclaimer a { color: var(--primary); }

.space-y > * + * { margin-top: 1.5rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }

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

/* Archive pages */
.archive-page { padding: 3rem 0 4rem; }
@media (min-width: 640px) { .archive-page { padding: 4rem 0 5rem; } }
.archive-container { max-width: 42rem; }
.archive-header { margin-bottom: 1.75rem; }
.archive-title {
  font-size: 1.875rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .archive-title { font-size: 2.25rem; } }
.archive-description {
  margin-top: 0.625rem; font-size: 1rem; line-height: 1.6;
  color: var(--muted); max-width: 36rem;
}
.topic-filter {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.topic-filter-mobile { margin-bottom: 0; }
.topic-filter-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted);
}
.topic-filter-select-wrap {
  position: relative;
}
.topic-filter-select {
  width: 100%;
  padding: 0.625rem 2.5rem 0.625rem 0.875rem;
  font-size: 0.9375rem; font-family: var(--font-sans); font-weight: 500;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.topic-filter-select:hover { border-color: #cbd5e1; }
.topic-filter-select:focus {
  outline: none;
  border-color: var(--navy);
}
.topic-filter-chevron {
  position: absolute; right: 0.75rem; top: 50%;
  width: 1rem; height: 1rem;
  color: var(--muted); pointer-events: none;
  transform: translateY(-50%);
}
.topic-filter-tabs {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.125rem;
}
.topic-filter-tab {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.topic-filter-tab:hover { color: var(--navy); }
.topic-filter-tab.is-active {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--navy);
}
@media (min-width: 640px) {
  .topic-filter-mobile { display: none; }
  .topic-filter-tabs { display: flex; }
}
.editorial-list {
  border-top: 1px solid var(--border);
}
.editorial-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: color 0.15s;
}
.editorial-row-thumb {
  flex-shrink: 0;
  width: 4.5rem;
}
.editorial-row-thumb .post-thumb {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  min-height: 4.5rem;
}
.editorial-row-thumb .post-thumb-placeholder {
  font-size: 1.25rem;
}
@media (min-width: 640px) {
  .editorial-row-thumb {
    width: 6.5rem;
  }
  .editorial-row-thumb .post-thumb {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}
.editorial-row:hover .editorial-row-title { color: var(--primary); }
.editorial-row-body { flex: 1; min-width: 0; }
.editorial-row-title {
  font-size: 1.0625rem; font-weight: 600; color: var(--navy);
  line-height: 1.35; transition: color 0.15s;
}
.editorial-row-desc {
  margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.5;
  color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.editorial-row-meta {
  margin-top: 0.375rem; font-size: 0.75rem; color: #94a3b8;
}
.editorial-row-author {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--muted);
}
.editorial-row-author .blog-author-avatar {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.5625rem;
}
.editorial-row-meta-sep { margin: 0 0.375rem; }
.editorial-row-arrow {
  flex-shrink: 0; width: 1.125rem; height: 1.125rem;
  color: #cbd5e1; transition: color 0.15s, transform 0.15s;
}
.editorial-row:hover .editorial-row-arrow {
  color: var(--primary); transform: translateX(2px);
}
.archive-empty {
  padding: 2rem 0; font-size: 0.9375rem; color: var(--muted); line-height: 1.6;
}
.topic-hub-section { margin-bottom: 3rem; }
.topic-hub-section:last-child { margin-bottom: 0; }
.topic-hub-section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.5rem;
}
.topic-hub-section-title {
  font-size: 1.125rem; font-weight: 700; color: var(--navy);
}
.topic-hub-see-all {
  flex-shrink: 0; font-size: 0.8125rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
}
.topic-hub-see-all:hover { color: var(--primary); }

/* Archive sidebar layout */
.archive-layout { padding: 2.5rem 0 4rem; }
@media (min-width: 640px) { .archive-layout { padding: 3rem 0 5rem; } }
.archive-layout-container { max-width: var(--max-w); }
.archive-layout--guides .archive-header,
.archive-layout--comparisons .archive-header,
.archive-layout--reviews .archive-header { margin-bottom: 0; }
.archive-layout--guides .archive-description,
.archive-layout--comparisons .archive-description,
.archive-layout--reviews .archive-description { font-size: 0.9375rem; }
.archive-layout-grid {
  display: grid; gap: 2rem;
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .archive-layout-grid {
    grid-template-columns: minmax(11rem, 16rem) minmax(0, 1fr);
    gap: 3rem;
    margin-top: 2rem;
  }
}
.archive-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .archive-aside {
    position: sticky;
    top: calc(var(--site-header-height, 4rem) + 1.5rem);
    align-self: start;
  }
}
.archive-sidebar {
  display: none;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: white;
}
@media (min-width: 1024px) {
  .archive-sidebar { display: block; }
}
.archive-sidebar-group + .archive-sidebar-group {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.archive-sidebar-heading {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.75rem;
}
.archive-sidebar-list {
  list-style: none; display: grid; gap: 0.125rem;
}
.archive-sidebar-link {
  display: block;
  padding: 0.4375rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.archive-sidebar-link:hover {
  color: var(--navy);
  background: var(--surface);
}
.archive-sidebar-link.is-active {
  color: var(--navy);
  font-weight: 600;
  background: var(--surface);
  box-shadow: inset 2px 0 0 var(--navy);
}
.archive-main { min-width: 0; }
.archive-grid-section { margin-top: 2rem; }
.archive-grid-heading {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-size: 1.125rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.25rem;
}
.archive-grid-count {
  font-size: 0.8125rem; font-weight: 500; color: var(--muted);
}
.archive-card-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 640px) {
  .archive-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
  .archive-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.guide-featured {
  display: flex; align-items: stretch; justify-content: space-between; gap: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
  overflow: hidden;
}
.guide-featured:hover { border-color: var(--navy); }
.guide-featured-thumb {
  flex: 0 0 11rem;
  max-width: 11rem;
  min-height: 9rem;
}
.guide-featured-thumb .post-thumb {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}
.guide-featured-content {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guide-featured-label {
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  margin-bottom: 0.5rem;
}
.guide-featured-title {
  font-size: 1.375rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; letter-spacing: -0.02em;
}
.guide-featured:hover .guide-featured-title { color: var(--primary); }
.guide-featured-desc {
  margin-top: 0.5rem; font-size: 0.9375rem; line-height: 1.6;
  color: var(--muted); max-width: 36rem;
}
.guide-featured-meta {
  margin-top: 0.875rem; font-size: 0.8125rem; color: #94a3b8;
}
.guide-featured-meta-sep { margin: 0 0.375rem; }
.guide-featured-cta {
  display: inline-block; margin-top: 1rem;
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
}
.guide-featured-arrow {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem;
  align-self: center;
  margin-right: 1.25rem;
  color: #cbd5e1; transition: color 0.15s, transform 0.15s;
}
.guide-featured:hover .guide-featured-arrow {
  color: var(--primary); transform: translateX(3px);
}
/* Wide comparison banners — compact card sized to the banner strip */
.comparison-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  width: calc(9.5rem * 2 + 2px);
  max-width: 100%;
}
.comparison-featured .guide-featured-thumb {
  grid-column: 1 / -1;
  flex: none;
  max-width: none;
  width: 100%;
  min-height: 0;
}
.comparison-featured .guide-featured-thumb .post-thumb {
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  border-radius: 0;
  min-height: 0;
  background: transparent;
}
.comparison-featured .post-thumb-img {
  object-fit: cover;
  object-position: left center;
  transform: scale(1.06);
  transform-origin: left center;
}
.comparison-featured .guide-featured-content {
  grid-column: 1;
  grid-row: 2;
  padding: 1rem 1.125rem;
}
.comparison-featured .guide-featured-label {
  margin-bottom: 0.375rem;
}
.comparison-featured .guide-featured-title {
  font-size: 1.125rem;
}
.comparison-featured .guide-featured-desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comparison-featured .guide-featured-meta {
  margin-top: 0.5rem;
}
.comparison-featured .guide-featured-cta {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}
.comparison-featured .guide-featured-arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  margin-right: 1.25rem;
  width: 1.125rem;
  height: 1.125rem;
}
@media (min-width: 640px) {
  .guide-featured:not(.comparison-featured) .guide-featured-thumb {
    flex-basis: 13rem;
    max-width: 13rem;
    min-height: 10rem;
  }
  .guide-featured-content { padding: 1.75rem 1.5rem; }
  .comparison-featured .guide-featured-content { padding: 1.125rem 1.25rem; }
  .comparison-featured {
    width: calc(11rem * 2 + 2px);
  }
  .guide-featured-arrow { margin-right: 1.75rem; }
  .comparison-featured .guide-featured-arrow { margin-right: 1.75rem; }
}
@media (max-width: 479px) {
  .guide-featured:not(.comparison-featured) { flex-wrap: wrap; }
  .guide-featured:not(.comparison-featured) .guide-featured-thumb {
    flex: 0 0 100%;
    max-width: none;
    min-height: 0;
  }
  .guide-featured:not(.comparison-featured) .guide-featured-thumb .post-thumb {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .guide-featured:not(.comparison-featured) .guide-featured-arrow {
    align-self: flex-end;
    margin: 0 1.25rem 1.25rem;
  }
}
.archive-search {
  position: relative; margin-top: 1.5rem;
}
.archive-toolbar {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: white;
}
.archive-toolbar-inner {
  position: relative;
}
.archive-toolbar-row {
  display: flex;
  align-items: stretch;
  min-height: 2.75rem;
}
.archive-toolbar-search {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.archive-toolbar-search-icon {
  position: absolute; left: 0.75rem;
  width: 1rem; height: 1rem;
  color: #94a3b8; pointer-events: none;
}
.archive-toolbar-search-input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.25rem;
  font-size: 0.875rem; font-family: var(--font-sans);
  color: var(--navy);
  background: transparent;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
}
.archive-toolbar-search-input::placeholder { color: #94a3b8; }
.archive-toolbar-search-input:focus { outline: none; }
.archive-toolbar-filter {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 9.5rem;
  border-left: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .archive-toolbar-filter { display: none; }
  .archive-toolbar-search-input { border-radius: 0.5rem; }
}
.archive-toolbar-select-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.archive-toolbar-select {
  width: 100%;
  padding: 0.625rem 1.375rem 0.625rem 0.625rem;
  font-size: 0.8125rem; font-family: var(--font-sans); font-weight: 500;
  color: var(--navy);
  background: transparent;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  appearance: none;
  cursor: pointer;
}
.archive-toolbar-select:focus { outline: none; }
.archive-toolbar-chevron {
  position: absolute; right: 0.5rem; top: 50%;
  width: 0.875rem; height: 0.875rem;
  color: #94a3b8; pointer-events: none;
  transform: translateY(-50%);
}
.archive-toolbar .archive-search-results {
  top: 100%;
  left: 0; right: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  border-top: 1px solid var(--border);
}
.archive-search-wrap { position: relative; }
.archive-search-icon {
  position: absolute; left: 1rem; top: 50%;
  width: 1.125rem; height: 1.125rem;
  color: var(--muted); pointer-events: none;
  transform: translateY(-50%);
}
.archive-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.9375rem; font-family: var(--font-sans);
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  transition: border-color 0.15s;
}
.archive-search-input::placeholder { color: #94a3b8; }
.archive-search-input:focus {
  outline: none; border-color: var(--navy);
}
.archive-search-results {
  position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0;
  z-index: 50;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.5rem;
  max-height: 18rem; overflow-y: auto;
}
.archive-search-list { list-style: none; }
.archive-search-empty {
  padding: 0.875rem; text-align: center;
  font-size: 0.8125rem; color: var(--muted);
}
.archive-search-item {
  display: block; padding: 0.625rem 0.75rem;
  border-radius: 0.375rem; text-decoration: none;
  transition: background 0.1s;
}
.archive-search-item:hover { background: var(--surface); }
.archive-search-item-title {
  font-size: 0.875rem; font-weight: 600; color: var(--navy);
}
.archive-search-item-summary {
  margin-top: 0.125rem; font-size: 0.75rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Search scope filters */
.search-filters {
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  padding: 0.375rem 0.5rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.search-filter-pill {
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem; font-weight: 500; color: var(--muted);
  background: transparent; border: 1px solid var(--border);
  border-radius: 9999px; cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.search-filter-pill:hover { border-color: #cbd5e1; color: var(--navy); }
.search-filter-pill.is-active {
  border-color: var(--navy); color: var(--navy);
  background: var(--surface);
}
.search-topic-select {
  width: 100%; margin: 0.375rem 0.5rem 0.5rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem; font-family: var(--font-sans);
  color: var(--navy); background: var(--surface);
  border: 1px solid var(--border); border-radius: 0.375rem;
}

/* SVG icons inline sizing */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* Push to Read homepage */
.page-home {
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-paper: #FBF8F5;
  --ptr-cream: #FBF8F5;
  --ptr-box: #d4a574;
  --ptr-box-dark: #b8895a;
  --ptr-ribbon: #1A1A1A;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
}

.page-home .site-header--ptr {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: #FBF8F5;
}

.page-home .site-header--ptr .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px var(--home-gutter, 24px);
}

.page-home .logo--ptr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-height: 28px;
  width: auto;
}

.page-home .navbar-logo,
.page-home .h-10.w-auto {
  display: block;
  height: 28px;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.page-home .site-footer--ptr {
  border-top: 1px solid rgba(58, 42, 34, 0.08);
  background: transparent;
  padding: 2rem 0 2.5rem;
}

.page-home .site-footer--ptr .footer-bottom {
  justify-content: center;
  border-top: 0;
  padding-top: 0;
}

.page-home .site-footer--ptr .footer-copy {
  color: var(--ptr-muted);
  font-size: 0.875rem;
}

.ptr-hero {
  padding: 3rem 0 4.5rem;
}

.ptr-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
  text-align: center;
}

.ptr-intro {
  width: 100%;
}

.ptr-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.15rem, 6vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ptr-ink);
}

.ptr-subhead {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.ptr-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 2.25rem;
}

.ptr-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 560px) {
  .ptr-form-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.ptr-name-input {
  flex: 1;
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.0625rem;
  color: var(--ptr-ink);
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 9999px;
  outline: none;
}

.ptr-name-input::placeholder {
  color: #9a9a9a;
}

.ptr-name-input:focus {
  border-color: #1A1A1A;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.ptr-name-input.is-invalid {
  border-color: #1A1A1A;
}

.ptr-unbox-btn {
  padding: 0.9rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s, opacity 0.15s;
}

.ptr-unbox-btn:hover {
  background: #333333;
}

.ptr-unbox-btn:active {
  transform: translateY(1px);
}

.ptr-form-error {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: #1A1A1A;
}

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

.gift-box-img,
.gift-box-img.w-36.h-36 {
  display: block;
  width: 9rem;
  height: 9rem;
  max-width: 150px;
  max-height: 150px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.gift-box-img.is-shaking {
  animation: ptr-shake 0.65s ease-in-out;
}

@keyframes ptr-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  15% { transform: translateX(-7px) rotate(-4deg); }
  30% { transform: translateX(7px) rotate(4deg); }
  45% { transform: translateX(-6px) rotate(-3deg); }
  60% { transform: translateX(6px) rotate(3deg); }
  75% { transform: translateX(-3px) rotate(-1deg); }
}

.ptr-book-card {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  margin-top: 0;
  padding: 1.35rem;
  text-align: left;
  background: #FFFFFF;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  animation: ptr-reveal 0.45s ease;
}

.ptr-book-card[hidden] {
  display: none;
}

@media (min-width: 560px) {
  .ptr-book-card {
    grid-template-columns: 7rem 1fr;
    align-items: start;
    padding: 1.5rem;
  }
}

@keyframes ptr-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ptr-book-cover,
.ptr-book-cover.w-28.h-40 {
  width: 7rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background: #e8dccf;
  justify-self: center;
}

.ptr-book-for {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.genre-badge {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.2rem 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A1A1A;
  background: #FBF8F5;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 9999px;
}

.ptr-book-title {
  margin-top: 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ptr-ink);
}

.ptr-book-author {
  margin-top: 0.25rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  color: var(--ptr-muted);
}

.ptr-book-hook {
  margin-top: 0.85rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ptr-ink);
}

.ptr-buy-btn {
  display: inline-flex;
  margin-top: 1.15rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
  transition: background 0.15s, opacity 0.15s;
}

.ptr-buy-btn:hover {
  background: #333333;
}

.ptr-substack {
  margin-top: 2.5rem;
}

.ptr-substack-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
  box-shadow: none;
  transition: background 0.15s, transform 0.15s;
}

.ptr-substack-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* Book club directory */
.page-clubs {
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-paper: #FBF8F5;
  --ptr-cream: #FBF8F5;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
}

.page-clubs .site-header {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: #FBF8F5;
}

.page-clubs .site-footer {
  background: transparent;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.page-clubs .clubs-directory {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.page-clubs .clubs-header {
  margin-bottom: 2.5rem;
}

.page-clubs .clubs-header h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ptr-ink);
}

.page-clubs .clubs-lead {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-clubs .clubs-grid {
  display: grid;
  gap: 1.5rem;
}

.page-clubs .clubs-grid[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .page-clubs .clubs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-home .site-footer--ptr {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  background: #FBF8F5;
  padding: 0;
}

.page-clubs .club-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.page-clubs .club-card-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ptr-ink);
}

.page-clubs .club-card-tags,
.page-clubs .club-card-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
}

.page-clubs .club-lang-pill {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ptr-muted);
  background: #FBF8F5;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 9999px;
}

.page-clubs .clubs-lang-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 16px;
}

.page-clubs .clubs-lang-filter input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-clubs .clubs-lang-filter label {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ptr-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.page-clubs .clubs-lang-filter label:hover {
  color: var(--ptr-ink);
  opacity: 0.7;
}

.page-clubs .clubs-lang-filter input:checked + label {
  color: var(--ptr-ink);
  opacity: 1;
}

.page-clubs .clubs-lang-filter input:focus-visible + label {
  color: var(--ptr-ink);
  text-decoration-thickness: 2px;
}

.page-clubs .club-card-venue,
.page-clubs .club-card-platform,
.page-clubs .club-card-when,
.page-clubs .club-card-price,
.page-clubs .club-card-capacity {
  margin-top: 0.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.875rem;
  color: var(--ptr-muted);
}

.page-clubs .club-card-capacity {
  margin-top: 0.75rem;
}

.page-clubs .club-card-book {
  margin-top: 1rem;
}

.page-clubs .club-card-label {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-clubs .club-card-book-title {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-clubs .club-card-book-author {
  display: block;
  margin-top: 0.15rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  color: var(--ptr-muted);
}

.page-clubs .club-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
}

.page-clubs .club-join-btn:hover {
  background: #333333;
}

.page-clubs .club-card.is-city-hidden,
.page-clubs .club-card.is-lang-hidden {
  display: none;
}

.page-clubs .clubs-city-heading {
  margin: 0 0 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ptr-ink);
}

.page-clubs .clubs-loading {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-clubs .clubs-empty {
  max-width: 36rem;
  padding: 8px 0 16px;
}

.page-clubs .clubs-empty p {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-clubs .clubs-empty-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.page-clubs .clubs-empty-start,
.page-clubs .clubs-empty-waitlist {
  margin-top: 0;
}

.page-clubs .clubs-empty-browse {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ptr-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-clubs .clubs-empty-browse:hover {
  opacity: 0.7;
}

.club-card-foot {
  margin-top: auto;
}

.club-card-members {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.club-avatars {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.club-avatar {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: #1A1A1A;
}

.club-avatar:first-child {
  margin-left: 0;
}

.club-avatar:nth-child(2) { background: #6B5344; }
.club-avatar:nth-child(3) { background: #3F5C4A; }
.club-avatar:nth-child(4) { background: #8A6A3E; }

.club-card-joined {
  margin: 0;
}

.page-clubs .club-card-joined {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.875rem;
  color: var(--ptr-muted);
}

.page-clubs .club-card-foot {
  padding-top: 16px;
}

/* Homepage design system */
.page-home {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --home-max: 1100px;
  --home-gutter: 24px;
  --home-section-pad: 56px;
  --home-heading-gap: 24px;
  --type-hero: 40px;
  --type-section: 26px;
  --type-card: 18px;
  --type-body: 16px;
  --type-ui: 15px;
  --type-label: 12px;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  background: var(--ptr-cream);
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: var(--type-body);
  line-height: 1.6;
}

.page-home,
.page-home button,
.page-home input,
.page-home a,
.page-home p,
.page-home li,
.page-home span,
.page-home label,
.page-home h3 {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-home h1,
.page-home h2,
.page-home .club-card-name {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ptr-ink);
}

.page-home .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

html:has(body.page-home),
body.page-home {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-home {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-home {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .site-header,
  .page-home .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 460px;
  max-height: 460px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #c4a574;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-home .home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-align: left;
}

.page-home .home-hero-copy {
  width: 100%;
  max-width: 768px;
}

.page-home .home-hero-eyebrow {
  margin: 0 0 8px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .home-hero h1 {
  max-width: none;
  font-size: var(--type-hero);
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .page-home .home-hero h1 {
    white-space: normal;
  }
}

.page-home .home-hero-sub {
  margin-top: 16px;
  max-width: 48rem;
  font-size: var(--type-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

.page-home .hero-search {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 520px;
  margin-top: 16px;
  padding: 8px;
  gap: 8px;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.page-home .hero-search-field {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  padding: 0 8px;
  gap: 16px;
}

.page-home .hero-search-field span {
  flex: 0 0 auto;
  font-size: var(--type-body);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
  color: #1A1A1A;
}

.page-home .hero-search-field input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.25;
  color: #1A1A1A;
}

.page-home .hero-search-field input::placeholder {
  color: #9a9a9a;
}

.page-home .hero-search-btn,
.page-home .how-btn,
.page-home .home-cities-btn,
.page-home .club-join-btn,
.page-home .nav-cta,
.page-home .nav-mobile-link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ptr-sans);
  font-size: var(--type-ui);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
}

.page-home .hero-search-btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.page-home .hero-search-btn:hover,
.page-home .how-btn:hover,
.page-home .home-cities-btn:hover,
.page-home .club-join-btn:hover,
.page-home .nav-cta:hover {
  background: #333333;
}

@media (max-width: 560px) {
  .page-home .hero-search {
    max-width: 520px;
    padding: 8px;
    gap: 8px;
  }

  .page-home .hero-search-btn {
    width: auto;
  }
}

.page-home .home-section {
  padding-top: var(--home-section-pad);
  padding-bottom: 0;
}

.page-home .home-section > h2 {
  font-size: var(--type-section);
  line-height: 1.2;
  margin: 0 0 var(--home-heading-gap);
}

.page-home .home-how > h2 {
  margin-bottom: 8px;
}

.page-home .how-intro {
  margin: 0 0 var(--home-heading-gap);
  max-width: 48rem;
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--ptr-muted);
  text-wrap: pretty;
}

.page-home .how-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .page-home .how-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .how-track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-home .how-track h3,
.page-home .club-card-label {
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-home .how-track h3 {
  margin: 0 0 16px;
}

.page-home .how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
  margin: 0 0 24px;
}

.page-home .how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--type-ui);
  line-height: 1.4;
  color: var(--ptr-ink);
}

.page-home .how-num {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
}

.page-home .how-btn {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 8px 16px;
}

.page-home .home-clubs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.page-home .home-clubs-grid[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .page-home .home-clubs-grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}

.page-home .club-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-home .club-card .club-card-name {
  font-size: var(--type-card);
  line-height: 1.3;
}

.page-home .club-card-tags,
.page-home .club-card-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
}

.page-home .club-lang-pill {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--ptr-sans);
  font-size: var(--type-label);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ptr-muted);
  background: var(--ptr-cream);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 9999px;
}

.page-home .club-card-venue,
.page-home .club-card-platform,
.page-home .club-card-when,
.page-home .club-card-price,
.page-home .club-card-capacity,
.page-home .club-card-joined,
.page-home .club-card-book-title,
.page-home .club-card-book-author,
.page-home .home-see-all a,
.page-home .home-cities-line,
.page-home .footer-mission,
.page-home .footer-tagline {
  font-size: var(--type-body);
  line-height: 1.6;
}

.page-home .club-card-venue,
.page-home .club-card-platform,
.page-home .club-card-when,
.page-home .club-card-price,
.page-home .club-card-capacity {
  margin-top: 8px;
  color: var(--ptr-muted);
}

.page-home .club-card-book {
  margin-top: 16px;
}

.page-home .club-card-foot {
  margin-top: auto;
  padding-top: 16px;
}

.page-home .club-card-joined {
  color: var(--ptr-muted);
}

.page-home .club-card-label {
  display: block;
  margin-bottom: 8px;
}

.page-home .club-card-book-title {
  display: block;
  color: var(--ptr-ink);
}

.page-home .club-card-book-author {
  display: block;
  margin-top: 0;
  color: var(--ptr-muted);
}

.page-home .club-join-btn {
  align-self: flex-start;
  min-height: 40px;
  margin-top: 20px;
  padding: 8px 16px;
}

.page-home .home-see-all {
  margin: 24px 0 0;
}

.page-home .home-online-note {
  margin: 16px 0 0;
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-home .home-clubs-loading,
.page-home .home-clubs-empty {
  margin: 16px 0 0;
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-home .home-see-all a {
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-home .home-see-all a:hover {
  opacity: 0.7;
}

.page-home .home-cities-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0;
  color: var(--ptr-muted);
}

.page-home .home-cities-btn {
  min-height: 40px;
  padding: 8px 16px;
}

.page-home .home-cities {
  padding-bottom: 40px;
}

.page-home .nav-desktop a,
.page-home .nav-mobile-link,
.page-home .nav-auth-name,
.page-home .nav-mobile-name {
  font-size: var(--type-ui);
}

.page-home .nav-cta {
  min-height: 32px;
  padding: 8px 16px;
}

.page-home .site-footer--ptr {
  padding: 0;
}

.page-home .footer-simple {
  padding-top: 40px;
  padding-bottom: var(--home-section-pad);
  gap: 16px;
}

.page-home .footer-mission,
.page-home .footer-tagline,
.page-home .footer-copy,
.page-home .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-home .footer-mission,
.page-home .footer-tagline {
  font-size: var(--type-body);
  line-height: 1.6;
}

.page-home .footer-simple-nav a {
  font-size: var(--type-ui);
}

.page-home .footer-copy {
  font-size: var(--type-label);
}

.page-home .nav-mobile-drawer {
  max-width: min(13.5rem, calc(100% - 20px));
}

.nav-mobile-link--cta {
  display: inline-flex !important;
  margin-top: 0.5rem;
  justify-content: center;
  color: #fff !important;
  background: #1A1A1A;
  border-radius: 9999px;
}

/* Organizer profile */
.page-organizers {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

.page-organizers .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-organizers h1,
.page-organizers h2,
.page-organizers h3,
.page-organizers .hosted-card-name {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ptr-ink);
}

.page-organizers .organizer-profile {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-organizers .organizer-intro {
  display: flex;
  align-items: center;
  gap: 24px;
}

.page-organizers .organizer-photo {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
}

.page-organizers .organizer-photo img,
.page-organizers .organizer-photo-fallback {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  object-fit: cover;
}

.page-organizers .organizer-photo-fallback {
  background: #e8e2db;
}

.page-organizers .organizer-intro-text {
  min-width: 0;
}

.page-organizers .organizer-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-organizers .organizer-header h1,
.page-organizers #organizers-heading {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.page-organizers .organizer-place,
.page-organizers .organizer-bio,
.page-organizers .organizer-empty,
.page-organizers .hosted-card-place,
.page-organizers .review-card-body {
  font-size: 16px;
  line-height: 1.6;
}

.page-organizers .organizer-place {
  margin-top: 8px;
  color: var(--ptr-muted);
}

.page-organizers .organizer-bio {
  margin-top: 16px;
  max-width: 40rem;
  color: var(--ptr-ink);
}

.page-organizers .organizer-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .page-organizers .organizer-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-organizers .organizer-stat,
.page-organizers .hosted-card,
.page-organizers .review-card {
  box-sizing: border-box;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-organizers .organizer-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-organizers .organizer-stat-value {
  font-family: var(--ptr-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ptr-ink);
}

.page-organizers .organizer-stat-label,
.page-organizers .hosted-card-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-organizers .organizer-hosted,
.page-organizers .organizer-reviews,
.page-organizers .organizer-now {
  margin-top: 56px;
}

.page-organizers .organizer-hosted h2,
.page-organizers .organizer-reviews h2,
.page-organizers .organizer-now h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.page-organizers .hosted-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .page-organizers .hosted-grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}

.page-organizers .hosted-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.page-organizers .hosted-card-name {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.page-organizers .now-hosting-card .hosted-card-name {
  margin-top: 8px;
}

.page-organizers .hosted-card-type {
  margin-top: 8px;
}

.page-organizers .now-hosting-card > .hosted-card-type:first-child {
  margin-top: 0;
}

.page-organizers .hosted-card-place,
.page-organizers .now-hosting-when {
  margin-top: 8px;
  color: var(--ptr-muted);
}

.page-organizers .now-hosting-when,
.page-organizers .now-hosting-book-author {
  font-size: 16px;
  line-height: 1.6;
}

.page-organizers .now-hosting-book {
  margin-top: 16px;
}

.page-organizers .now-hosting-book .hosted-card-type {
  display: block;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-organizers .now-hosting-book-title {
  display: block;
  font-family: var(--ptr-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-organizers .now-hosting-book-author {
  display: block;
  margin-top: 0;
  color: var(--ptr-muted);
}

.page-organizers .organizer-profile-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-organizers .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-organizers .review-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.page-organizers .review-card-name {
  font-size: 16px;
  font-weight: 700;
}

.page-organizers .review-card-rating {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-muted);
}

.page-organizers .review-card-body {
  margin: 0;
  color: var(--ptr-ink);
}

/* Cafe directory and detail */
.page-cafes {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-cafes),
body.page-cafes {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-cafes {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-cafes {
    padding-left: 0;
    padding-right: 0;
  }

  .page-cafes .site-header,
  .page-cafes .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-cafes .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-cafes h1,
.page-cafes h2,
.page-cafes h3,
.page-cafes .cafe-card-name,
.page-cafes .cafe-club-name,
.page-cafes .cafe-club-book-title {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ptr-ink);
}

.page-cafes .site-header,
.page-cafes .site-footer {
  background: #FBF8F5;
}

.page-cafes .cafe-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-cafes .cafe-header h1,
.page-cafes #cafes-heading {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.page-cafes .cafe-card-label {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-cafes .cafe-header .cafe-card-label {
  margin-top: 8px;
}

.page-cafes .cafe-card-place,
.page-cafes .cafe-lead,
.page-cafes .cafe-address,
.page-cafes .cafe-card-copy,
.page-cafes .cafe-club-organizer,
.page-cafes .cafe-club-when,
.page-cafes .cafe-club-price,
.page-cafes .cafe-club-seats,
.page-cafes .cafe-club-book-author,
.page-cafes .cafe-empty p {
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

.page-cafes .cafe-card-place,
.page-cafes .cafe-club-when,
.page-cafes .cafe-club-price,
.page-cafes .cafe-club-seats,
.page-cafes .cafe-club-book-author,
.page-cafes .cafe-address {
  color: var(--ptr-muted);
}

.page-cafes .cafe-header .cafe-card-place {
  margin-top: 8px;
}

.page-cafes .cafe-lead {
  margin-top: 16px;
  max-width: 40rem;
  color: var(--ptr-ink);
}

.page-cafes .cafe-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 16px;
}

.page-cafes .cafe-filters[hidden] {
  display: none;
}

.page-cafes .cafe-filters input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-cafes .cafe-filters label {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ptr-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.page-cafes .cafe-filters label:hover {
  color: var(--ptr-ink);
  opacity: 0.7;
}

.page-cafes .cafe-filters input:checked + label {
  color: var(--ptr-ink);
  opacity: 1;
}

.page-cafes .cafe-filters input:focus-visible + label {
  color: var(--ptr-ink);
  text-decoration-thickness: 2px;
}

.page-cafes .cafe-address {
  margin-top: 16px;
}

.page-cafes .cafe-directions-wrap {
  margin-top: 16px;
}

.page-cafes .cafe-directions {
  display: inline-flex;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-cafes .cafe-grid,
.page-cafes .cafe-clubs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.page-cafes .cafe-grid[hidden],
.page-cafes .cafe-clubs-grid[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .page-cafes .cafe-grid,
  .page-cafes .cafe-clubs-grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}

.page-cafes .cafe-card,
.page-cafes .cafe-club-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-cafes .cafe-card[hidden],
.page-cafes .cafe-clubs-loading[hidden] {
  display: none;
}

.page-cafes .cafe-empty {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: flex-start;
  max-width: 36rem;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-cafes .cafe-empty[hidden] {
  display: none;
}

.page-cafes .cafe-grid {
  margin-top: 32px;
}

.page-cafes .cafe-card-name,
.page-cafes .cafe-club-name {
  font-size: 18px;
  line-height: 1.3;
  margin: 8px 0 0;
}

.page-cafes .cafe-card-place {
  margin-top: 8px;
}

.page-cafes .cafe-card-copy {
  margin-top: 16px;
  color: var(--ptr-ink);
}

.page-cafes .cafe-card-host {
  margin-top: 16px;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-muted);
}

.page-cafes .cafe-clubs {
  margin-top: 56px;
}

.page-cafes .cafe-clubs h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.page-cafes .cafe-clubs-loading {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-cafes .cafe-club-organizer {
  margin-top: 8px;
  color: var(--ptr-ink);
}

.page-cafes .cafe-club-organizer a {
  color: #1A1A1A;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-cafes .cafe-club-when {
  margin-top: 8px;
}

.page-cafes .cafe-club-price {
  margin-top: 8px;
}

.page-cafes .cafe-club-book {
  margin-top: 16px;
}

.page-cafes .cafe-club-book .cafe-card-label {
  display: block;
  margin-bottom: 8px;
}

.page-cafes .cafe-club-book-title {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.page-cafes .cafe-club-book-author {
  display: block;
  margin-top: 0;
}

.page-cafes .cafe-club-seats {
  margin-top: 16px;
}

.page-cafes .cafe-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 20px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
}

.page-cafes .cafe-card-foot {
  margin-top: auto;
  padding-top: 20px;
}

.page-cafes .cafe-card-foot .cafe-card-btn {
  margin-top: 0;
}

.page-cafes .cafe-card-btn:hover {
  background: #333333;
}

.page-cafes .cafe-card-btn[hidden] {
  display: none;
}

.page-cafes .cafe-empty p {
  margin: 0;
  color: var(--ptr-ink);
}

.page-cafes .cafe-empty .cafe-card-btn {
  margin-top: 16px;
}

.page-cafes .cafe-page-loading,
.page-cafes .cafe-page-missing,
.page-cafes .cafe-page-missing-lead {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-cafes .cafe-page-missing h1 {
  margin-bottom: 16px;
  color: var(--ptr-ink);
}

.page-cafes .cafe-page-missing-lead {
  margin-top: 16px;
}

.page-cafes .cafe-page-missing-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-cafes [data-cafe-page-loading],
.page-cafes [data-cafe-page-missing],
.page-cafes [data-cafe-page-detail] {
  display: none;
}

.page-cafes [data-cafe-page-state="loading"] [data-cafe-page-loading],
.page-cafes [data-cafe-page-state="missing"] [data-cafe-page-missing],
.page-cafes [data-cafe-page-state="ready"] [data-cafe-page-detail] {
  display: block;
}

.page-cafes .footer-mission,
.page-cafes .footer-tagline,
.page-cafes .footer-copy,
.page-cafes .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-cafes .footer-mission,
.page-cafes .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-cafes .footer-simple-nav a {
  font-size: 15px;
}

.page-cafes .footer-copy {
  font-size: 12px;
}

/* Sign in */
.page-login {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-login),
body.page-login {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-login {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-login {
    padding-left: 0;
    padding-right: 0;
  }

  .page-login .site-header,
  .page-login .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-login .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-login .site-header,
.page-login .site-footer {
  background: #FBF8F5;
}

body.page-login main {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}

.page-login .login-hero {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #c4a574;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-login .login-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.page-login h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  color: var(--ptr-ink);
}

.page-login .login-page {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 56px 24px;
}

html.auth-returning body.page-login .login-page {
  visibility: hidden;
}

.page-login .login-page[hidden] {
  display: none;
}

.page-login .login-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-login .login-lead,
.page-login .login-status,
.page-login .login-signed-in {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-login .login-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 24px;
}

.page-login .login-form[hidden],
.page-login .login-lead[hidden],
.page-login .login-status[hidden],
.page-login .login-signed-in[hidden] {
  display: none;
}

.page-login .login-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-login .login-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
}

.page-login .login-input:focus {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-login .login-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ptr-ink);
  cursor: pointer;
}

.page-login .login-agree input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: #1A1A1A;
}

.page-login .login-submit-wrap {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
}

.page-login .login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
}

.page-login .login-submit:hover {
  background: #333333;
}

.page-login .login-submit:disabled:hover {
  background: #1A1A1A;
}

.page-login .login-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-login .login-submit.is-sending:disabled {
  cursor: wait;
}

.page-login .login-status.is-error {
  color: #8a2f2f;
}

.page-login .footer-mission,
.page-login .footer-tagline,
.page-login .footer-copy,
.page-login .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-login .footer-mission,
.page-login .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-login .footer-simple-nav a {
  font-size: 15px;
}

.page-login .footer-copy {
  font-size: 12px;
}

/* My account */
.page-account {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-account),
body.page-account {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-account {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-account {
    padding-left: 0;
    padding-right: 0;
  }

  .page-account .site-header,
  .page-account .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-account .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-account .site-header,
.page-account .site-footer {
  background: #FBF8F5;
}

.page-account .account-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-account h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  color: var(--ptr-ink);
}

.page-account [data-account-loading],
.page-account [data-account-signed-out],
.page-account [data-account-card] {
  display: none;
}

.page-account [data-account-state="loading"] [data-account-loading] {
  display: block;
}

.page-account [data-account-state="out"] [data-account-signed-out] {
  display: block;
}

.page-account [data-account-state="view"] [data-account-card],
.page-account [data-account-state="edit"] [data-account-card] {
  display: block;
}

.page-account [data-account-state="view"] [data-account-actions],
.page-account [data-account-state="view"] .account-input,
.page-account [data-account-state="view"] [data-account-email-help],
.page-account [data-account-state="loading"] [data-account-card],
.page-account [data-account-state="out"] [data-account-card] {
  display: none !important;
}

.page-account [data-account-state="edit"] [data-account-edit],
.page-account [data-account-state="edit"] [data-account-name-view],
.page-account [data-account-state="edit"] [data-account-city-view] {
  display: none !important;
}

.page-account [data-account-state="edit"] [data-account-actions] {
  display: flex !important;
}

.page-account [data-account-state="edit"] .account-input {
  display: block !important;
}

.page-account [data-account-state="edit"] [data-account-email-help] {
  display: block !important;
}

.page-account [data-account-status]:empty {
  display: none;
}

.page-account .account-loading,
.page-account .account-signed-out {
  max-width: 420px;
}

.page-account .account-loading {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-account .account-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-account .account-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.page-account .account-card-head h1 {
  flex: 1;
  min-width: 0;
}

.page-account .account-card-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding-top: 4px;
}

.page-account .account-edit-actions {
  align-items: center;
  gap: 8px;
}

.page-account .account-lead,
.page-account .account-status {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-account .account-login-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-account .account-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 24px;
}

.page-account .account-field + .account-field {
  margin-top: 16px;
}

.page-account .account-label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-account .account-text {
  margin: 0;
  min-height: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
  overflow-wrap: anywhere;
}

.page-account .account-text.is-empty {
  color: var(--ptr-muted);
}

.page-account .account-help {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ptr-muted);
}

.page-account .account-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
}

.page-account .account-input:focus {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-account .account-cancel,
.page-account .account-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  cursor: pointer;
}

.page-account .account-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 9999px;
  cursor: pointer;
}

.page-account .account-edit:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-account .account-edit-icon {
  width: 16px;
  height: 16px;
}

.page-account .account-cancel {
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
}

.page-account .account-cancel:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-account .account-save {
  color: #fff;
  background: #1A1A1A;
  border: 0;
}

.page-account .account-save:hover {
  background: #333333;
}

.page-account .account-edit:disabled,
.page-account .account-cancel:disabled,
.page-account .account-save:disabled {
  opacity: 0.6;
  cursor: wait;
}

.page-account .account-status.is-error {
  color: #8a2f2f;
}

.page-account .footer-mission,
.page-account .footer-tagline,
.page-account .footer-copy,
.page-account .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-account .footer-mission,
.page-account .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-account .footer-simple-nav a {
  font-size: 15px;
}

.page-account .footer-copy {
  font-size: 12px;
}

.page-account [data-account-joined] {
  display: none;
  margin-top: 40px;
  max-width: 100%;
}

.page-account [data-account-state="view"] [data-account-joined],
.page-account [data-account-state="edit"] [data-account-joined] {
  display: block;
}

.page-account .account-joined h2 {
  margin: 0 0 24px;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ptr-ink);
}

.page-account .account-joined-placeholder {
  display: none;
  width: 100%;
  min-height: 40px;
}

.page-account [data-joined-state="pending"] .account-joined-placeholder {
  display: block;
}

.page-account [data-joined-state="pending"] [data-account-joined-list],
.page-account [data-joined-state="pending"] [data-account-joined-empty],
.page-account [data-joined-state="pending"] [data-account-joined-status],
.page-account [data-joined-state="list"] .account-joined-placeholder,
.page-account [data-joined-state="list"] [data-account-joined-empty],
.page-account [data-joined-state="empty"] .account-joined-placeholder,
.page-account [data-joined-state="empty"] [data-account-joined-list],
.page-account [data-joined-state="error"] .account-joined-placeholder,
.page-account [data-joined-state="error"] [data-account-joined-list],
.page-account [data-joined-state="error"] [data-account-joined-empty] {
  display: none;
}

.page-account [data-joined-state="list"] [data-account-joined-list] {
  display: grid;
}

.page-account [data-joined-state="empty"] [data-account-joined-empty] {
  display: block;
}

.page-account .account-joined-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}

@media (min-width: 768px) {
  .page-account .account-joined-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.page-account .account-club-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-account a.account-club-card:hover {
  opacity: 0.92;
}

.page-account .account-club-name {
  margin: 0;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-account .account-club-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
}

.page-account .account-club-pill {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ptr-muted);
  background: var(--ptr-cream);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 9999px;
}

.page-account .account-club-venue,
.page-account .account-club-when {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-account .account-club-book {
  margin: 16px 0 0;
}

.page-account .account-club-book-label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-account .account-club-book-title {
  display: block;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-account .account-club-book-author {
  display: block;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-account .account-club-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.page-account .account-club-edit,
.page-account .account-club-publish,
.page-account .account-club-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
}

.page-account .account-club-edit,
.page-account .account-club-pause {
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
}

.page-account .account-club-edit:hover,
.page-account .account-club-pause:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-account .account-club-publish {
  color: #fff;
  background: #1A1A1A;
  border: 0;
}

.page-account .account-club-publish:hover {
  background: #333333;
}

.page-account .account-club-edit[aria-disabled="true"],
.page-account .account-club-publish:disabled,
.page-account .account-club-pause:disabled {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

.page-account .account-joined-empty p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-account .account-joined-browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
  text-decoration: none;
}

.page-account .account-joined-browse:hover {
  background: #333333;
}

.page-account .account-joined-status {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #8a2f2f;
}

.page-account [data-joined-state="error"] [data-account-joined-status] {
  display: block;
}

.page-account [data-account-joined-status]:empty {
  display: none;
}

.page-account [data-account-organized] {
  display: none;
  margin-top: 40px;
  max-width: 100%;
}

.page-account [data-account-state="view"] [data-account-organized],
.page-account [data-account-state="edit"] [data-account-organized] {
  display: block;
}

.page-account [data-organized-state="pending"] [data-account-organized-placeholder] {
  display: block;
}

.page-account [data-organized-state="pending"] [data-account-organized-list],
.page-account [data-organized-state="pending"] [data-account-organized-empty],
.page-account [data-organized-state="pending"] [data-account-organized-status],
.page-account [data-organized-state="list"] [data-account-organized-placeholder],
.page-account [data-organized-state="list"] [data-account-organized-empty],
.page-account [data-organized-state="empty"] [data-account-organized-placeholder],
.page-account [data-organized-state="empty"] [data-account-organized-list],
.page-account [data-organized-state="error"] [data-account-organized-placeholder],
.page-account [data-organized-state="error"] [data-account-organized-list],
.page-account [data-organized-state="error"] [data-account-organized-empty] {
  display: none;
}

.page-account [data-organized-state="list"] [data-account-organized-list] {
  display: grid;
}

.page-account [data-organized-state="empty"] [data-account-organized-empty] {
  display: block;
}

.page-account [data-organized-state="error"] [data-account-organized-status] {
  display: block;
}

.page-account [data-account-organized-status]:empty {
  display: none;
}

/* Club detail */
.page-club {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-club),
body.page-club {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-club {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-club {
    padding-left: 0;
    padding-right: 0;
  }

  .page-club .site-header,
  .page-club .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-club .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-club .site-header,
.page-club .site-footer {
  background: #FBF8F5;
}

.page-club .club-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-club .club-detail-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-club .club-detail-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.page-club .club-detail-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.page-club h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  color: var(--ptr-ink);
}

.page-club .club-detail-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.page-club .club-lang-pill {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ptr-muted);
  background: #FBF8F5;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 9999px;
}

.page-club .club-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
}

.page-club .club-join-btn:hover {
  background: #333333;
}

.page-club .club-meeting-link-wrap {
  display: none;
  margin-top: 8px;
}

.page-club [data-club-meeting][data-join-state="in"] .club-meeting-link-wrap:not([hidden]) {
  display: block;
}

.page-club .club-meeting-link {
  color: var(--ptr-ink);
  font-size: var(--type-body);
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  word-break: break-all;
}

.page-club .club-meeting-link:hover {
  opacity: 0.7;
}

.page-club .club-join-btn:disabled,
.page-club .club-leave-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.page-club .club-join {
  min-height: 40px;
}

.page-club .club-join-placeholder {
  display: none;
  min-height: 40px;
  min-width: 8rem;
}

.page-club [data-join-state="pending"] .club-join-placeholder {
  display: block;
}

.page-club [data-join-state="pending"] [data-club-join-out],
.page-club [data-join-state="pending"] [data-club-join-btn],
.page-club [data-join-state="pending"] [data-club-joined],
.page-club [data-join-state="pending"] [data-club-join-status],
.page-club [data-join-state="out"] [data-club-join-placeholder],
.page-club [data-join-state="out"] [data-club-join-btn],
.page-club [data-join-state="out"] [data-club-joined],
.page-club [data-join-state="join"] [data-club-join-placeholder],
.page-club [data-join-state="join"] [data-club-join-out],
.page-club [data-join-state="join"] [data-club-joined],
.page-club [data-join-state="in"] [data-club-join-placeholder],
.page-club [data-join-state="in"] [data-club-join-out],
.page-club [data-join-state="in"] [data-club-join-btn] {
  display: none !important;
}

.page-club [data-join-state="in"] [data-club-joined] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.page-club .club-joined-label {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--ptr-ink);
}

.page-club .club-leave-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 9999px;
  cursor: pointer;
}

.page-club .club-leave-btn:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-club .club-join-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ptr-muted);
}

.page-club .club-join-note.is-error {
  color: #8a2f2f;
}

.page-club .club-detail-block {
  margin-top: 24px;
}

.page-club .club-detail-label {
  margin: 0 0 8px;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-club .club-detail-text,
.page-club .club-detail-muted,
.page-club .club-detail-price {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-club .club-detail-muted {
  color: var(--ptr-muted);
}

.page-club .club-detail-text + .club-detail-text,
.page-club .club-detail-text + .club-detail-muted,
.page-club .club-detail-book-title + .club-detail-muted {
  margin-top: 4px;
}

.page-club .club-detail-book-title {
  margin: 0;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-club .club-detail-text a {
  font-weight: 700;
  color: var(--ptr-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-club .club-detail-directions {
  font-weight: 700;
  color: var(--ptr-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-club .club-page-loading,
.page-club .club-page-missing,
.page-club .club-page-missing-lead {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-club .club-page-missing h1 {
  margin-bottom: 16px;
}

.page-club .club-page-missing-lead {
  margin-top: 16px;
}

.page-club .club-page-missing-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-club [data-club-page-state="loading"] [data-club-page-detail],
.page-club [data-club-page-state="loading"] [data-club-page-missing],
.page-club [data-club-page-state="missing"] [data-club-page-detail],
.page-club [data-club-page-state="missing"] [data-club-page-loading],
.page-club [data-club-page-state="ready"] [data-club-page-loading],
.page-club [data-club-page-state="ready"] [data-club-page-missing] {
  display: none;
}

.page-club .club-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 24px;
}

.page-club .club-detail-price {
  font-weight: 700;
}

.page-club [data-club-seats]:empty {
  min-height: 1.6em;
}

.page-club .footer-mission,
.page-club .footer-tagline,
.page-club .footer-copy,
.page-club .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-club .footer-mission,
.page-club .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-club .footer-simple-nav a {
  font-size: 15px;
}

.page-club .footer-copy {
  font-size: 12px;
}

/* Start a club */
.page-start-club {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-start-club),
body.page-start-club {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-start-club {
  padding-left: 0;
  padding-right: 0;
}

.page-start-club .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-start-club .site-header,
.page-start-club .site-footer {
  background: #FBF8F5;
}

.page-start-club .start-club-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-start-club h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  color: var(--ptr-ink);
}

.page-start-club [data-start-club-loading],
.page-start-club [data-start-club-signed-out],
.page-start-club [data-start-club-denied],
.page-start-club [data-start-club-form-wrap],
.page-start-club [data-start-club-done] {
  display: none;
}

.page-start-club [data-start-club-state="pending"] [data-start-club-loading] {
  display: block;
}

.page-start-club [data-start-club-state="out"] [data-start-club-signed-out] {
  display: block;
}

.page-start-club [data-start-club-state="denied"] [data-start-club-denied] {
  display: block;
}

.page-start-club [data-start-club-state="form"] [data-start-club-form-wrap] {
  display: block;
}

.page-start-club [data-start-club-state="done"] [data-start-club-done] {
  display: block;
}

.page-start-club .start-club-loading,
.page-start-club .start-club-signed-out {
  max-width: 420px;
}

.page-start-club [data-start-club-denied] {
  max-width: 420px;
}

.page-start-club .start-club-loading {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-start-club .start-club-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-start-club .start-club-lead,
.page-start-club .start-club-status {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-start-club .start-club-login-link,
.page-start-club .start-club-account-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-start-club .start-club-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 24px;
}

.page-start-club .start-club-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
}

.page-start-club .start-club-field[hidden] {
  display: none;
}

.page-start-club .start-club-form:has(input[name="format"][value="online"]:checked) [data-start-club-in-person] {
  display: none;
}

.page-start-club [data-start-club-online] {
  display: none;
}

.page-start-club .start-club-form:has(input[name="format"][value="online"]:checked) [data-start-club-online] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.page-start-club .start-club-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  align-items: start;
  justify-items: stretch;
}

@media (min-width: 640px) {
  .page-start-club .start-club-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.page-start-club .start-club-format {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  align-items: start;
}

.page-start-club .start-club-format-choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  cursor: pointer;
}

.page-start-club .start-club-format-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-start-club .start-club-format-choice:has(input:checked) {
  color: #fff;
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.page-start-club .start-club-format-choice:has(input:focus-visible) {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-start-club .start-club-label {
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-start-club .start-club-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: top;
}

.page-start-club input[type="text"].start-club-input,
.page-start-club input[type="url"].start-club-input,
.page-start-club input[type="number"].start-club-input,
.page-start-club input[type="time"].start-club-input,
.page-start-club select.start-club-input {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.page-start-club input[type="number"].start-club-input {
  -moz-appearance: textfield;
}

.page-start-club input[type="number"].start-club-input::-webkit-inner-spin-button,
.page-start-club input[type="number"].start-club-input::-webkit-outer-spin-button {
  height: 24px;
  margin: 0;
}

.page-start-club input[type="time"].start-club-input {
  display: flex;
  align-items: center;
}

.page-start-club input[type="time"].start-club-input::-webkit-calendar-picker-indicator {
  margin: 0;
  height: 16px;
  width: 16px;
}

.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit,
.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit-fields-wrapper,
.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit-text,
.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit-hour-field,
.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit-minute-field,
.page-start-club input[type="time"].start-club-input::-webkit-datetime-edit-ampm-field {
  padding: 0;
  margin: 0;
  height: 32px;
  line-height: 32px;
}

.page-start-club select.start-club-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.page-start-club .start-club-textarea {
  height: auto;
  min-height: 120px;
  max-height: none;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.4;
  resize: vertical;
}

.page-start-club .start-club-input:focus {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-start-club .start-club-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}

.page-start-club .start-club-price input.start-club-input {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}

.page-start-club select.start-club-currency-select {
  flex: 0 0 auto;
  width: max-content;
  min-width: 5.25rem;
  max-width: max-content;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 36px;
  field-sizing: content;
}

.page-start-club select.start-club-input[hidden],
.page-start-club [data-start-club-venues-empty][hidden] {
  display: none;
}

.page-start-club .start-club-help,
.page-start-club .start-club-note {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-start-club .start-club-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.page-start-club .start-club-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
}

.page-start-club .start-club-submit:hover {
  background: #333333;
}

.page-start-club .start-club-submit--secondary {
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
}

.page-start-club .start-club-submit--secondary:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-start-club .start-club-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.page-start-club .start-club-status.is-error {
  color: #8a2f2f;
}

.page-start-club [data-start-club-status]:empty {
  display: none;
}

.page-start-club .footer-mission,
.page-start-club .footer-tagline,
.page-start-club .footer-copy,
.page-start-club .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-start-club .footer-mission,
.page-start-club .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-start-club .footer-simple-nav a {
  font-size: 15px;
}

.page-start-club .footer-copy {
  font-size: 12px;
}

/* About */
.page-about {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-about),
body.page-about {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-about {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-about {
    padding-left: 0;
    padding-right: 0;
  }

  .page-about .site-header,
  .page-about .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-about .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-about .site-header,
.page-about .site-footer {
  background: #FBF8F5;
}

.page-about .about-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-about .about-inner {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-about h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ptr-ink);
}

.page-about .about-prose p {
  margin: 0 0 24px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ptr-ink);
}

.page-about .about-prose p:last-child {
  margin-bottom: 0;
}

.page-about .footer-mission,
.page-about .footer-tagline,
.page-about .footer-copy,
.page-about .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-about .footer-mission,
.page-about .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-about .footer-simple-nav a {
  font-size: 15px;
}

.page-about .footer-copy {
  font-size: 12px;
}

/* Host your cafe */
.page-host-cafe {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-host-cafe),
body.page-host-cafe {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-host-cafe {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-host-cafe {
    padding-left: 0;
    padding-right: 0;
  }

  .page-host-cafe .site-header,
  .page-host-cafe .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-host-cafe .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-host-cafe .site-header,
.page-host-cafe .site-footer {
  background: #FBF8F5;
}

.page-host-cafe .host-cafe-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-host-cafe .host-cafe-pitch,
.page-host-cafe .host-cafe-card {
  max-width: 640px;
}

.page-host-cafe .host-cafe-pitch {
  margin: 0 0 40px;
}

.page-host-cafe h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ptr-ink);
}

.page-host-cafe h2 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--ptr-ink);
}

.page-host-cafe .host-cafe-pitch p {
  margin: 0 0 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-host-cafe .host-cafe-pitch p:last-child {
  margin-bottom: 0;
}

.page-host-cafe .host-cafe-card {
  box-sizing: border-box;
  width: 100%;
  padding: 32px 24px;
  background: #fffdfb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-host-cafe [data-host-cafe-form-wrap],
.page-host-cafe [data-host-cafe-done] {
  display: none;
}

.page-host-cafe [data-host-cafe-state="form"] [data-host-cafe-form-wrap] {
  display: block;
}

.page-host-cafe [data-host-cafe-state="done"] [data-host-cafe-done] {
  display: block;
}

.page-host-cafe .host-cafe-confirm,
.page-host-cafe .host-cafe-status {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-host-cafe .host-cafe-status {
  margin-top: 16px;
}

.page-host-cafe .host-cafe-form-lead {
  margin: 8px 0 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-host-cafe .host-cafe-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  margin-top: 32px;
}

.page-host-cafe .host-cafe-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin: 0;
}

.page-host-cafe .host-cafe-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
}

.page-host-cafe .host-cafe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 24px;
  align-items: start;
  justify-items: stretch;
}

@media (min-width: 640px) {
  .page-host-cafe .host-cafe-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.page-host-cafe .host-cafe-help {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-host-cafe .host-cafe-label {
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-host-cafe .host-cafe-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: top;
}

.page-host-cafe input[type="text"].host-cafe-input,
.page-host-cafe input[type="email"].host-cafe-input {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.page-host-cafe .host-cafe-textarea {
  height: auto;
  min-height: 120px;
  max-height: none;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.4;
  resize: vertical;
}

.page-host-cafe .host-cafe-input:focus {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-host-cafe .host-cafe-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
}

.page-host-cafe .host-cafe-submit:hover {
  background: #333333;
}

.page-host-cafe .host-cafe-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.page-host-cafe .host-cafe-status.is-error {
  color: #8a2f2f;
}

.page-host-cafe [data-host-cafe-status]:empty {
  display: none;
}

.page-host-cafe .footer-mission,
.page-host-cafe .footer-tagline,
.page-host-cafe .footer-copy,
.page-host-cafe .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-host-cafe .footer-mission,
.page-host-cafe .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-host-cafe .footer-simple-nav a {
  font-size: 15px;
}

.page-host-cafe .footer-copy {
  font-size: 12px;
}

/* Confirmation */
.page-confirmation {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-confirmation),
body.page-confirmation {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-confirmation {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-confirmation {
    padding-left: 0;
    padding-right: 0;
  }

  .page-confirmation .site-header,
  .page-confirmation .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-confirmation .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-confirmation .site-header,
.page-confirmation .site-footer {
  background: #FBF8F5;
}

.page-confirmation .confirm-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-confirmation h1,
.page-confirmation .confirm-card,
.page-confirmation .confirm-paid-extras,
.page-confirmation .confirm-free-extras,
.page-confirmation .confirm-lead,
.page-confirmation .confirm-browse {
  max-width: 640px;
}

.page-confirmation h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-loading,
.page-confirmation .confirm-missing,
.page-confirmation .confirm-found {
  display: none;
}

.page-confirmation [data-confirm-state="loading"] [data-confirm-loading],
.page-confirmation [data-confirm-state="missing"] [data-confirm-missing],
.page-confirmation [data-confirm-state="free"] [data-confirm-found],
.page-confirmation [data-confirm-state="paid"] [data-confirm-found] {
  display: block;
}

.page-confirmation [data-confirm-state="free"] [data-confirm-paid-extras],
.page-confirmation [data-confirm-state="paid"] [data-confirm-free-extras] {
  display: none;
}

.page-confirmation .confirm-loading {
  margin: 0;
  color: var(--ptr-muted);
}

.page-confirmation .confirm-lead,
.page-confirmation .confirm-next {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-confirmation .confirm-browse {
  display: inline-flex;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-confirmation .confirm-card {
  box-sizing: border-box;
  width: 100%;
  margin-top: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-confirmation .confirm-club-name {
  margin: 0;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-block {
  margin-top: 16px;
}

.page-confirmation .confirm-label {
  margin: 0 0 8px;
  font-family: var(--ptr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-text,
.page-confirmation .confirm-muted,
.page-confirmation .confirm-price {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-muted {
  color: var(--ptr-muted);
}

.page-confirmation .confirm-text + .confirm-text,
.page-confirmation .confirm-book-title + .confirm-muted {
  margin-top: 4px;
}

.page-confirmation .confirm-book-title {
  margin: 0;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-directions,
.page-confirmation .confirm-meeting-link {
  font-weight: 700;
  color: var(--ptr-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-confirmation .confirm-meeting-link {
  font-weight: 400;
  word-break: break-all;
}

.page-confirmation .confirm-price {
  font-family: var(--ptr-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.page-confirmation .confirm-paid-extras {
  margin-top: 24px;
}

.page-confirmation .confirm-cash-box {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  background: #fffdfb;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-confirmation .confirm-cash-amount {
  margin: 0;
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ptr-ink);
}

.page-confirmation .confirm-cash-note {
  margin: 8px 0 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-muted);
}

.page-confirmation .confirm-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border-radius: 9999px;
  text-decoration: none;
}

.page-confirmation .confirm-account-btn:hover {
  background: #333333;
}

.page-confirmation .confirm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.page-confirmation .confirm-calendar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 9999px;
  text-decoration: none;
}

.page-confirmation .confirm-calendar-btn:hover {
  background: rgba(26, 26, 26, 0.06);
}

.page-confirmation .confirm-calendar-btn[hidden] {
  display: none;
}

.page-confirmation .footer-mission,
.page-confirmation .footer-tagline,
.page-confirmation .footer-copy,
.page-confirmation .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-confirmation .footer-mission,
.page-confirmation .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-confirmation .footer-simple-nav a {
  font-size: 15px;
}

.page-confirmation .footer-copy {
  font-size: 12px;
}

/* Add your city waitlist */
.page-add-your-city {
  --ptr-serif: "Fraunces", Georgia, serif;
  --ptr-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --ptr-ink: #1A1A1A;
  --ptr-muted: #5c5c5c;
  --ptr-cream: #FBF8F5;
  --home-max: 1100px;
  --home-gutter: 24px;
  background: #FBF8F5;
  background-image: none;
  color: var(--ptr-ink);
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
}

html:has(body.page-add-your-city),
body.page-add-your-city {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #FBF8F5;
  background-image: none;
}

body.page-add-your-city {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 639px) {
  .page-add-your-city {
    padding-left: 0;
    padding-right: 0;
  }

  .page-add-your-city .site-header,
  .page-add-your-city .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.page-add-your-city .container {
  box-sizing: border-box;
  max-width: var(--home-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-add-your-city .site-header,
.page-add-your-city .site-footer {
  background: #FBF8F5;
}

.page-add-your-city .waitlist-page {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-add-your-city .waitlist-pitch,
.page-add-your-city .waitlist-card {
  max-width: 640px;
}

.page-add-your-city .waitlist-pitch {
  margin: 0 0 40px;
}

.page-add-your-city h1 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ptr-ink);
}

.page-add-your-city h2 {
  font-family: var(--ptr-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--ptr-ink);
}

.page-add-your-city .waitlist-pitch p {
  margin: 0;
  font-family: var(--ptr-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-add-your-city .waitlist-card {
  box-sizing: border-box;
  width: 100%;
  padding: 32px 24px;
  background: #fffdfb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-add-your-city [data-waitlist-form-wrap],
.page-add-your-city [data-waitlist-done] {
  display: none;
}

.page-add-your-city [data-waitlist-state="form"] [data-waitlist-form-wrap] {
  display: block;
}

.page-add-your-city [data-waitlist-state="done"] [data-waitlist-done] {
  display: block;
}

.page-add-your-city .waitlist-confirm,
.page-add-your-city .waitlist-status {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ptr-ink);
}

.page-add-your-city .waitlist-status {
  margin-top: 16px;
}

.page-add-your-city .waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin-top: 32px;
}

.page-add-your-city .waitlist-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
}

.page-add-your-city .waitlist-label {
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ptr-ink);
}

.page-add-your-city .waitlist-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: top;
}

.page-add-your-city input[type="text"].waitlist-input,
.page-add-your-city input[type="email"].waitlist-input {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.page-add-your-city .waitlist-input:focus {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-add-your-city .waitlist-roles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  align-items: start;
}

.page-add-your-city .waitlist-role-choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--ptr-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  cursor: pointer;
}

.page-add-your-city .waitlist-role-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-add-your-city .waitlist-role-choice:has(input:checked) {
  color: #fff;
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.page-add-your-city .waitlist-role-choice:has(input:focus-visible) {
  outline: 2px solid #1A1A1A;
  outline-offset: 2px;
}

.page-add-your-city .waitlist-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 8px;
  padding: 8px 16px;
  font-family: var(--ptr-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #1A1A1A;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
}

.page-add-your-city .waitlist-submit:hover {
  background: #333333;
}

.page-add-your-city .waitlist-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.page-add-your-city .waitlist-status.is-error {
  color: #8a2f2f;
}

.page-add-your-city [data-waitlist-status]:empty {
  display: none;
}

.page-add-your-city .footer-mission,
.page-add-your-city .footer-tagline,
.page-add-your-city .footer-copy,
.page-add-your-city .footer-simple-nav a {
  font-family: var(--ptr-sans);
  font-style: normal;
}

.page-add-your-city .footer-mission,
.page-add-your-city .footer-tagline {
  font-size: 16px;
  line-height: 1.6;
}

.page-add-your-city .footer-simple-nav a {
  font-size: 15px;
}

.page-add-your-city .footer-copy {
  font-size: 12px;
}




