:root {
  --bg: #f4f5f3;
  --panel: #ffffff;
  --text: #14171b;
  --muted: #6b7078;
  --accent: #2489ff;
  --accent-secondary: #2cc9cd;
  --accent-light: #e6f5ff;
  --border: rgba(20, 23, 27, 0.08);
  --success: #2e7d32;
  --warning: #b26a00;
  --error: #b3261e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Source Sans 3", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% -10%, #e7f4ff, var(--bg) 55%),
    radial-gradient(circle at 90% -20%, rgba(44, 201, 205, 0.2), transparent 60%);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", "Source Sans 3", sans-serif;
  margin: 0 0 12px;
  font-weight: 600;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(20, 23, 27, 0.06);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.brand a {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 50px;
  width: auto;
  display: block;
}

.public-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
}

.public-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.public-nav-group {
  position: relative;
  font-weight: 500;
  color: var(--text);
}

.public-nav-label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.public-nav-sub {
  position: absolute;
  top: 25px;
  left: 0;
  background: var(--panel);
  border: 1px solid rgba(20, 23, 27, 0.08);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  min-width: 180px;
  z-index: 20;
}

.public-nav-group:hover .public-nav-sub,
.public-nav-sub:hover {
  display: grid;
  gap: 6px;
}

.public-nav-sub a {
  padding: 6px 8px;
  border-radius: 6px;
}

.public-nav-sub a:hover {
  background: var(--accent-light);
}

.subtle-link {
  color: var(--muted);
  font-weight: 500;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  max-width: 100px;
  max-height: 100px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, var(--accent), var(--accent-secondary)) border-box;
  box-shadow: 4px 4px 6px rgba(20, 23, 27, 0.08);
}

.profile-avatar--large {
  width: 100px;
  height: 100px;
}

.brand-logo {
  width: min(220px, 100%);
  aspect-ratio: var(--brand-logo-ratio, 1 / 1);
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo--sm {
  width: min(160px, 100%);
}

.cropper {
  display: grid;
  gap: 12px;
}

.field-floating-file {
  display: grid;
  gap: 8px;
}

.field-floating-label {
  font-weight: 600;
}

.js-file-input {
  display: none;
}

.file-field-shell {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.file-field-button {
  flex: 0 0 auto;
}

.file-field-name {
  color: var(--muted);
  font-size: 0.9rem;
}

.field-floating-file.has-value .file-field-name {
  color: var(--text);
}

.cropper-controls {
  display: grid;
  gap: 10px;
}

.cropper-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cropper-canvas {
  width: 320px;
  max-width: 100%;
  border-radius: 50%;
  border: 1px solid rgba(30, 59, 92, 0.12);
  background: #f5f6f8;
  cursor: grab;
}

.cropper-canvas--brand {
  border-radius: 12px;
}

.cropper-canvas.is-dragging {
  cursor: grabbing;
}

.cropper-zoom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.role-pill {
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.08);
  color: #174997;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-button:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.link-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, rgb(35, 137, 255), rgb(47, 201, 204));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.link-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(35, 137, 255, 0.2);
}

.sidebar-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.copy-button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-weight: 500;
  padding: 0;
}

.feature-editor {
  display: grid;
  gap: 10px;
}

