:root {
  --navy: #14213d; --navy-2: #1f3160; --gold: #e0a526; --gold-soft: #fff4d6;
  --paper: #f5f6f9; --panel: #fff; --ink: #1b1f2a; --muted: #5f6878; --line: #dde1e8;
  --radius: 14px; color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --paper: #13161c; --panel: #1c2029; --ink: #e8eaf0; --muted: #a2aabb; --line: #313744; --gold-soft: #3a3120; color-scheme: dark; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.6 "Segoe UI", system-ui, -apple-system, Roboto, sans-serif; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1080px, 100% - 32px); margin: 0 auto; }

/* header */
.top { background: var(--navy); color: #fff; }
.top .wrap { display: flex; align-items: center; gap: 18px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 19px; color: #fff; }
.logo img { width: 34px; height: 34px; }
.top nav { margin-left: auto; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top nav a { text-decoration: none; color: #d5dbea; font-size: 15px; }
.top nav a:hover { color: #fff; }
.btn { display: inline-block; background: var(--gold); color: var(--navy) !important; font-weight: 700; text-decoration: none; padding: 11px 20px; border-radius: 10px; border: 0; font: inherit; font-weight: 700; cursor: pointer; }
.btn:hover { filter: brightness(1.06); }
.btn.ghost { background: transparent; color: inherit !important; border: 2px solid currentColor; }
.btn.small { padding: 7px 14px; font-size: 15px; }

/* hero */
.hero { background: var(--navy); color: #fff; padding: 36px 0 0; overflow: hidden; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 0 0 14px; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { font-size: clamp(18px, 2.2vw, 21px); color: #cfd6e6; max-width: 640px; margin: 0 0 24px; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero .fine { color: #aab4ca; font-size: 14px; }
.shot { margin-top: 36px; border-radius: 14px 14px 0 0; box-shadow: 0 -10px 60px rgba(0,0,0,.35); border: 1px solid #2c3d66; border-bottom: 0; }

/* sections */
section { padding: 64px 0; }
section h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 10px; line-height: 1.2; }
section .intro { color: var(--muted); max-width: 680px; margin: 0 0 32px; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3 { margin: 6px 0 6px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.num { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; }
.icon { font-size: 26px; }
.band { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.privacy ul { margin: 0; padding-left: 20px; }
.privacy li { margin: 6px 0; }
.seal { background: var(--navy); color: #fff; border-radius: 18px; padding: 28px; }
.seal b { color: var(--gold); font-size: 22px; display: block; margin-bottom: 6px; }

/* pricing */
.plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.plan.best { border: 2px solid var(--gold); box-shadow: 0 10px 30px rgba(224,165,38,.15); }
.plan .price { font-size: 38px; font-weight: 800; line-height: 1; }
.plan .price small { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan ul { padding-left: 20px; margin: 4px 0 8px; color: var(--muted); font-size: 16px; }
.plan .btn { margin-top: auto; text-align: center; }
.tag { display: inline-block; background: var(--gold-soft); color: #7a5200; border-radius: 20px; padding: 2px 10px; font-size: 13px; font-weight: 700; width: fit-content; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .tag { color: var(--gold); } }

/* legal / plain pages */
.page { padding: 48px 0 72px; }
.page h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 6px; }
.page .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.page h2 { font-size: 22px; margin: 32px 0 8px; }
.page p, .page li { max-width: 760px; }
.box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; max-width: 560px; }
.box label { display: block; font-weight: 600; margin-bottom: 6px; }
.box input { width: 100%; font: inherit; padding: 11px 12px; border-radius: 9px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); margin-bottom: 12px; }
#msg { margin-top: 12px; color: var(--muted); }

/* footer */
footer { background: var(--navy); color: #aab4ca; font-size: 14px; padding: 36px 0; }
footer .wrap { display: grid; gap: 18px; grid-template-columns: 2fr 1fr 1fr; }
footer a { color: #d5dbea; text-decoration: none; display: block; margin: 3px 0; }
footer a:hover { color: #fff; }
footer b { color: #fff; }

@media (max-width: 760px) {
  .top nav { gap: 12px; }
  .top nav a:not(.btn) { display: none; }
  .privacy { grid-template-columns: 1fr; }
  footer .wrap { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
}

/* help page */
.help-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; margin-bottom: 20px; }
.chat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.chat-head { background: var(--navy); color: #fff; padding: 14px 18px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.chat-head small { color: #aab4ca; }
.chat-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #3ecf8e; align-self: center; }
.chat-log { height: 340px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 15.5px; line-height: 1.5; white-space: pre-wrap; }
.msg.bot { background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.me { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { color: var(--muted); font-style: italic; }
.chat-suggest { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chat-suggest button { font: inherit; font-size: 14px; background: var(--gold-soft); color: #6d4b00; border: 1px solid #f0d58f; border-radius: 20px; padding: 5px 12px; cursor: pointer; }
.chat-form { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; font: inherit; padding: 10px 12px; border-radius: 9px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); min-width: 0; }
.chat-note { padding: 0 16px 14px; margin: 0; }
.contact-form { max-width: none; }
.contact-form select, .contact-form textarea { width: 100%; font: inherit; padding: 11px 12px; border-radius: 9px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); margin-bottom: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.faq { display: grid; gap: 8px; max-width: 820px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: 8px 0 2px; color: var(--muted); }
@media (max-width: 860px) { .help-grid { grid-template-columns: 1fr; } .chat-log { height: 300px; } }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .chat-suggest button { color: var(--gold); border-color: #5a4a20; } }

/* privacy promise at the top of the home page */
.promise { display: inline-flex; align-items: center; gap: 10px; background: rgba(62, 207, 142, .12); border: 1px solid rgba(62, 207, 142, .45); color: #d9fbe9; border-radius: 30px; padding: 7px 16px 7px 10px; font-size: 15px; margin-bottom: 18px; }
.promise .lock { width: 26px; height: 26px; border-radius: 50%; background: #3ecf8e; color: #0b3b27; display: grid; place-items: center; font-size: 14px; }
.promise b { color: #fff; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 0; }
.trust div { background: rgba(255,255,255,.06); border: 1px solid #2c3d66; border-radius: 12px; padding: 14px 16px; color: #cfd6e6; font-size: 15px; }
.trust b { display: block; color: #fff; font-size: 16px; margin-bottom: 2px; }
@media (max-width: 760px) { .trust { grid-template-columns: 1fr; } }
.help-grid > section { padding: 0; }

/* Turnstile: empty unless Cloudflare needs the visitor to click */
.captcha:empty { display: none; }
.captcha { margin: 10px 0; }
