/* Same Pearl palette as the homepage and /join (pearl/hv2.css). */
:root {
  --cb-bg: 246 245 242;
  --cb-surface: 255 255 255;
  --cb-border: 232 228 222;
  --cb-text: 28 26 38;
  --cb-text-sec: 88 84 100;
  --cb-text-muted: 107 104 120;
  --cb-accent: 255 161 126;
  --cb-accent-2: 255 130 89;
  --cb-accent-light: 255 241 233;
  --cb-accent-deep: 187 74 45;
  --cb-accent-deep-hover: 158 58 30;
  --cb-mint-light: 224 248 240;
  --cb-error-light: 252 232 236;
  color-scheme: light;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: rgb(var(--cb-text));
  background: rgb(var(--cb-bg));
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
a { color: rgb(var(--cb-accent-deep)); text-underline-offset: 3px; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 32px; border-bottom: 1px solid rgb(var(--cb-text) / .06); }
nav > a:last-child { color: rgb(var(--cb-text-sec)); font-size: 14px; font-weight: 500; text-decoration: none; }
nav > a:last-child:hover { color: rgb(var(--cb-accent-deep)); }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-family: 'Newsreader', Georgia, serif; font-size: 22px; font-weight: 500; letter-spacing: -.01em; color: rgb(var(--cb-text)); }
.brand img { width: 28px; height: 28px; object-fit: contain; }
.brand .brand-text { color: rgb(var(--cb-text)); }
.brand .brand-text > span { font-weight: 600; }
.brand span { color: rgb(var(--cb-accent-deep)); }
main { max-width: 590px; margin: 45px auto 70px; padding: 0 25px; }
.eyebrow { display: inline-block; margin: 0; padding: 7px 12px; border-radius: 999px; background: rgb(var(--cb-accent) / .14); color: rgb(var(--cb-accent-deep)); text-transform: uppercase; letter-spacing: .13em; font-size: 13px; font-weight: 650; }
h1 { font-family: 'Newsreader', Georgia, serif; font-weight: 500; font-size: clamp(36px, 8vw, 49px); line-height: 1.12; letter-spacing: -.025em; margin: 14px 0 22px; }
h2 { font-family: 'Newsreader', Georgia, serif; font-size: 26px; font-weight: 500; margin: 0 0 18px; }
p { line-height: 1.6; }
.intro { font-size: 18px; color: rgb(var(--cb-text-sec)); margin-bottom: 28px; }
section { background: #fff; padding: 27px; border: 1px solid rgb(var(--cb-border)); border-radius: 18px; box-shadow: 0 8px 28px rgba(60, 50, 40, .06); }
[hidden] { display: none !important; }
label { display: block; font-size: 14px; font-weight: 550; margin: 15px 0 7px; }
input:not([type=radio]) { width: 100%; border: 1px solid rgb(var(--cb-border)); border-radius: 8px; padding: 12px; font: inherit; color: inherit; background: #fff; }
button, .button { display: block; width: 100%; text-align: center; margin: 22px 0 0; padding: 13px 18px; border: 1px solid rgb(var(--cb-accent-deep)); border-radius: 9px; font: inherit; font-weight: 600; color: #fff; background: rgb(var(--cb-accent-deep)); cursor: pointer; text-decoration: none; }
button:not(:disabled):hover, .button:hover { background: rgb(var(--cb-accent-deep-hover)); }
button:disabled { opacity: .55; cursor: wait; }
button.secondary { color: rgb(var(--cb-text)); background: #fff; border-color: rgb(var(--cb-border)); }
button.secondary:not(:disabled):hover { background: rgb(var(--cb-accent-light)); border-color: rgb(var(--cb-accent)); }
button.text-button { width: auto; margin: 20px auto; padding: 0; color: rgb(var(--cb-accent-deep)); background: transparent; border: none; font-weight: 400; }
button.text-button:not(:disabled):hover { color: rgb(var(--cb-accent-deep-hover)); background: transparent; text-decoration: underline; text-underline-offset: 3px; }
input:not([type=radio]):focus { border-color: rgb(var(--cb-accent-deep)); }
:focus-visible { outline: 3px solid rgb(var(--cb-accent)); outline-offset: 3px; }
.small, .aside { font-size: 14px; color: rgb(var(--cb-text-sec)); }
.aside { text-align: center; }
.separator { font-size: 14px; text-align: center; color: rgb(var(--cb-text-muted)); }
.message { padding: 13px 16px; border-radius: 8px; background: rgb(var(--cb-mint-light)); font-size: 15px; }
.error { color: #9e2538; background: rgb(var(--cb-error-light)); margin-bottom: 18px; }
fieldset { border: none; margin: 0; padding: 0; }
.plan { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid rgb(var(--cb-border)); border-radius: 10px; cursor: pointer; }
.plan:has(input:checked) { border-color: rgb(var(--cb-accent-deep)); background: rgb(var(--cb-accent-light)); }
.plan input { accent-color: rgb(var(--cb-accent-deep)); width: 18px; height: 18px; flex-shrink: 0; }
.plan strong { font-size: 17px; display: block; }
.price { display: block; font-weight: 450; font-size: 16px; margin: 5px 0; }
.plan small { font-size: 14px; font-weight: 400; color: rgb(var(--cb-text-sec)); }
.terms { margin-top: 25px; font-size: 14px; line-height: 1.6; color: rgb(var(--cb-text-sec)); }
.terms strong { color: rgb(var(--cb-text)); }
.terms p { margin-bottom: 0; }
footer { display: flex; justify-content: center; gap: 25px; padding: 25px; font-size: 14px; }
.sr-only { position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(0,0,0,0); }
@media (max-width: 480px) { nav { padding: 14px 18px; } .brand { font-size: 20px; } main { margin-top: 25px; padding: 0 18px; } section { padding: 21px; } }

#googleStart { margin-top:0; border-color:#747775; background:#fff; color:#1f1f1f; font-weight:500; }
#googleStart:hover:not(:disabled) { background:#f8faff; }