.feature-rows {
  display: grid;
  gap: 10px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.feature-row input {
  width: 100%;
}

.feature-remove {
  padding: 8px 10px;
}

.feature-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-hidden {
  display: none;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.nav-toggle {
  display: none;
  background: #f2f4f7;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

.app-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 70px);
}

.app-shell.no-nav {
  grid-template-columns: 1fr;
}

.sidebar {
  padding: 24px 16px;
  border-right: 1px solid var(--border);
  background: #f9fafb;
}

.sidebar-title {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-link:hover {
  background: var(--accent-light);
}

.content {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px 40px;
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding: 56px 22px 36px;
  margin-bottom: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(20, 23, 27, 0.08);
  overflow: hidden;
}

.hero h1 {
  font-size: 3.15rem;
  line-height: 1.05;
  margin: 0;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-accent {
  position: absolute;
  top: -70px;
  left: -120px;
  width: 360px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 118, 212, 0.14), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.hero-media {
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-media-frame {
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 23, 27, 0.08);
  box-shadow: 0 18px 44px rgba(20, 23, 27, 0.14);
}

.hero-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.96));
  box-shadow: 0 8px 20px rgba(20, 23, 27, 0.08);
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.1px;
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  margin: 6px 6px 0 0;
  background: rgba(20, 23, 27, 0.04);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.ok {
  background: #1f9d53;
}

.dot.warn {
  background: #f59e0b;
}

.dot.danger {
  background: #ef4444;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.08);
  color: #174997;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(20, 23, 27, 0.06);
  border: 1px solid rgba(20, 23, 27, 0.1);
  font-size: 0.86rem;
  font-weight: 500;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 80ch;
}

.lead strong {
  color: var(--text);
}

.helper {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 78ch;
}

.home-hero {
  padding: 26px 22px 34px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.home-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 72ch;
}

.home-cred {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 10px;
}

.home-cred-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.home-cred-top strong {
  font-size: 0.85rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-cred-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.home-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.home-pdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.home-hero-side {
  display: grid;
  gap: 14px;
}

.home-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  box-shadow: 0 18px 40px rgba(20, 23, 27, 0.12);
  aspect-ratio: 1 / 1;
  min-height: 320px;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 23, 27, 0.08), rgba(20, 23, 27, 0.62)),
    radial-gradient(800px 300px at 20% 20%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(700px 280px at 90% 10%, rgba(44, 201, 205, 0.12), transparent 60%);
}

.home-hero-media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  z-index: 1;
}

.home-hero-media-tag {
  font-size: 0.75rem;
  color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.4);
  background: rgba(20, 23, 27, 0.45);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.home-right-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.home-right-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-mini-cta {
  display: grid;
  gap: 10px;
}

.home-fineprint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.home-img-block {
  margin: 18px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 27, 0.1);
  box-shadow: 0 16px 34px rgba(20, 23, 27, 0.12);
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}

.home-img-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.home-img-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 27, 0.05), rgba(20, 23, 27, 0.65));
  pointer-events: none;
}

.home-img-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.75rem;
  color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.4);
  background: rgba(20, 23, 27, 0.45);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.home-img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 10px;
}

.home-img-split .home-img-block img {
  height: 260px;
}

.home-whatyouget {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.home-wygi {
  border: 1px solid rgba(20, 23, 27, 0.08);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 14px;
}

.home-wygi h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.home-wygi p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.section {
  margin-bottom: 24px;
}

.home-callout {
  margin-top: 10px;
}

.opinionated {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(140deg, #2b3442, #374151);
  color: #f3f6fb;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.opinionated-title {
  font-size: 1.55rem;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.opinionated-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.opinionated-panel {
  border-radius: 14px;
  padding: 14px 16px;
}

.opinionated-panel p {
  margin: 0;
  color: rgba(243, 246, 251, 0.92);
}

.opinionated-panel--left {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.42);
}

.opinionated-panel--right {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.38);
}

.opinionated-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.opinionated-list li + li {
  margin-top: 6px;
}

.sales-hero {
  align-items: start;
}

.sales-hero-form {
  margin-top: 0;
}


.sales-form h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.sales-form p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sales-form form {
  display: grid;
  gap: 12px;
}

.sales-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fineprint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.fineprint a {
  color: inherit;
}

.sales-quote {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background:
    radial-gradient(800px 240px at 12% 20%, rgba(37, 99, 235, 0.12), transparent 60%),
    radial-gradient(600px 220px at 90% 10%, rgba(44, 201, 205, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.86);
}

.sales-quote p {
  margin: 0;
  color: var(--muted);
}

.sales-quote strong {
  color: var(--text);
}

.sales-quote-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sales-actions {
  margin-top: 18px;
}

.founder-vision {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.founder-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: #174997;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.founder-vision h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.12;
}


.founder-panel {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(20, 23, 27, 0.08);
}

.founder-panel p {
  margin: 0;
  color: var(--muted);
}

.founder-section {
  padding-top: 16px;
  border-top: 1px solid rgba(20, 23, 27, 0.08);
  display: grid;
  gap: 12px;
}

.founder-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b5ea8;
  font-weight: 600;
}

.founder-section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.founder-muted {
  margin: 0;
  color: var(--muted);
}

.founder-callout {
  border-left: 3px solid rgba(37, 99, 235, 0.4);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(37, 99, 235, 0.06);
}

.founder-callout p {
  margin: 0;
  color: var(--muted);
}

.founder-cta {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background:
    radial-gradient(800px 260px at 10% 20%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(700px 240px at 90% 10%, rgba(44, 201, 205, 0.16), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.94));
}

.founder-cta h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.founder-cta p {
  margin: 0;
  color: var(--muted);
}

.how-hero {
  align-items: start;
}

.how-summary-wrap {
  margin-top: 0;
}

.how-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 75ch;
}

