/* Felix Bookkeeping. Colors and type from escape-velocity-ai.com. Mobile first. */
:root {
  --bg: #060B16;
  --bg-deep: #04070F;
  --surface: #0C1524;
  --surface-2: #101B2E;
  --border: #1B2B44;
  --border-bright: #2A4A78;
  --text: #EAF0F8;
  --dim: #8FA0B8;
  --faint: #5A6B84;
  --blue: #3AA3FF;
  --blue-deep: #2563EB;
  --glow: rgba(58, 163, 255, .28);
  --white: #FFFFFF;
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --body: "Source Serif 4", Georgia, serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --max: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { background: var(--bg); color: var(--text); font-family: var(--body); font-size: 17px; line-height: 1.65;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, .16), transparent),
                    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(37, 99, 235, .07), transparent);
  overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* Top bar */
.announce { background: var(--bg-deep); color: var(--blue); font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-align: center; padding: 8px 16px; border-bottom: 1px solid var(--border); }

/* Menu: floating pill */
.nav { position: sticky; top: 12px; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  max-width: var(--max); margin: 12px auto 0; padding: 12px 14px 12px 28px;
  background: rgba(10, 18, 33, .85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 999px; }
@media (max-width: 1104px) { .nav { margin: 12px 12px 0; } }
.nav-brand { font-family: var(--display); font-weight: 900; font-size: 2.1rem; line-height: 1; color: var(--text); text-decoration: none; letter-spacing: -.02em; white-space: nowrap; }
.brand-text > span { color: var(--blue); }
.nav-links { display: none; gap: 20px; align-items: center; }
.nav-links a { font-family: var(--mono); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--blue-deep); color: var(--white) !important; padding: 9px 16px; border-radius: 999px; box-shadow: 0 0 18px var(--glow); }
.nav-cta:hover { background: var(--blue); }
.nav-cta-desktop { display: none; }
.nav-hamburger { display: flex; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; }
.nav-links.nav-open { display: flex; position: absolute; top: calc(100% + 8px); left: 0; right: 0; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 18px 20px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-cta-desktop { display: inline-block; }
}
@media (min-width: 900px) and (max-width: 1060px) { .nav-brand { font-size: 1.85rem; } .nav-links { gap: 16px; } }
@media (max-width: 899px) { .nav { padding-left: 22px; } .nav-brand { font-size: 1.65rem; } .nav-links.nav-open .nav-cta-desktop { display: inline-block; text-align: center; } }
@media (max-width: 400px) { .nav { padding: 10px 8px 10px 18px; gap: 8px; } .nav-brand { font-size: 1.5rem; } }
@media (max-width: 340px) { .nav-brand { font-size: 1.3rem; } }

/* Buttons: pills with glow */
.btn { display: inline-block; font-family: var(--mono); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; text-align: center;
  text-decoration: none; padding: 14px 26px; border-radius: 999px; border: 1px solid var(--border-bright); cursor: pointer;
  transition: transform .08s ease, box-shadow .2s, background .15s; }
.btn-primary { background: linear-gradient(180deg, var(--blue), var(--blue-deep)); color: var(--white); border-color: var(--blue); box-shadow: 0 0 24px var(--glow); }
.btn-primary:hover { box-shadow: 0 0 36px var(--glow); }
.btn-ghost { background: rgba(16, 27, 46, .6); color: var(--text); }
.btn-ghost:hover { border-color: var(--blue); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; cursor: default; }

