@font-face {
  font-family: 'Uniform Pro';
  src: url('UniformPro-55Rg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #E67A03;
  --accent-2: #C96A02;
  --accent-soft: rgba(230, 122, 3, 0.10);
  --accent-softer: rgba(230, 122, 3, 0.05);
  --ink: #050F21;
  --ink-2: #1F2124;
  --muted: #566277;
  --muted-2: #8C93A8;
  --line: #E6E8EF;
  --line-2: #EEF0F5;
  --bg: #FFFFFF;
  --surface: #F6F7FB;
  --surface-2: #FAFBFD;
  --brand-dark: #050F21;
  --wordmark: #1A2943;
  --danger: #B42318;
  --shadow-card: 0 1px 2px rgba(11,27,58,.04), 0 8px 24px rgba(11,27,58,.06);
  --shadow-pop: 0 2px 6px rgba(11,27,58,.06), 0 20px 48px rgba(11,27,58,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Uniform Pro', 'DM Sans', -apple-system, system-ui, sans-serif;
}

html[data-theme="dark"] {
  --wordmark: #F4F5FA;
  --ink: #F4F5FA;
  --ink-2: #D1D4E0;
  --muted: #9096A8;
  --muted-2: #6A7085;
  --line: #262B3E;
  --line-2: #1D2133;
  --bg: #0F111D;
  --surface: #161928;
  --surface-2: #121520;
  --accent-soft: rgba(230, 122, 3, 0.16);
  --accent-softer: rgba(230, 122, 3, 0.08);
  --shadow-card: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  --shadow-pop: 0 2px 6px rgba(0,0,0,.4), 0 20px 48px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }

a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ========== Top nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.top-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 32px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.top-strip a,
.topnav a { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.top-strip a:hover,
.topnav a:hover { color: var(--accent); }
.topnav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.topnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 600;
}
.topnav-right {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}
.topnav-discover {
  color: var(--accent);
}
.topnav-signin,
.topnav-lang { color: var(--ink-2); }
.topnav-cta {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.topnav-cta:hover { background: var(--accent-2); color: white; transform: translateY(-1px); }

/* ========== Hero ========== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 16px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px; border-radius: 999px; background: var(--accent);
  color: white; display: grid; place-items: center; font-size: 10px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 auto 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .leaf { display: inline-block; transform: translateY(-2px); }
.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-chip svg { color: var(--accent); }

/* ========== Scheduler card ========== */
.scheduler-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.card-shell {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.scheduler-brand {
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
}
.scheduler-logo { display: flex; align-items: center; gap: 12px; }
.scheduler-logo-title { font-weight: 600; font-size: 14px; color: var(--ink); }
.scheduler-logo-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.scheduler-steps { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-weight: 500; }
.scheduler-steps .step { padding: 5px 10px; border-radius: 6px; }
.scheduler-steps .step.active { color: var(--accent); background: var(--accent-soft); }
.scheduler-steps .step.done { color: var(--ink-2); }
.scheduler-steps .step-divider { width: 20px; height: 1px; background: var(--line); }

.scheduler-body {
  display: grid;
  grid-template-columns: 260px 1fr 320px;
  min-height: 520px;
}
.scheduler-body.strip-mode {
  grid-template-columns: 260px 1fr 320px;
}

/* Left column */
.scheduler-left {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.scheduler-meta { display: flex; flex-direction: column; gap: 10px; }
.scheduler-meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
}
.scheduler-meta-row svg { color: var(--muted); }
.scheduler-agenda-title {
  font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.scheduler-agenda ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.scheduler-agenda li {
  font-size: 13px; color: var(--ink-2); line-height: 1.45;
  padding-left: 16px; position: relative;
}
.scheduler-agenda li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 999px; background: var(--accent);
}
.scheduler-host {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 20px; border-top: 1px dashed var(--line);
}
.scheduler-host-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; font-weight: 600; font-size: 14px;
  display: grid; place-items: center;
}
.scheduler-host-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.scheduler-host-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Middle (calendar) */
.scheduler-middle { padding: 24px; border-right: 1px solid var(--line); }
.cal-month-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month-title { font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.cal-month-nav { display: flex; gap: 4px; }
.cal-month-nav button {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: background .15s;
}
.cal-month-nav button:hover:not(:disabled) { background: var(--surface); }
.cal-month-nav button:disabled { color: var(--muted-2); cursor: not-allowed; }

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 6px;
}
.cal-weekdays > div {
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--muted); padding: 6px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-cell {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border-radius: 999px;
  transition: background .12s, color .12s, transform .12s;
  position: relative;
}
.cal-cell.empty { visibility: hidden; }
.cal-cell.bookable {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}
.cal-cell.bookable:hover { background: var(--accent); color: white; }
.cal-cell.disabled { color: var(--muted-2); cursor: not-allowed; }
.cal-cell.selected {
  background: var(--accent) !important; color: white !important;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.cal-cell.today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 999px; background: currentColor;
}

/* Strip mode */
.cal-strip-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal-strip-title { font-weight: 600; font-size: 15px; color: var(--ink); }
.cal-strip-nav { display: flex; gap: 4px; }
.cal-strip-nav button {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; color: var(--ink-2);
}
.cal-strip-nav button:hover:not(:disabled) { background: var(--surface); }
.cal-strip-nav button:disabled { color: var(--muted-2); cursor: not-allowed; }
.cal-strip-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
}
.cal-strip-day {
  padding: 10px 4px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--bg);
  transition: all .12s;
}
.cal-strip-day.bookable { cursor: pointer; }
.cal-strip-day.bookable:hover { border-color: var(--accent); background: var(--accent-soft); }
.cal-strip-day.disabled { opacity: 0.4; cursor: not-allowed; }
.cal-strip-day.selected { background: var(--accent); border-color: var(--accent); color: white; }
.cal-strip-dow { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.cal-strip-day.selected .cal-strip-dow { color: rgba(255,255,255,.75); }
.cal-strip-num { font-size: 17px; font-weight: 700; color: var(--ink); }
.cal-strip-day.selected .cal-strip-num { color: white; }
.cal-strip-mo { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.cal-strip-day.selected .cal-strip-mo { color: rgba(255,255,255,.75); }

/* Right (times) */
.scheduler-right { padding: 24px 20px; background: var(--surface-2); }
.cal-times { height: 100%; display: flex; flex-direction: column; }
.cal-times-header { margin-bottom: 14px; }
.cal-times-date { font-weight: 600; font-size: 14px; color: var(--ink); }
.cal-times-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cal-times-list {
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
  max-height: 430px;
}
.cal-times-list::-webkit-scrollbar { width: 6px; }
.cal-times-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

.cal-time-row { display: flex; gap: 8px; }
.cal-time-main {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
  transition: all .12s;
}
.cal-time-main:hover { border-color: var(--accent); color: var(--accent); }
.cal-time-row.selected .cal-time-main {
  flex: 1;
  background: var(--accent); color: white; border-color: var(--accent);
}
.cal-time-next {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  transition: transform .12s;
}
.cal-time-next:hover { transform: translateX(2px); }

.cal-times.empty-state {
  align-items: center; justify-content: center; text-align: center;
  padding: 40px 20px; color: var(--muted);
}
.empty-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 14px;
}
.empty-title { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 4px; }
.empty-sub { font-size: 13px; color: var(--muted); }

/* ========== Form step ========== */
.cal-form { display: grid; grid-template-columns: 300px 1fr; min-height: 520px; }
.cal-form-summary {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: var(--surface-2);
  display: flex; flex-direction: column;
}
.cal-form-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 6px 10px 6px 4px; border-radius: 6px; width: fit-content;
  margin-bottom: 24px;
}
.cal-form-back:hover { color: var(--ink); }
.cal-form-meta { display: flex; flex-direction: column; gap: 12px; }
.cal-form-meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
}
.cal-form-meta-row svg { color: var(--accent); }