.how-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.how-pill {
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 12px;
}

.how-pill h2 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.how-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.how-section {
  border-top: 1px solid rgba(20, 23, 27, 0.08);
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.how-step {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.how-step-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.how-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1f63c7, #2cc9cd);
  flex: 0 0 auto;
}

.how-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.how-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.how-faq details {
  border: 1px solid rgba(20, 23, 27, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
}

.how-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.how-faq summary::-webkit-details-marker {
  display: none;
}

.how-faq details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.who-hero {
  align-items: start;
}

.who-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 78ch;
}

.who-panel {
  margin-top: 0;
}

.who-panel p {
  margin: 0;
  color: var(--muted);
}

.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(20, 23, 27, 0.04);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.who-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.who-dot--ok {
  background: #1f9d53;
}

.who-dot--danger {
  background: #ef4444;
}

.who-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.who-li {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.who-tick,
.who-cross {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex: 0 0 auto;
  position: relative;
  margin-top: 1px;
}

.who-tick {
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.who-tick::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(46, 125, 50, 0.95);
  border-bottom: 2px solid rgba(46, 125, 50, 0.95);
  transform: rotate(-45deg);
}

.who-cross {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.who-cross::before,
.who-cross::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: rgba(239, 68, 68, 0.95);
  top: 8px;
  left: 4px;
  border-radius: 2px;
}

.who-cross::before {
  transform: rotate(45deg);
}

.who-cross::after {
  transform: rotate(-45deg);
}

.why-hero {
  align-items: start;
}

.why-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 80ch;
}

.why-panel p {
  margin: 0;
  color: var(--muted);
}

.why-callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background:
    radial-gradient(800px 260px at 10% 20%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(700px 240px at 90% 10%, rgba(44, 201, 205, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.9);
}

.why-callout p {
  margin: 0;
  color: var(--muted);
}

.why-compare {
  margin-top: 14px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-row--head {
  background: linear-gradient(135deg, rgb(35, 137, 255), rgb(47, 201, 204));
  font-weight: 700;
  color: #fff;
}

.why-cell {
  padding: 14px;
  border-top: 1px solid rgba(20, 23, 27, 0.1);
}

.why-row:first-child .why-cell {
  border-top: 0;
}

.why-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin: 0 0 6px;
}

.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.why-dot--warn {
  background: #f59e0b;
}

.why-dot--ok {
  background: #22c55e;
}

.why-cell p {
  margin: 0 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-hero {
  align-items: start;
  grid-template: none;
}


.pricing-panel p {
  margin: 0;
  color: var(--muted);
}

.pricing-callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background:
    radial-gradient(800px 260px at 10% 20%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(700px 240px at 90% 10%, rgba(44, 201, 205, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.9);
}

.pricing-callout p {
  margin: 0;
  color: var(--muted);
}

.pricing-note {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.plan-card {
  background:
    radial-gradient(130% 90% at 100% -20%, rgba(36, 137, 255, 0.12), transparent 55%),
    radial-gradient(120% 80% at -10% 100%, rgba(47, 201, 204, 0.08), transparent 55%),
    var(--panel);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(20, 23, 27, 0.08);
  border: 1px solid rgba(20, 23, 27, 0.12);
  display: grid;
  gap: 16px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(20, 23, 27, 0.12);
  border-color: rgba(36, 137, 255, 0.28);
}

.plan-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.plan-name h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0b4f94;
  background: rgba(36, 137, 255, 0.16);
  border: 1px solid rgba(36, 137, 255, 0.28);
  margin: 0;
  width: fit-content;
}

.plan-name p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.plan-who-for {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-price {
  text-align: right;
  display: grid;
  gap: 4px;
  align-items: end;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
}

.plan-amount {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.plan-interval {
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-features li {
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(35, 137, 255), rgb(47, 201, 204));
}

.plan-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 23, 27, 0.12), rgba(20, 23, 27, 0.02));
}

.plan-limits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plan-limit {
  border: 1px solid rgba(20, 23, 27, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  padding: 8px 10px;
  display: grid;
  gap: 3px;
}

.plan-limit span {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plan-limit strong {
  font-size: 0.95rem;
  color: var(--text);
}

.plan-compare {
  margin-top: 14px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(20, 23, 27, 0.08);
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(20, 23, 27, 0.06);
}

.plan-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  margin: 0;
}

.plan-compare th,
.plan-compare td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(20, 23, 27, 0.06);
  font-size: 0.9rem;
}

.plan-compare th:first-child,
.plan-compare td:first-child {
  text-align: right;
  font-weight: 600;
  border-right: 1px solid rgba(20, 23, 27, 0.12);
  width: 180px;
}

.plan-compare th:not(:first-child),
.plan-compare td:not(:first-child) {
  text-align: center;
}

.plan-compare th {
  background: rgba(36, 137, 255, 0.12);
  font-weight: 600;
}

.plan-compare tbody tr:nth-child(even) {
  background: rgba(20, 23, 27, 0.02);
}

.plan-actions {
  margin-top: auto;
}

.plan-actions .link-button-primary {
  width: 100%;
  justify-content: center;
}

@media (max-width: 720px) {
  .plan-card-top {
    flex-direction: column;
    gap: 10px;
  }

  .plan-price {
    text-align: left;
    justify-items: start;
  }

  .plan-price-row {
    justify-content: flex-start;
  }

  .plan-limits {
    grid-template-columns: 1fr;
  }
}

.see-hero {
  padding: 26px 22px 10px;
}

.see-hero-inner {
  display: grid;
  gap: 18px;
}


.see-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
}


.see-section {
  border-top: 1px solid rgba(20, 23, 27, 0.08);
}

.see-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.see-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.see-section-desc {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 0.9rem;
}

.see-section-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.see-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.see-video-card {
  padding: 14px;
}

.see-video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(255, 255, 255, 0.7);
  aspect-ratio: 16 / 9;
}

.video-click {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transform: scale(1.01);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.25), rgba(11, 15, 20, 0.7));
}