/* Sections */
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 14px; }
.eyebrow::before { content: "● "; font-size: 9px; vertical-align: 2px; }
.section { max-width: var(--max); margin: 0 auto; padding: 76px 20px; }
.section-alt { max-width: none; background: linear-gradient(180deg, var(--bg-deep), rgba(10, 18, 33, .5)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-alt > * { max-width: calc(var(--max) - 40px); margin-left: auto; margin-right: auto; }
.section h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -.01em; line-height: 1.15; margin-bottom: 14px; }
.section-subhead { color: var(--dim); max-width: 40em; margin-bottom: 34px; }
.section-subhead a { white-space: nowrap; text-decoration: none; }

/* Cards */
.card-grid { display: grid; gap: 16px; margin-top: 30px; }
.card-grid.four { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.card p { font-size: .95rem; color: var(--dim); }

/* Top section */
.hero { display: grid; gap: 48px; max-width: var(--max); margin: 0 auto; padding: 44px 20px 84px; align-items: start; }
@media (min-width: 900px) { .hero { grid-template-columns: 1.25fr .75fr; padding-top: 56px; } .hero-copy { padding-top: 36px; } }
.hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem, 5.4vw, 4.1rem); line-height: 1.04; letter-spacing: -.02em; margin-bottom: 18px; }
.h1-accent { color: var(--blue); font-style: italic; text-shadow: 0 0 30px var(--glow); }
.hero-sub { font-size: 1.1rem; color: var(--dim); max-width: 34em; margin-bottom: 26px; }
@media (min-width: 900px) { .hero-sub { font-size: 1.22rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
@media (min-width: 900px) { .hero-checkup { display: none; } }
.hero-note { font-family: var(--mono); font-size: 12.5px; color: var(--dim); }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); max-width: 34em; }
.hero-badges li { font-family: var(--mono); font-size: .76rem; letter-spacing: .03em; color: var(--text); background: var(--surface); border: 1px solid var(--border-bright); border-radius: 12px; padding: 8px 14px; }
.hero-badges li::before { content: "✓ "; color: var(--blue); font-weight: 700; }

/* Photo with initials underneath */
.hero-visual { width: 100%; max-width: 390px; justify-self: center; }
.photo { position: relative; aspect-ratio: 4 / 4.6; max-width: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--border-bright);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-deep)); display: grid; place-items: center; box-shadow: 0 0 60px var(--glow); }
.photo-initials { font-family: var(--display); font-weight: 900; font-size: 4.5rem; color: var(--border-bright); letter-spacing: .02em; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Report card, overlapping the bottom of the photo */
.report-card { position: relative; margin: -96px 12px 0; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-bright);
  border-radius: 16px; overflow: hidden; box-shadow: 0 0 60px var(--glow); }
@media (min-width: 900px) { .report-card { margin: -140px 0 0 28px; } }
@media (min-width: 1140px) { .report-card { margin: -140px -28px 0 28px; } }
.report-head { display: flex; justify-content: space-between; gap: 10px; background: var(--bg-deep); color: var(--dim);
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.report-status { color: var(--blue); font-weight: 600; white-space: nowrap; }
.report-card ul { list-style: none; padding: 6px 18px; }
.report-card li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .93rem; }
.report-card li:last-child { border-bottom: 0; }
.tick { color: var(--blue); font-weight: 700; font-family: var(--display); }
.report-foot { border-top: 1px solid var(--border-bright); padding: 12px 18px; font-family: var(--display); font-weight: 700; font-size: .95rem; background: var(--bg-deep); color: var(--blue); }

/* Pain cards */
.card.pain { border-top: 3px solid var(--border-bright); }