.cal-form-fields { padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.cal-form-row { display: flex; flex-direction: column; gap: 6px; }
.cal-form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cal-form-row label { display: flex; flex-direction: column; gap: 6px; }
.cal-form-row label span {
  font-size: 12px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.01em;
}
.cal-form-row label span em { color: var(--muted); font-weight: 500; font-style: normal; }
.cal-form-row input, .cal-form-row select, .cal-form-row textarea {
  font-family: inherit; font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .12s, box-shadow .12s;
}
.cal-form-row input:focus, .cal-form-row select:focus, .cal-form-row textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.cal-form-row textarea { resize: vertical; font-family: inherit; }
.cal-form-consent { font-size: 12px; color: var(--muted); }
.cal-form-submit {
  margin-top: 8px;
  padding: 13px 16px;
  background: var(--accent); color: white;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: background .12s, transform .08s;
}
.cal-form-submit:hover:not(:disabled) { background: var(--accent-2); }
.cal-form-submit:active:not(:disabled) { transform: translateY(1px); }
.cal-form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ========== Confirmation ========== */
.cal-confirm {
  padding: 56px 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cal-confirm-badge {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.cal-confirm-title {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.cal-confirm-sub { font-size: 15px; color: var(--muted); max-width: 50ch; }
.cal-confirm-card {
  margin-top: 16px;
  width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 20px;
}
.cal-confirm-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.cal-confirm-row:last-child { border-bottom: none; }
.cal-confirm-row .k { color: var(--muted); font-weight: 500; }
.cal-confirm-row .v { color: var(--ink); font-weight: 600; text-align: right; }
.cal-confirm-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.cal-confirm-next {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(230, 122, 3, 0.20);
}
.cal-confirm-next:hover { background: var(--accent-2); }
.cal-confirm-reset {
  margin-top: 10px;
  font-size: 13px; color: var(--accent); font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
}
.cal-confirm-reset:hover { background: var(--accent-soft); }

/* ========== Logo bar ========== */
.logo-bar {
  max-width: 1180px; margin: 56px auto 0;
  padding: 0 32px;
  text-align: center;
}
.logo-bar-label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.logo-bar-track {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.logo-pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface-2);
}

/* ========== Feature grid ========== */
.features {
  max-width: 1180px; margin: 120px auto 0;
  padding: 0 32px;
}
.section-header {
  max-width: 780px; margin: 0 auto 56px; text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.025em; font-weight: 700;
  color: var(--ink); margin: 0 0 16px;
  text-wrap: balance;
}
.section-header p {
  font-size: 17px; line-height: 1.55; color: var(--muted);
  margin: 0; text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--line);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-title {
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px; line-height: 1.55; color: var(--muted);
  margin-bottom: 16px;
}
.feature-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
}
.feature-bullets svg { color: var(--accent); flex-shrink: 0; }

/* ========== Footer CTA ========== */
.footer-cta {
  margin-top: 120px;
  background: var(--ink);
  color: var(--bg);
}
html[data-theme="dark"] .footer-cta {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.footer-cta-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 80px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.footer-cta-copy .eyebrow {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
html[data-theme="dark"] .footer-cta-copy .eyebrow { background: var(--accent-soft); color: var(--accent); }
.footer-cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px); line-height: 1.1;
  letter-spacing: -0.025em; font-weight: 700;
  color: white; margin: 16px 0 12px; text-wrap: balance;
}
html[data-theme="dark"] .footer-cta-copy h2 { color: var(--ink); }
.footer-cta-copy p {
  font-size: 16px; color: rgba(255,255,255,0.7); margin: 0; max-width: 52ch;
}
html[data-theme="dark"] .footer-cta-copy p { color: var(--muted); }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  background: white; color: var(--ink);
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: transform .12s;
  flex-shrink: 0;
}
.footer-cta-btn:hover { transform: translateY(-1px); }
html[data-theme="dark"] .footer-cta-btn { background: var(--accent); color: white; }

.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 16px;
}
html[data-theme="dark"] .footer-bottom { border-top-color: var(--line); color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.footer-logo { width: 132px; height: auto; display: block; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.footer-links a:hover { color: white; }
html[data-theme="dark"] .footer-links a:hover { color: var(--ink); }

/* ========== Tweaks panel ========== */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 280px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-pop);
  padding: 18px;
  z-index: 9999;
  font-family: var(--font);
}
.tweaks-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.tweaks-title { font-weight: 600; font-size: 13px; color: var(--ink); }
.tweaks-close {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center; color: var(--muted);
}
.tweaks-close:hover { background: var(--surface); }
.tweaks-group { margin-bottom: 14px; }
.tweaks-group:last-child { margin-bottom: 0; }
.tweaks-label {
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-swatch {
  width: 28px; height: 28px; border-radius: 999px;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: transform .1s;
}
.tweaks-swatch.active {
  border-color: var(--ink);
  transform: scale(1.1);
}
.tweaks-seg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--surface); padding: 3px; border-radius: 8px;
}
.tweaks-seg button {
  padding: 7px 10px; font-size: 12px; font-weight: 500;
  border-radius: 6px; color: var(--muted);
}
.tweaks-seg button.active { background: var(--bg); color: var(--ink); font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.tweaks-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg); color: var(--ink);
  font-size: 13px; font-family: inherit;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .scheduler-body { grid-template-columns: 1fr 320px; }
  .scheduler-left { display: none; }
}
@media (max-width: 768px) {
  .top-strip { flex-direction: column; gap: 4px; padding-top: 12px; font-size: 13px; }
  .topnav { flex-wrap: wrap; padding-top: 14px; gap: 14px; }
  .topnav-links { order: 3; width: 100%; overflow-x: auto; gap: 20px; padding-bottom: 4px; }
  .topnav-right { margin-left: auto; gap: 10px; }
  .topnav-discover { display: none; }
  .scheduler-body { grid-template-columns: 1fr; }
  .scheduler-right { border-top: 1px solid var(--line); }
  .scheduler-middle { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .cal-form { grid-template-columns: 1fr; }
  .cal-form-summary { border-right: none; border-bottom: 1px solid var(--line); }
  .cal-form-row.two { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; padding: 48px 28px; }
}