.video-play {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(233, 238, 246, 0.1);
  border: 1px solid rgba(233, 238, 246, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid rgba(233, 238, 246, 0.92);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video-label {
  position: absolute;
  left: 92px;
  bottom: 32px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.1px;
  color: rgba(233, 238, 246, 0.95);
  border: 1px solid rgba(233, 238, 246, 0.16);
  background: rgba(17, 24, 36, 0.55);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.video-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.video-control {
  border: 1px solid rgba(20, 23, 27, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.video-control-secondary {
  background: rgba(255, 255, 255, 0.75);
}

.see-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.see-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(700px 240px at 20% 20%, rgba(37, 99, 235, 0.12), transparent 60%),
    radial-gradient(700px 240px at 90% 10%, rgba(44, 201, 205, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.85);
  color: var(--text);
}

.see-play {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(20, 23, 27, 0.06);
  border: 1px solid rgba(20, 23, 27, 0.16);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(20, 23, 27, 0.15);
  margin: 0 auto 12px;
}

.see-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 16px solid rgba(20, 23, 27, 0.85);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.see-placeholder-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.see-placeholder-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
  max-width: 52ch;
}

.see-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.see-tag {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.65);
  padding: 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.see-video-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.see-video-meta h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.see-video-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
  max-width: 72ch;
}

.see-side {
  padding: 16px;
}

.see-side h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.see-side p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.see-checklist {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.see-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.see-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(35, 137, 255), rgb(47, 201, 204));
  box-shadow: 0 0 0 6px rgba(35, 137, 255, 0.12);
  flex: 0 0 auto;
  margin-top: 4px;
}

.see-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.how2-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-bottom: 18px;
}


.how2-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.how2-step {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.how2-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, rgb(35, 137, 255), rgb(47, 201, 204));
  margin-bottom: 10px;
}

