:root{
  --st-ink:#102033;
  --st-ink-2:#19304a;
  --st-paper:#f7f2e8;
  --st-panel:#ffffff;
  --st-line:#d9dfdf;
  --st-muted:#607080;
  --st-teal:#087c72;
  --st-mint:#68d8c8;
  --st-amber:#ffb454;
  --st-coral:#e85f5c;
  --st-radius:8px;
  --st-shadow:0 18px 44px rgba(16,32,51,.13);
  --st-font:Inter,Segoe UI,Roboto,Arial,sans-serif;
}
*{box-sizing:border-box}
.st-body [hidden]{display:none!important}
html{scroll-behavior:smooth}
body.st-body{
  margin:0;
  color:var(--st-ink);
  background:var(--st-paper);
  font-family:var(--st-font);
  line-height:1.55;
}
a{color:inherit}
.st-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 24px;
  background:var(--st-paper);
  border-bottom:1px solid rgba(16,32,51,.1);
}
.st-brand img{display:block;width:178px;height:auto}
.st-nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.st-nav a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  color:var(--st-ink-2);
  font-weight:700;
  font-size:.94rem;
}
.st-nav a:hover,.st-nav a[aria-current="page"]{background:#fff}
.st-nav .st-nav-cta{background:var(--st-ink);color:#fff}
.st-nav .st-nav-cta:hover{background:var(--st-teal)}
.st-section{padding:54px 24px}
.st-wrap{width:min(1160px,100%);margin:0 auto}
.st-narrow{width:min(760px,100%);margin:0 auto}
.st-hero{
  position:relative;
  overflow:hidden;
  min-height:680px;
  display:flex;
  align-items:center;
  color:#fff;
  background:var(--st-ink);
}
.st-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(16,32,51,.94), rgba(16,32,51,.74) 48%, rgba(16,32,51,.34)),
    url('/assets/img/uploads/pike-house-retreat-exterior-clean-1600.webp') center/cover no-repeat;
  opacity:.82;
}
.st-hero-board{
  position:absolute;
  right:24px;
  bottom:32px;
  width:min(620px,48%);
  min-height:420px;
  padding:16px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  background:#f9fbfb;
  color:var(--st-ink);
  box-shadow:var(--st-shadow);
}
.st-board-top{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:12px}
.st-board-pill{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--st-line);border-radius:8px;padding:5px 8px;font-size:.8rem;color:var(--st-muted);background:#fff}
.st-board-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:12px}
.st-calendar,.st-sync-panel,.st-event-panel{border:1px solid var(--st-line);border-radius:8px;background:#fff;padding:12px}
.st-calendar-head{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;color:var(--st-muted);font-size:.76rem;margin-bottom:6px}
.st-calendar-days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.st-day{min-height:32px;border-radius:6px;background:#edf3f3;border:1px solid #e4eeee;font-size:.75rem;padding:5px}
.st-day.is-booked{background:#ffe4d0;border-color:#ffc991}
.st-day.is-direct{background:#dff7f1;border-color:#9ce5d8}
.st-day.is-alert{background:#ffe2e2;border-color:#f0a6a6}
.st-sync-row{display:flex;align-items:center;justify-content:space-between;gap:8px;border-bottom:1px solid #edf0f0;padding:8px 0;font-size:.9rem}
.st-sync-row:last-child{border-bottom:0}
.st-dot{width:10px;height:10px;border-radius:50%;background:var(--st-teal);display:inline-block}
.st-dot.warn{background:var(--st-amber)}
.st-dot.err{background:var(--st-coral)}
.st-hero-copy{
  position:relative;
  z-index:2;
  width:min(680px,100%);
  padding:76px 24px 76px max(24px,calc((100vw - 1160px) / 2));
}
.st-eyebrow{
  margin:0 0 14px;
  color:var(--st-mint);
  font-size:.86rem;
  font-weight:800;
  text-transform:uppercase;
}
.st-hero h1{
  margin:0 0 16px;
  font-size:4rem;
  line-height:1.02;
  max-width:700px;
}
.st-lead{font-size:1.16rem;max-width:620px;margin:0 0 22px;color:rgba(255,255,255,.9)}
.st-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.st-hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
  max-width:620px;
}
.st-hero-proof span{
  display:inline-flex;
  align-items:center;
  column-gap:.25em;
  min-height:36px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:8px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:.9rem;
  font-weight:700;
}
.st-hero-proof strong{color:var(--st-amber)}
.st-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 14px;
  border-radius:8px;
  border:1px solid transparent;
  background:var(--st-amber);
  color:var(--st-ink);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
.st-button:hover{background:var(--st-mint);text-decoration:none}
.st-button.secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.38)}
.st-button.secondary:hover{background:#fff;color:var(--st-ink)}
.st-button.ghost{background:#fff;color:var(--st-ink);border-color:var(--st-line)}
.st-button.ghost:hover{background:var(--st-paper)}
.st-band{background:#fff;border-top:1px solid var(--st-line);border-bottom:1px solid var(--st-line)}
.st-section h2{font-size:2.25rem;line-height:1.12;margin:0 0 12px}
.st-section h3{margin:0 0 8px;font-size:1.2rem}
.st-muted{color:var(--st-muted)}
.st-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.st-card{
  background:var(--st-panel);
  border:1px solid var(--st-line);
  border-radius:8px;
  padding:18px;
  box-shadow:0 10px 24px rgba(16,32,51,.06);
}
.st-card.featured{border-color:var(--st-teal);box-shadow:0 12px 34px rgba(8,124,114,.18)}
.st-card p{margin:0}
.st-chip,.st-plan-tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  margin-bottom:12px;
  padding:5px 8px;
  border-radius:8px;
  background:#e9f8f5;
  color:#0f7068;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
}
.st-chip.warn{background:#fff2da;color:#8a5a00}
.st-chip.calm,.st-plan-tag.muted{background:#eef1f3;color:var(--st-muted)}
.st-plan-tag{margin-bottom:10px}
.st-metric-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:24px}
.st-metric{background:#fff;border:1px solid var(--st-line);border-radius:8px;padding:16px}
.st-metric strong{display:block;font-size:1.7rem;line-height:1.05;color:var(--st-teal);margin-bottom:4px}
.st-product-layout{display:grid;grid-template-columns:minmax(0,.95fr) minmax(320px,1.05fr);gap:22px;align-items:start}
.st-capability-map{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.st-route-grid,.st-disclosure-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.st-stack{display:flex;flex-direction:column;gap:14px}
.st-flow{counter-reset:flow;display:grid;gap:12px}
.st-flow-step{
  position:relative;
  padding:16px 16px 16px 58px;
  background:#fff;
  border:1px solid var(--st-line);
  border-radius:8px;
}
.st-flow-step::before{
  counter-increment:flow;
  content:counter(flow);
  position:absolute;
  left:16px;
  top:16px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:var(--st-ink);
  color:#fff;
  font-weight:800;
}
.st-pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:16px;margin-top:22px}
.st-price{display:flex;align-items:baseline;gap:6px;margin:14px 0}
.st-price strong{font-size:2rem;line-height:1;color:var(--st-ink)}
.st-compare-table{
  display:grid;
  border:1px solid var(--st-line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 24px rgba(16,32,51,.06);
}
.st-compare-row{
  display:grid;
  grid-template-columns:1fr 1.15fr 1.15fr 1fr;
  border-top:1px solid var(--st-line);
}
.st-compare-row:first-child{border-top:0}
.st-compare-row span{
  padding:13px 14px;
  border-left:1px solid var(--st-line);
  color:var(--st-muted);
}
.st-compare-row span:first-child{
  border-left:0;
  color:var(--st-ink);
  font-weight:800;
}
.st-compare-head{background:var(--st-ink);color:#fff}
.st-compare-head span,.st-compare-head span:first-child{color:#fff}
.st-feature-list{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.st-feature-list li{position:relative;padding-left:22px}
.st-feature-list li::before{content:"";position:absolute;left:0;top:.55em;width:9px;height:9px;border-radius:50%;background:var(--st-teal)}
.st-form{
  display:grid;
  gap:14px;
  background:#fff;
  border:1px solid var(--st-line);
  border-radius:8px;
  padding:20px;
  box-shadow:var(--st-shadow);
}
.st-field-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.st-form label{font-weight:800;font-size:.92rem;color:var(--st-ink)}
.st-form input,.st-form select,.st-form textarea{
  width:100%;
  margin-top:6px;
  border:1px solid #bdc9ca;
  border-radius:8px;
  min-height:44px;
  padding:10px 11px;
  font:inherit;
  color:var(--st-ink);
  background:#fff;
}
.st-form textarea{min-height:120px;resize:vertical}
.st-alert{border:1px solid #cde8e3;background:#effbf8;border-radius:8px;padding:12px;margin:0 0 14px}
.st-alert.error{border-color:#f0b0b0;background:#fff0f0}
.st-check-list{list-style:none;padding:0;margin:24px 0;display:grid;gap:11px}
.st-check-list li{position:relative;padding-left:26px;font-weight:700}
.st-check-list li::before{content:"";position:absolute;left:0;top:.45em;width:12px;height:7px;border-left:3px solid var(--st-teal);border-bottom:3px solid var(--st-teal);transform:rotate(-45deg)}
.st-trial-hero{min-height:calc(100vh - 78px);display:flex;align-items:center;background:#eef5f3}
.st-trial-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);gap:54px;align-items:center}
.st-trial-promise h1{font-size:3.35rem;line-height:1.02;margin:16px 0}
.st-trial-promise .st-lead{color:var(--st-ink-2)}
.st-trust-line{border-left:4px solid var(--st-coral);padding:10px 14px;background:#fff}
.st-pricing-proof{justify-content:center;margin-left:auto;margin-right:auto}
.st-pricing-proof span{border-color:var(--st-line);background:#fff;color:var(--st-ink)}
.st-pricing-proof span strong{color:var(--st-teal)}
.st-form-heading{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-bottom:12px;border-bottom:1px solid var(--st-line)}
.st-form-heading span{color:var(--st-teal);font-weight:900;text-transform:uppercase;font-size:.8rem}
.st-field-help,.st-form-foot{margin:4px 0 0;color:var(--st-muted);font-size:.84rem}
.st-check-control{display:grid;grid-template-columns:20px 1fr;gap:9px;align-items:start}
.st-check-control input{width:18px;min-height:18px;margin:3px 0 0}
.st-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.st-auth-section{min-height:calc(100vh - 180px);display:flex;align-items:center;background:#eef5f3}
.st-auth-layout{width:min(960px,100%);margin:0 auto;display:grid;grid-template-columns:minmax(0,.85fr) minmax(360px,.65fr);gap:54px;align-items:center}
.st-auth-layout h1,.st-auth-single h1{font-size:2.65rem;line-height:1.05;margin:14px 0 12px}
.st-auth-form{width:100%}
.st-auth-single{width:min(520px,100%);margin:0 auto}
.st-kicker{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--st-line);border-radius:8px;padding:6px 9px;background:#fff;color:var(--st-muted);font-weight:800;font-size:.8rem;text-transform:uppercase}
.st-footer{
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
  padding:30px 24px;
  background:var(--st-ink);
  color:#dce7ea;
}
.st-footer div,.st-footer nav{width:min(520px,100%)}
.st-footer img{width:164px;background:#fff;border-radius:8px;padding:6px;margin-bottom:12px}
.st-footer nav{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.st-footer a{color:#fff;text-decoration:none;font-weight:700}
.st-footer a:hover{text-decoration:underline}

/* Signed-in workspace */
.st-account-body{background:#f3f6f5;min-height:100vh}
.st-account-header{min-height:72px;display:grid;grid-template-columns:220px 1fr auto;align-items:center;gap:20px;padding:12px max(22px,calc((100vw - 1240px)/2));background:var(--st-ink);color:#fff}
.st-account-header .st-brand img{width:174px;background:#fff;border-radius:8px;padding:5px}
.st-account-identity{display:flex;flex-direction:column;min-width:0}
.st-account-identity strong,.st-account-identity span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.st-account-identity span{font-size:.82rem;color:#b9cad1;text-transform:capitalize}
.st-account-signout{font-size:.88rem;font-weight:800;color:#fff;text-decoration:none}
.st-account-signout:hover{text-decoration:underline}
.st-account-nav{position:sticky;top:0;z-index:18;display:flex;gap:2px;padding:0 max(22px,calc((100vw - 1240px)/2));overflow-x:auto;background:#fff;border-bottom:1px solid var(--st-line)}
.st-account-nav a{display:inline-flex;align-items:center;min-height:48px;padding:8px 14px;border-bottom:3px solid transparent;color:var(--st-muted);font-size:.9rem;font-weight:800;text-decoration:none;white-space:nowrap}
.st-account-nav a:hover,.st-account-nav a[aria-current="page"]{color:var(--st-ink);border-bottom-color:var(--st-teal)}
.st-account-main{width:min(1240px,calc(100% - 44px));margin:0 auto;padding:34px 0 64px}
.st-account-title-row{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:24px}
.st-account-title-row>div:first-child{min-width:0}
.st-account-title-row h1{font-size:2.25rem;line-height:1.05;margin:10px 0 6px}
.st-account-title-row p{margin:0;color:var(--st-muted)}
.st-title-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.st-button-small{min-height:40px;padding:8px 13px;font-size:.9rem}
.st-text-link{font-weight:800;color:var(--st-teal)}
.st-account-banner{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:22px;padding:13px 16px;border:1px solid #a9ddd5;border-left:5px solid var(--st-teal);border-radius:8px;background:#eaf8f5}
.st-account-banner div{display:flex;flex-direction:column}
.st-account-banner span{font-size:.9rem;color:var(--st-muted)}
.st-account-banner-welcome{border-color:#ffd9aa;border-left-color:var(--st-amber);background:#fff7e9}
.st-account-banner-warning{border-color:#f0b0b0;border-left-color:var(--st-coral);background:#fff0f0}
.st-account-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-bottom:20px;border:1px solid var(--st-line);border-radius:8px;overflow:hidden;background:var(--st-line)}
.st-account-stats a{display:flex;flex-direction:column;min-width:0;padding:18px;background:#fff;text-decoration:none}
.st-account-stats a:hover{background:#f9fbfa}
.st-account-stats strong{overflow:hidden;text-overflow:ellipsis;font-size:1.45rem;line-height:1.15;text-transform:capitalize}
.st-account-stats span{margin-top:4px;color:var(--st-muted);font-size:.82rem}
.st-account-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);gap:18px;align-items:start}
.st-account-grid-wide{grid-template-columns:minmax(0,1.35fr) minmax(330px,.65fr)}
.st-calendar-layout{grid-template-columns:minmax(300px,.6fr) minmax(0,1.4fr)}
.st-settings-layout{grid-template-columns:minmax(340px,.8fr) minmax(280px,.45fr)}
.st-account-panel{min-width:0;border:1px solid var(--st-line);border-radius:8px;background:#fff;padding:20px}
.st-panel-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px}
.st-panel-heading h2{font-size:1.25rem;line-height:1.2;margin:8px 0 0}
.st-panel-heading p{margin:6px 0 0;color:var(--st-muted);font-size:.9rem}
.st-panel-heading>a{font-size:.86rem;font-weight:800;color:var(--st-teal)}
.st-account-form-panel{border-top:4px solid var(--st-amber)}
.st-form-section{margin-top:18px}
.st-personal-calendar-panel{border-top-color:var(--st-teal)}
.st-method-badge{display:inline-flex;align-items:center;min-height:30px;padding:5px 8px;border-radius:8px;background:#e9f8f5;color:#0f7068;font-size:.76rem;font-weight:900;text-transform:uppercase;white-space:nowrap}
.st-calendar-route{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin:0 0 18px;border:1px solid var(--st-line);border-radius:8px;overflow:hidden;background:var(--st-line)}
.st-calendar-route-three{grid-template-columns:repeat(3,minmax(0,1fr))}
.st-calendar-route>div{padding:14px;background:#f7faf9}
.st-calendar-route strong,.st-calendar-route span{display:block}
.st-calendar-route strong{font-size:.88rem}
.st-calendar-route span{margin-top:3px;color:var(--st-muted);font-size:.8rem;line-height:1.45}
.st-calendar-privacy-note{margin:0;padding:12px 14px;border-left:4px solid var(--st-amber);background:#fff7e9;color:var(--st-muted);font-size:.82rem;line-height:1.5}
.st-calendar-privacy-note strong{color:var(--st-ink)}
.st-setup-list{list-style:none;padding:0;margin:0;display:grid}
.st-setup-list li{display:grid;grid-template-columns:36px 1fr auto;align-items:center;gap:12px;padding:14px 0;border-top:1px solid #edf0ef}
.st-setup-list li:first-child{border-top:0}
.st-setup-list>li>span{display:grid;place-items:center;width:30px;height:30px;border-radius:8px;background:var(--st-ink);color:#fff;font-weight:900}
.st-setup-list li.is-done>span{background:var(--st-teal)}
.st-setup-list strong{display:block}
.st-setup-list p{margin:1px 0 0;color:var(--st-muted);font-size:.84rem}
.st-setup-list a{font-size:.88rem;font-weight:800;color:var(--st-teal)}
.st-health-list{display:grid}
.st-health-list>div{display:grid;grid-template-columns:12px 1fr auto;align-items:center;gap:10px;padding:12px 0;border-top:1px solid #edf0ef}
.st-health-list>div:first-child{border-top:0}
.st-health-list strong,.st-health-list small{display:block}
.st-health-list small{color:var(--st-muted)}
.st-health-list time{font-size:.75rem;color:var(--st-muted)}
.st-status-dot{display:inline-block;width:10px;height:10px;border-radius:50%;background:#a9b2b7}
.st-status-connected,.st-status-ready{background:var(--st-teal)}
.st-status-error{background:var(--st-coral)}
.st-status-setup,.st-status-pending{background:var(--st-amber)}
.st-empty-state{padding:34px 18px;text-align:center;border:1px dashed #bdc9ca;border-radius:8px;background:#fafcfb}
.st-empty-state strong{display:block;font-size:1.05rem}
.st-empty-state p{margin:5px 0 10px;color:var(--st-muted)}
.st-empty-state a{font-weight:800;color:var(--st-teal)}
.st-record-list,.st-channel-list,.st-event-list{display:grid}
.st-record-row{display:grid;grid-template-columns:1fr auto;align-items:center;gap:16px;padding:15px 0;border-top:1px solid #edf0ef}
.st-record-row:first-child{border-top:0}
.st-record-main strong,.st-record-main span{display:block}
.st-record-main span{color:var(--st-muted);font-size:.86rem}
.st-record-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.st-record-actions a,.st-link-button{padding:0;border:0;background:transparent;color:var(--st-teal);font:inherit;font-size:.86rem;font-weight:800;text-decoration:underline;cursor:pointer}
.st-link-danger{color:#b43c3a}
.st-code-row{align-items:start}
.st-code-heading{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin-bottom:3px}
.st-code-heading>strong{font-size:1rem}
.st-status-pill{display:inline-flex;align-items:center;min-height:24px;padding:3px 7px;border-radius:7px;background:#eef1f3;color:#58666b;font-size:.7rem;font-weight:900;text-transform:uppercase}
.st-status-current{background:#e4f6f2;color:#0f7068}
.st-status-scheduled{background:#fff2d9;color:#875a08}
.st-status-ended{background:#eef1f3;color:#66747a}
.st-status-previous{background:#eef1f3;color:#66747a}
.st-code-row .st-record-main small{display:block;margin-top:4px;color:var(--st-muted);font-size:.78rem;line-height:1.45}
.st-code-row code{font-size:.78rem;color:var(--st-ink)}
.st-code-publish-state{margin-top:8px!important;padding-top:7px;border-top:1px dashed #d7dfdf}
.st-code-actions{justify-content:flex-end;max-width:190px}
.st-form-actions-wrap{flex-wrap:wrap}
.st-access-code-guide{margin-top:18px}
.st-access-code-guide p{margin:5px 0 0}
.st-compact-form{display:grid;gap:14px}
.st-compact-form-wide{max-width:920px}
.st-compact-form label{font-size:.88rem;font-weight:800}
.st-compact-form input,.st-compact-form select,.st-compact-form textarea,.st-inline-filter select{width:100%;min-height:42px;margin-top:5px;padding:9px 10px;border:1px solid #bdc9ca;border-radius:8px;background:#fff;color:var(--st-ink);font:inherit}
.st-compact-form textarea{min-height:112px;resize:vertical;line-height:1.5}
.st-label-note{color:var(--st-muted);font-size:.76rem;font-weight:500}
.st-field-help{display:block;margin-top:6px;color:var(--st-muted);font-size:.8rem;font-weight:500;line-height:1.4}
.st-provider-guide{padding:13px 14px;border-left:4px solid var(--st-mint);background:#f1faf8;color:var(--st-ink);font-size:.86rem;line-height:1.5}
.st-calendar-wizard{display:grid;gap:14px;padding:16px 0;border-top:1px solid var(--st-line);border-bottom:1px solid var(--st-line)}
.st-calendar-wizard-heading{display:flex;align-items:center;justify-content:space-between;gap:18px}
.st-calendar-wizard-heading strong,.st-calendar-wizard-heading span{display:block}
.st-calendar-wizard-heading span{margin-top:3px;color:var(--st-muted);font-size:.82rem}
.st-calendar-wizard-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;margin:0;padding:0;list-style:none;background:var(--st-line)}
.st-calendar-wizard-steps li{display:grid;grid-template-columns:28px 1fr;align-content:start;gap:9px;min-width:0;padding:13px;background:#f8faf9}
.st-calendar-wizard-steps li>span{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:var(--st-ink);color:#fff;font-size:.78rem;font-weight:900}
.st-calendar-wizard-steps strong{display:block;font-size:.84rem}
.st-calendar-wizard-steps p{margin:3px 0 0;color:var(--st-muted);font-size:.78rem;line-height:1.45}
.st-sykes-browser-check{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid var(--st-line);border-bottom:1px solid var(--st-line)}
.st-sykes-browser-check strong,.st-sykes-browser-check span{display:block}
.st-sykes-browser-check span{margin-top:3px;color:var(--st-muted);font-size:.8rem;line-height:1.45}
.st-sykes-browser-check a{flex:0 0 auto;color:var(--st-teal);font-size:.82rem;font-weight:900}
.st-inline-filter{display:flex;align-items:flex-end;gap:8px;min-width:min(320px,100%)}
.st-inline-filter label{font-size:.78rem;font-weight:900;color:var(--st-muted)}
.st-browser-bridge-panel{margin-top:18px;border-top:4px solid var(--st-teal)}
.st-browser-bridge-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;margin:0;padding:0;list-style:none;border:1px solid var(--st-line);border-radius:8px;overflow:hidden;background:var(--st-line)}
.st-browser-bridge-steps li{display:grid;grid-template-columns:30px 1fr;align-content:start;gap:10px;padding:14px;background:#f8faf9}
.st-browser-bridge-steps li>span{display:grid;place-items:center;width:28px;height:28px;border-radius:7px;background:var(--st-ink);color:#fff;font-size:.78rem;font-weight:900}
.st-browser-bridge-steps strong{display:block;font-size:.86rem}
.st-browser-bridge-steps p{margin:3px 0 0;color:var(--st-muted);font-size:.78rem;line-height:1.45}
.st-bookmarklet-ready{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:14px;padding:14px;border:1px solid #a9ddd5;border-left:5px solid var(--st-teal);border-radius:8px;background:#eaf8f5}
.st-bookmarklet-ready strong,.st-bookmarklet-ready span{display:block}
.st-bookmarklet-ready span{margin-top:3px;color:var(--st-muted);font-size:.8rem}
.st-bookmarklet-ready>a{flex:0 0 auto;cursor:grab}
.st-bridge-revoke{margin-top:12px;text-align:right}
.st-arrival-history-grid{margin-top:18px}
.st-arrival-version{margin-top:9px;font-size:.82rem}
.st-arrival-version summary{color:var(--st-teal);font-weight:800;cursor:pointer}
.st-arrival-version strong{margin-top:10px;font-size:.78rem}
.st-arrival-version p{margin:3px 0 0;white-space:pre-line;color:var(--st-muted);line-height:1.5}
.st-bridge-receipt-body{min-height:100vh;display:grid;place-items:center;padding:24px;background:#f4f7f6}
.st-bridge-receipt{width:min(520px,100%);padding:32px;border:1px solid var(--st-line);border-top:5px solid var(--st-teal);border-radius:8px;background:#fff;box-shadow:0 18px 50px rgba(25,45,44,.1);text-align:center}
.st-bridge-receipt .st-brand{display:inline-flex;margin-bottom:26px}
.st-bridge-receipt .st-brand img{width:176px;height:auto}
.st-bridge-receipt-mark{display:grid;place-items:center;width:48px;height:48px;margin:0 auto 14px;border-radius:50%;background:var(--st-teal);color:#fff;font-size:1.4rem;font-weight:900}
.st-bridge-receipt-mark.is-error{background:var(--st-coral)}
.st-bridge-receipt h1{margin:0;font-size:1.8rem}
.st-bridge-receipt p{margin:10px 0;color:var(--st-muted);line-height:1.55}
.st-bridge-receipt .st-bridge-receipt-note{margin-bottom:22px;padding:10px 12px;border-left:4px solid var(--st-amber);background:#fff7e9;text-align:left;font-size:.86rem}
.st-money-input{display:grid;grid-template-columns:32px 1fr;align-items:center;margin-top:5px;border:1px solid #bdc9ca;border-radius:8px;overflow:hidden;background:#f7faf9}
.st-money-input span{text-align:center;color:var(--st-muted)}
.st-money-input input{margin:0;border:0;border-left:1px solid #d5dddd;border-radius:0}
.st-form-actions{display:flex;align-items:center;gap:14px}
.st-form-actions>a{font-size:.88rem;font-weight:800;color:var(--st-muted)}
.st-channel-row{display:grid;grid-template-columns:minmax(220px,.72fr) minmax(300px,1.28fr) auto;align-items:center;gap:18px;padding:18px 0;border-top:1px solid #edf0ef}
.st-channel-row:first-child{border-top:0}
.st-channel-row:target{margin:0 -10px;padding-right:10px;padding-left:10px;background:#effbf8;outline:2px solid var(--st-mint);outline-offset:-2px}
.st-channel-summary{display:grid;grid-template-columns:12px 1fr;align-items:start;gap:10px;min-width:0}
.st-channel-summary strong,.st-channel-summary span,.st-channel-summary small{display:block;overflow:hidden;text-overflow:ellipsis}
.st-channel-summary span,.st-channel-summary small{color:var(--st-muted);font-size:.8rem;line-height:1.45}
.st-channel-summary .st-connection-kind{display:inline-flex;width:max-content;max-width:100%;margin-bottom:3px;padding:2px 6px;border-radius:6px;background:#eef1f3;color:var(--st-muted);font-size:.68rem;font-weight:900;text-transform:uppercase}
.st-feed-box{min-width:0}
.st-feed-box label{display:block;margin-bottom:4px;color:var(--st-muted);font-size:.74rem;font-weight:800;text-transform:uppercase}
.st-feed-box>div{display:grid;grid-template-columns:1fr auto}
.st-feed-box input{min-width:0;min-height:38px;padding:8px;border:1px solid #bdc9ca;border-right:0;border-radius:8px 0 0 8px;background:#f7faf9;color:var(--st-muted)}
.st-copy-button{min-width:58px;border:1px solid #bdc9ca;border-radius:0 8px 8px 0;background:#fff;color:var(--st-ink);font-weight:800;cursor:pointer}
.st-record-actions .st-link-primary{color:var(--st-ink);text-decoration-thickness:2px}
.st-check-row{display:grid!important;grid-template-columns:20px 1fr;gap:9px;align-items:start}
.st-check-row input{width:18px!important;min-height:18px!important;margin:2px 0 0!important}
.st-membership-settings .st-panel-heading{margin-bottom:12px}
.st-booking-list{display:grid}
.st-booking-row{padding:22px 0;border-top:1px solid #dfe7e5}
.st-booking-row:first-child{padding-top:0;border-top:0}
.st-booking-row:target{margin:0 -10px;padding-right:10px;padding-left:10px;background:#effbf8;outline:2px solid var(--st-mint);outline-offset:-2px}
.st-booking-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}
.st-booking-heading h3{margin:5px 0 3px;font-size:1.16rem}
.st-booking-heading p{margin:0;color:var(--st-muted);font-size:.86rem}
.st-booking-heading .st-connection-kind{display:inline-flex;padding:2px 6px;border-radius:6px;background:#eef1f3;color:var(--st-muted);font-size:.68rem;font-weight:900;text-transform:uppercase}
.st-booking-badges{display:flex;justify-content:flex-end;gap:6px;flex-wrap:wrap}
.st-booking-badges>span{display:inline-flex;align-items:center;min-height:28px;padding:4px 8px;border:1px solid var(--st-line);border-radius:6px;background:#f7faf9;color:var(--st-muted);font-size:.74rem;font-weight:800}
.st-booking-badges .st-membership-status{border-color:#f1ca91;background:#fff7e9;color:#79521d}
.st-booking-badges .st-membership-verified{border-color:#a9ddd5;background:#eaf8f5;color:#0f7068}
.st-booking-details{display:grid;grid-template-columns:1.1fr 1.1fr .6fr;gap:1px;margin:15px 0;border:1px solid var(--st-line);border-radius:8px;overflow:hidden;background:var(--st-line)}
.st-booking-details>div{min-width:0;padding:13px;background:#f9fbfa}
.st-booking-details span,.st-booking-details strong,.st-booking-details a,.st-booking-details small{display:block;overflow-wrap:anywhere}
.st-booking-details span{margin-bottom:3px;color:var(--st-muted);font-size:.72rem;font-weight:800;text-transform:uppercase}
.st-booking-details strong{font-size:.88rem}
.st-booking-details a,.st-booking-details small{margin-top:3px;color:var(--st-muted);font-size:.79rem}
.st-booking-edit{margin:0 0 14px;border:1px solid var(--st-line);border-radius:8px;background:#fff}
.st-booking-edit summary{padding:11px 13px;color:var(--st-teal);font-size:.84rem;font-weight:800;cursor:pointer}
.st-booking-edit[open] summary{border-bottom:1px solid var(--st-line)}
.st-booking-edit form{padding:14px}
.st-membership-workflow{padding:15px;border-left:4px solid var(--st-amber);background:#fff8ec}
.st-membership-workflow>div:first-child strong,.st-membership-workflow>div:first-child span{display:block}
.st-membership-workflow>div:first-child span{margin-top:2px;color:var(--st-muted);font-size:.82rem}
.st-membership-form{margin-top:14px}
.st-membership-form input,.st-membership-form select{background:#fff}
.st-membership-actions{margin-top:12px}
.st-booking-privacy{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:11px;color:var(--st-muted);font-size:.78rem}
.st-booking-disclosure{max-width:900px;margin:16px 0 0;color:var(--st-muted);font-size:.76rem;line-height:1.5}
.st-sykes-disclosure{margin:10px 0 0;padding-top:10px;border-top:1px solid var(--st-line);color:var(--st-muted);font-size:.76rem;line-height:1.45}
.st-connection-note{max-width:220px;color:var(--st-muted);font-size:.78rem;line-height:1.4}
.st-inline-filter{display:flex;align-items:center;gap:8px}
.st-inline-filter label{font-size:.8rem;font-weight:800;color:var(--st-muted)}
.st-inline-filter select{width:auto;min-width:160px;margin:0}
.st-event-row{display:grid;grid-template-columns:140px 1fr auto;align-items:center;gap:18px;padding:14px 0;border-top:1px solid #edf0ef}
.st-event-row:first-child{border-top:0}
.st-event-row time strong,.st-event-row time span,.st-event-row>div strong,.st-event-row>div span{display:block}
.st-event-row time strong{font-size:.92rem}
.st-event-row time span,.st-event-row>div span{color:var(--st-muted);font-size:.8rem}
.st-current-plan{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-bottom:18px;border:1px solid var(--st-line);border-radius:8px;overflow:hidden;background:var(--st-line)}
.st-current-plan>div{padding:16px;background:#fff}
.st-current-plan span,.st-current-plan strong{display:block}
.st-current-plan span{color:var(--st-muted);font-size:.76rem;text-transform:uppercase;font-weight:800}
.st-current-plan strong{margin-top:4px;font-size:1.1rem;text-transform:capitalize}
.st-account-plan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.st-account-plan{display:flex;flex-direction:column;align-items:flex-start;min-width:0;padding:17px;border:1px solid var(--st-line);border-radius:8px}
.st-account-plan.is-featured{border:2px solid var(--st-teal)}
.st-account-plan h3{margin:0;font-size:1.15rem}
.st-account-plan>p{margin:6px 0;color:var(--st-muted);font-size:.86rem}
.st-account-plan .st-feature-list{font-size:.84rem;flex:1}
.st-account-plan form{width:100%;margin-top:16px}
.st-account-plan form .st-button{width:100%}
.st-plan-limit{font-weight:800;color:var(--st-ink)!important}
.st-billing-note{max-width:880px;margin:20px 0 0;color:var(--st-muted);font-size:.84rem}
.st-support-panel h2{font-size:1.35rem;margin:10px 0}
.st-support-panel>a{font-weight:900;color:var(--st-teal);overflow-wrap:anywhere}
.st-support-panel hr{border:0;border-top:1px solid var(--st-line);margin:22px 0}
.st-legal h1{font-size:2.65rem;line-height:1.08;margin:14px 0 8px}
.st-legal h2{font-size:1.25rem;margin-top:28px}
.st-legal p{color:var(--st-muted)}
@media (max-width:980px){
  .st-hero{min-height:auto;display:block;padding-bottom:24px}
  .st-hero-copy{padding:58px 24px 28px}
  .st-hero h1{font-size:3rem}
  .st-hero-board{position:relative;right:auto;bottom:auto;width:calc(100% - 48px);margin:0 24px}
  .st-product-layout{grid-template-columns:1fr}
  .st-capability-map{grid-template-columns:1fr}
  .st-compare-row{grid-template-columns:1fr}
  .st-compare-row span{border-left:0;border-top:1px solid var(--st-line)}
  .st-compare-row span:first-child{border-top:0;background:#f7faf9}
  .st-compare-head span:first-child{background:transparent}
  .st-metric-grid{grid-template-columns:repeat(2,1fr)}
  .st-trial-layout{grid-template-columns:1fr;gap:28px}
  .st-auth-layout{grid-template-columns:1fr;gap:28px}
  .st-trial-promise h1{font-size:2.75rem}
  .st-account-grid,.st-account-grid-wide,.st-calendar-layout,.st-settings-layout{grid-template-columns:1fr}
  .st-account-plan-grid{grid-template-columns:1fr}
  .st-channel-row{grid-template-columns:1fr}
  .st-booking-details{grid-template-columns:1fr}
  .st-account-nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));padding:0 10px;overflow:visible}
  .st-account-nav a{justify-content:center;min-height:44px;padding:7px 5px;font-size:.82rem;text-align:center;white-space:normal}
  .st-calendar-route-three{grid-template-columns:1fr}
}
@media (min-width:981px) and (max-width:1280px){
  .st-account-nav{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));padding:0 12px;overflow:visible}
  .st-account-nav a{justify-content:center;padding:8px 5px;font-size:.78rem;text-align:center;white-space:normal}
}
@media (max-width:680px){
  .st-header{align-items:flex-start;flex-direction:column;padding:12px 16px}
  .st-brand img{width:160px}
  .st-nav{justify-content:flex-start;width:100%}
  .st-nav a{font-size:.9rem;padding:7px 9px}
  .st-section{padding:40px 16px}
  .st-hero-copy{padding:44px 16px 24px}
  .st-hero h1{font-size:2.35rem}
  .st-lead{font-size:1.04rem}
  .st-hero-board{width:calc(100% - 32px);margin:0 16px;min-height:0}
  .st-board-grid{grid-template-columns:1fr}
  .st-metric-grid{grid-template-columns:1fr}
  .st-footer{padding:26px 16px}
  .st-footer nav{justify-content:flex-start}
  .st-trial-hero{min-height:0}
  .st-trial-promise h1{font-size:2.35rem}
  .st-auth-layout h1,.st-auth-single h1{font-size:2.2rem}
  .st-account-header{grid-template-columns:1fr auto;padding:11px 16px}
  .st-account-header .st-brand img{width:154px}
  .st-account-identity{display:none}
  .st-account-nav{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding:0 8px;overflow:visible}
  .st-account-nav a{justify-content:center;min-height:44px;padding:7px 5px;font-size:.82rem;text-align:center;white-space:normal}
  .st-account-main{width:calc(100% - 28px);padding:24px 0 44px}
  .st-account-title-row{align-items:flex-start;flex-direction:column;gap:14px}
  .st-account-title-row h1{font-size:1.8rem}
  .st-title-actions{justify-content:flex-start;width:100%}
  .st-title-actions .st-button{flex:1 1 150px}
  .st-account-banner{align-items:flex-start;flex-direction:column}
  .st-account-stats{grid-template-columns:repeat(2,1fr)}
  .st-account-stats strong{font-size:1.25rem}
  .st-account-panel{padding:16px}
  .st-calendar-route{grid-template-columns:1fr}
  .st-calendar-wizard-heading{align-items:flex-start;flex-direction:column}
  .st-calendar-wizard-heading .st-button{width:100%}
  .st-calendar-wizard-steps{grid-template-columns:1fr}
  .st-browser-bridge-steps{grid-template-columns:1fr}
  .st-bookmarklet-ready{align-items:flex-start;flex-direction:column}
  .st-bookmarklet-ready>a{width:100%}
  .st-sykes-browser-check{align-items:flex-start;flex-direction:column}
  .st-setup-list li{grid-template-columns:32px 1fr}
  .st-setup-list li>a{grid-column:2}
  .st-record-row,.st-event-row{grid-template-columns:1fr}
  .st-booking-heading,.st-booking-privacy{align-items:flex-start;flex-direction:column}
  .st-booking-badges{justify-content:flex-start}
  .st-record-actions{justify-content:flex-start}
  .st-code-actions{max-width:none}
  .st-panel-heading{flex-direction:column}
  .st-inline-filter{width:100%;align-items:flex-start;flex-direction:column}
  .st-inline-filter select{width:100%}
  .st-current-plan{grid-template-columns:repeat(2,1fr)}
}