/* Packages */
.plans { display: grid; gap: 20px; margin-top: 34px; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; }
.plan.featured { border-color: var(--blue); box-shadow: 0 0 50px var(--glow); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.plan.soon { opacity: .72; }
.plan-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.plan-tag.muted { color: var(--dim); }
@media (max-width: 899px) { .plan-tag[aria-hidden="true"] { display: none; } }
.plan h3 { font-family: var(--display); font-weight: 900; font-size: 1.5rem; margin-bottom: 4px; }
.plan-price { font-family: var(--display); font-weight: 900; font-size: 2.2rem; margin-bottom: 16px; color: var(--text); white-space: nowrap; }
.plan-from { font-family: var(--mono); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); vertical-align: middle; }
.plan-per { font-size: 1rem; font-weight: 700; color: var(--dim); }
.plan ul { list-style: none; margin-bottom: 16px; }
.plan li { padding: 8px 0 8px 26px; border-bottom: 1px solid var(--border); font-size: .95rem; color: var(--dim); position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.plan li:last-child { border-bottom: 0; }
.plan-best { font-size: .9rem; font-style: italic; color: var(--dim); margin-bottom: 22px; }
.plan-best strong { font-style: normal; color: var(--text); }
.plan .btn { margin-top: auto; }

/* Catch-Up & Cleanup */
.catchup { display: grid; gap: 20px; align-items: center; margin-top: 20px; padding: 28px 24px;
  background: linear-gradient(90deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-bright); border-left: 3px solid var(--blue); border-radius: 18px; }
@media (min-width: 820px) { .catchup { grid-template-columns: 1fr auto; padding: 32px; } }
.catchup .eyebrow { margin-bottom: 8px; }
.catchup h3 { font-family: var(--display); font-weight: 900; font-size: 1.4rem; line-height: 1.2; margin-bottom: 8px; }
.catchup p { color: var(--dim); max-width: 40em; }

/* How it works */
.steps { list-style: none; display: grid; gap: 20px; margin-top: 30px; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; }
.step-num { font-family: var(--mono); font-weight: 600; font-size: 1.1rem; color: var(--blue); margin-bottom: 12px; letter-spacing: .1em; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: .95rem; color: var(--dim); }

/* What working with me looks like */
.promises { display: grid; gap: 16px; margin-top: 30px; }
@media (min-width: 820px) { .promises { grid-template-columns: repeat(3, 1fr); } }
.promises .card { border-top: 3px solid var(--blue); }
.signature { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.signature-photo { position: relative; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--border-bright); background: var(--surface-2); display: grid; place-items: center; }
.signature-photo span { font-family: var(--display); font-weight: 900; font-size: .95rem; color: var(--dim); }
.signature-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.signature-name strong { display: block; font-family: var(--display); font-weight: 900; line-height: 1.2; }
.signature-name span { font-family: var(--mono); font-size: .78rem; color: var(--dim); }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.badges li { font-family: var(--mono); font-size: .72rem; letter-spacing: .03em; color: var(--text); background: var(--surface); border: 1px solid var(--border-bright); border-radius: 12px; padding: 6px 12px; }

/* FAQ */
.faq-list { margin-top: 30px; }
.faq-item { max-width: 760px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; }
.faq-item.faq-open { border-color: var(--border-bright); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; background: none; border: 0; text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--text); padding: 18px 20px; cursor: pointer; }
.faq-icon { transition: transform .18s ease; font-size: 1.3rem; color: var(--blue); }
.faq-open .faq-icon { transform: rotate(90deg); }
.faq-answer { display: none; padding: 0 20px 18px; }
.faq-open .faq-answer { display: block; }
.faq-answer p { font-size: .95rem; color: var(--dim); }

/* Contact */
.booking-grid { display: grid; gap: 28px; margin-top: 10px; }
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.booking-calendar h3, .booking-form h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.cal-embed-wrapper { background: var(--surface); border: 1px solid var(--border-bright); border-radius: 14px; min-height: 460px; padding: 8px; overflow: auto; }
.cal-fallback { margin-top: 10px; font-family: var(--mono); font-size: .78rem; color: var(--dim); }
.booking-form { background: var(--surface); border: 1px solid var(--border-bright); border-radius: 14px; padding: 26px 22px; }
.contact-form label { display: block; font-family: var(--mono); font-weight: 600; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg-deep); font-family: var(--body); font-size: 1rem; color: var(--text); text-transform: none; letter-spacing: normal; }
.contact-form select option { background: var(--bg-deep); color: var(--text); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 1px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.contact-form .btn { width: 100%; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 14px; padding-left: 12px; border-left: 3px solid var(--blue); font-size: .95rem; color: var(--text); }
#form-success { text-align: center; padding: 30px 10px; }
.success-mark { font-size: 2.2rem; color: var(--blue); font-weight: 700; }

/* Footer */
.footer { background: var(--bg-deep); color: var(--text); padding: 48px 20px 32px; border-top: 1px solid var(--border); }
.footer-brand, .footer-nav, .footer-fine { max-width: var(--max); margin: 0 auto; }
.footer-logo { display: inline-block; font-family: var(--display); font-weight: 900; font-size: 2.1rem; line-height: 1; letter-spacing: -.02em; }
@media (max-width: 400px) { .footer-logo { font-size: 1.6rem; } }
.footer-brand p { color: var(--dim); font-size: .92rem; max-width: 34em; margin: 8px 0 22px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; }
.footer-nav a { color: var(--dim); font-family: var(--mono); font-weight: 600; font-size: .76rem; letter-spacing: .06em; text-decoration: none; }
.footer-nav a:hover { color: var(--blue); }
.footer-fine { font-family: var(--mono); font-size: 11.5px; color: var(--faint); border-top: 1px solid var(--border); padding-top: 18px; }

/* Social icons (Feather icon shapes, MIT license) */
.social { list-style: none; display: flex; gap: 10px; max-width: var(--max); margin: 0 auto 24px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-bright); color: var(--dim); background: var(--surface); }
.social a:hover { color: var(--blue); border-color: var(--blue); }
.social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social a.is-placeholder { opacity: .45; cursor: default; }
.social a.is-placeholder:hover { color: var(--dim); border-color: var(--border-bright); }

/* Motion restraint */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