.how2-step h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.how2-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.how2-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 80ch;
}

.guardrails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(20, 23, 27, 0.05);
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.subnote {
  margin-top: 12px;
  font-size: 0.92rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.list-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.numbered-steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfbfb;
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 1.05rem;
}

.flow-num {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 28px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 12px;
  background: rgba(20, 23, 27, 0.04);
  border-radius: 10px;
  font-size: 0.95rem;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: center;
}

.section-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.section-media.small {
  max-width: 360px;
}

.tabs {
  display: grid;
  gap: 16px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-button {
  border: 1px solid rgba(20, 23, 27, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text);
}

.tab-button.is-active {
  background: linear-gradient(135deg, rgba(35, 137, 255, 0.15), rgba(47, 201, 204, 0.18));
  border-color: rgba(35, 137, 255, 0.4);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-filter {
  margin-bottom: 26px;
}

.summary-lines {
  display: grid;
  gap: 4px;
  width: 100%;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.billing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.who-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  align-items: center;
}

.callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(20, 23, 27, 0.08);
  border-bottom: 1px solid rgba(20, 23, 27, 0.08);
}

.callout-title {
  font-size: 1.6rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.footer-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.panel {
  background: var(--panel);
  border: none;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(20, 23, 27, 0.08);
}

.accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-summary::marker {
  content: "";
}

.accordion-total {
  font-weight: 600;
}

.accordion-section-title {
  margin-top: 18px;
}

.surface {
  background: var(--panel);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20, 23, 27, 0.06);
}

.week-calendar {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.week-day {
  background: rgba(20, 23, 27, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  overflow: visible;
}

.week-day.is-today {
  border-color: rgba(36, 137, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(36, 137, 255, 0.12);
}

.week-day-title {
  padding: 10px 12px;
  font-weight: 600;
  background: rgba(20, 23, 27, 0.04);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.week-day-title-text {
  font-weight: 600;
}

.week-day-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.week-day-badge {
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translate(-50%, -100%);
  background: #fff;
  border: 1px solid rgba(36, 137, 255, 0.35);
  color: rgba(36, 137, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 16px 0;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 6px 16px rgba(36, 137, 255, 0.15);
  z-index: -1px;
}

.week-day-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.week-event {
  position: relative;
  border: 1px solid rgba(36, 137, 255, 0.18);
  background: #f2f7ff;
  border-radius: 10px;
  padding: 10px 28px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.week-event.is-canceled {
  border-color: rgba(217, 48, 37, 0.35);
  background: rgba(217, 48, 37, 0.08);
}

.week-event-time {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.week-event-title {
  font-weight: 600;
}

.week-event-class {
  font-style: italic;
}

.week-event-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.week-event-canceled-label {
  color: #d93025;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.week-event .info-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--muted);
}

.session-options .checkbox-field:first-child {
  margin-top: 10px;
}

.checkbox-field.is-full,
.checkbox-field.is-disabled input {
  opacity: 0.6;
}

.checkbox-field.is-disabled input {
  cursor: not-allowed;
}

.session-submit {
  margin-top: 12px;
}

.calendar-tooltip {
  white-space: normal;
  width: 220px;
  line-height: 1.4;
}

.is-hidden {
  display: none;
}

.surface + .surface {
  margin-top: 16px;
}

.split .surface + .surface,
.grid .surface + .surface {
  margin-top: 0;
}

.stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 16px;
}

.stat {
  padding: 16px;
  border-radius: 12px;
  background: rgba(20, 23, 27, 0.03);
}

.stat-title {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
}

.section form.stack {
  max-width: 520px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.page-header .page-title {
  font-size: 1.9rem;
  margin-bottom: 4px;
}

.page-header .page-description {
  color: var(--muted);
  margin: 0;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-actions.align-right {
  margin-left: auto;
  justify-content: flex-end;
}

.button-secondary {
  background: #f2f4f7;
  color: var(--text);
  border: 1px solid var(--border);
}

.button-danger {
  background: #fdecea;
  color: var(--error);
  border: 1px solid #f2c9c5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.surface + .grid,
.grid + .surface {
  margin-top: 16px;
}

.stack {
  display: grid;
  gap: 10px;
}

.stack.is-hidden {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.overlay.is-hidden {
  display: none;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.overlay__content {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.overlay__message {
  margin: 0;
  padding-right: 24px;
}

.overlay__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 6px;
}

.overlay__close:hover,
.overlay__close:focus {
  color: #111;
}

.inline-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.form-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-actions-right {
  display: flex;
  justify-content: flex-end;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.row-canceled {
  background: #fff4f4;
  color: #7d2b2b;
}

.row-covered {
  background: #fff7e6;
  color: #7a4a00;
}

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}

.info-tooltip {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 6px;
  padding: 6px 8px;
  background: #1f1f1f;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 3;
}

.info-tip:hover .info-tooltip {
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 1100px) {
  .week-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .week-calendar {
    grid-template-columns: 1fr;
  }
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

input, select, button, textarea {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

label.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.radio-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

label.radio-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

label.radio-field input[type="radio"] {
  margin: 0;
}

input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='white' d='M4.2 7.2L1.5 4.5L0.4 5.6L4.2 9.4L11.6 2L10.5 0.9Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 137, 255, 0.2);
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  width: 100%;
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 4px;
  color: var(--muted);
  cursor: pointer;
}

.password-toggle:hover {
  color: var(--text);
}

.password-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.password-toggle .icon-eye-off {
  display: none;
}

.password-toggle.is-visible .icon-eye {
  display: none;
}

.password-toggle.is-visible .icon-eye-off {
  display: block;
}

button {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.button-like {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
}

.button-like:hover {
  opacity: 0.9;
}

.link-button {
  cursor: pointer;
}

.muted {
  color: var(--muted);
}

.messages {
  margin-bottom: 16px;
}

.message {
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.message-success {
  background: #e6f4ea;
  color: var(--success);
}

.message-error {
  background: #fdecea;
  color: var(--error);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
}

.status-success {
  background: #e6f4ea;
  color: var(--success);
  border: 1px solid #cce8d3;
}

.status-muted {
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
  border: 1px solid var(--border);
}

.highlight {
  background: var(--accent-light);
  padding: 12px;
  border-radius: 6px;
}

.feature-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-list li {
  margin: 4px 0;
}

.plan-picker {
  display: grid;
  gap: 12px;
}

.plan-picker-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-scroll {
  overflow-x: auto;
  padding: 8px 8px 14px;
}

.plan-picker .grid {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  overflow: visible;
}

.plan-option {
  display: block;
}

.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card {
  cursor: pointer;
  min-width: 240px;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.plan-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.plan-card-price {
  margin-top: 6px;
  font-size: 1.1rem;
}

.plan-option input:checked + .plan-card {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 18px 38px rgba(47, 99, 209, 0.24);
  transform: translateY(-2px);
}

.plan-option:hover .plan-card {
  border-color: rgba(47, 99, 209, 0.35);
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9rem;
  white-space: pre-wrap;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th,
table td {
  border-bottom: 1px solid var(--border);
  padding: 8px;
  text-align: left;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .content {
    padding: 0 16px 32px;
  }

  .public-nav {
    display: none;
    gap: 10px;
    width: 100%;
    padding: 12px 0;
  }

  .public-nav.is-open {
    display: grid;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar-meta {
    width: 100%;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .public-nav-group {
    width: 100%;
  }

  .public-nav-sub {
    position: static;
    display: grid;
    box-shadow: none;
    border: none;
    padding: 6px 0 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 14px 24px;
    gap: 22px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-media {
    min-height: 260px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-kicker {
    font-size: 0.76rem;
  }

  .hero-card {
    margin-top: 10px;
    padding: 14px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .home-img-split {
    grid-template-columns: 1fr;
  }

  .home-whatyouget {
    grid-template-columns: 1fr;
  }

  .opinionated {
    padding: 16px;
  }

  .opinionated-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .sales-hero {
    gap: 18px;
  }


  .stack-on-mobile {
    grid-template-columns: 1fr;
  }

  .founder-cta {
    padding: 18px;
  }

}
