/* ═══════════════════════════════════════════════════════════════
   Lumen — public site
   The marketing pages. Shares the brand purple and the type stack
   with the portal (css/portal.css) but runs warmer and roomier:
   this is the page that has to sell the thing.
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink:       #1B1519;
  --ink-2:     #554C53;
  --muted:     #8B8089;
  --primary:   #A2509F;
  --primary-d: #7B3579;
  --primary-l: #C77FC4;

  /* Warm blush surfaces, echoing the service sheet. */
  --cream:     #FDF6F7;
  --blush:     #FAEBF1;
  --blush-2:   #F5DEE8;
  --card:      #FFFFFF;
  --border:    #EDDDE6;

  --radius:    20px;
  --shadow-sm: 0 2px 12px rgba(27,21,25,.05);
  --shadow-md: 0 10px 34px rgba(27,21,25,.08);
  --shadow-lg: 0 24px 70px rgba(27,21,25,.12);
  --shadow-brand: 0 10px 30px rgba(162,80,159,.24);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream); color: var(--ink-2);
  line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: 'Manrope', system-ui, sans-serif; color: var(--ink); letter-spacing: -.03em; line-height: 1.15; }
svg { stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ── LOGO ────────────────────────────────────────────────────────
   The supplied artwork, not a typeset imitation of it. Two files:
   the black-ink original for light surfaces, and a white-ink version
   of the same file (the purple "u" untouched) for the dark footer and
   the auth panel. Sized by height so both keep their proportions. */
.logo-img { display: block; width: auto; max-width: 100%; }
.logo-nav { height: 30px; }
.logo-footer { height: 34px; }
.logo-auth { height: 38px; }
.logo-auth-card { height: 32px; }

.tagline-img { display: block; width: auto; max-width: 100%; height: 22px; margin-bottom: 22px; }
.tagline-auth { height: 26px; margin-bottom: 15px; }

@media (max-width: 720px) {
  .tagline-img { height: 18px; }
  .logo-nav { height: 26px; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,246,247,.86); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
.nav-brand { font-size: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .86rem; font-weight: 500; color: var(--ink-2);
  transition: color .18s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', inherit; font-size: .88rem; font-weight: 600;
  padding: 13px 26px; border-radius: 9999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s; line-height: 1; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-brand); }
.btn-primary:hover:not(:disabled) { background: var(--primary-d); border-color: var(--primary-d); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(162,80,159,.32); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover:not(:disabled) { background: #000; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-outline:hover:not(:disabled) { border-color: var(--primary-l); color: var(--primary); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink-2); border-color: transparent; }
.btn-ghost:hover { color: var(--primary); }
.btn-sm { padding: 10px 18px; font-size: .8rem; }
.btn-lg { padding: 16px 34px; font-size: .95rem; }
.btn-block { width: 100%; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { padding: 84px 0 76px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -220px; right: -180px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(162,80,159,.13) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); background: #fff; border: 1px solid var(--border);
  padding: 7px 15px; border-radius: 9999px; margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.55rem); font-weight: 800; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-lead { font-size: 1.06rem; max-width: 52ch; margin-bottom: 30px; color: var(--ink-2); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }

/* The dashboard sketch that sits beside the hero copy. */
.hero-art {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 18px; position: relative;
}
.hero-art::after {
  content: ''; position: absolute; inset: auto -14px -14px auto;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--blush); z-index: -1;
}
.art-bar { display: flex; gap: 6px; padding: 0 4px 14px; }
.art-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--blush-2); display: block; }
.art-row { display: flex; gap: 12px; margin-bottom: 12px; }
.art-tile { flex: 1; background: var(--cream); border: 1px solid var(--border); border-radius: 13px; padding: 13px 15px; }
.art-tile .n { font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--ink); line-height: 1; }
.art-tile .l { font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 6px; font-weight: 600; }
.art-list { background: var(--cream); border: 1px solid var(--border); border-radius: 13px; padding: 6px 15px; }
.art-line { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.art-line:last-child { border-bottom: none; }
.art-av { width: 27px; height: 27px; border-radius: 8px; background: var(--primary); color: #fff; font-size: .63rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Manrope', sans-serif; }
.art-nm { font-size: .78rem; font-weight: 600; color: var(--ink); flex: 1; }
.art-sc { font-size: .68rem; font-weight: 700; color: var(--primary); background: #fff; border-radius: 9999px; padding: 3px 10px; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 76px 0; }
.section-alt { background: var(--blush); }
.section-dark { background: var(--ink); color: rgba(255,255,255,.72); }
.section-dark h2, .section-dark h3 { color: #fff; }
.sec-head { max-width: 62ch; margin: 0 auto 48px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 13px; }
.sec-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.4rem); font-weight: 800; margin-bottom: 15px; }
.sec-head p { font-size: 1rem; color: var(--ink-2); }

/* ── FEATURE CARDS ───────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .24s, box-shadow .24s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ic {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
  background: var(--blush); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.feature-ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; }
.feature p { font-size: .88rem; }

/* ── CHECK LIST (What's included) ────────────────────────────── */
.check-list { display: grid; gap: 15px; }
.check-item { display: flex; align-items: flex-start; gap: 13px; font-size: .92rem; color: var(--ink-2); }
.check-item .tick {
  width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.check-item .tick svg { width: 13px; height: 13px; stroke-width: 3; }
.panel {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 34px; box-shadow: var(--shadow-sm);
}
.panel-blush { background: var(--blush); border-color: var(--blush-2); }
.panel h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 22px; }

/* ── PRICING ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .24s, box-shadow .24s; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--primary-l); box-shadow: var(--shadow-brand); }
.price-flag {
  position: absolute; top: -13px; left: 32px;
  background: var(--primary); color: #fff; font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 15px; border-radius: 9999px;
}
.price-name { font-family: 'Manrope', sans-serif; font-size: 1.18rem; font-weight: 800; color: var(--ink); }
.price-sub { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin: 22px 0 6px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
.price-amount .n { font-family: 'Manrope', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: -.04em; line-height: 1; }
.price-amount .cur { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); }
.price-amount .per { font-size: .85rem; color: var(--muted); }
.price-list { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; }
.price-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: .55em;
}
.price-best {
  background: var(--blush); border-radius: 13px; padding: 13px 16px;
  font-size: .8rem; color: var(--primary-d); font-weight: 500; margin-bottom: 22px;
}

.tier-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.tier-table th {
  font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700; color: var(--ink);
  background: var(--blush); padding: 15px 20px; text-align: left;
}
.tier-table td { padding: 15px 20px; font-size: .9rem; border-top: 1px solid var(--border); }
.tier-table td:last-child { font-weight: 700; color: var(--primary); font-family: 'Manrope', sans-serif; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: 'Manrope', sans-serif; font-size: 2.6rem; font-weight: 800;
  color: var(--blush-2); line-height: 1; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .86rem; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(130deg, #241C22 0%, #4A2949 55%, var(--primary) 100%);
  border-radius: 26px; padding: 56px 48px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ''; position: absolute; top: -90px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.76); font-size: 1rem; max-width: 56ch; margin: 0 auto 28px; position: relative; }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── NOTES / FOOTER ──────────────────────────────────────────── */
.note-list { list-style: none; display: grid; gap: 13px; }
.note-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; }
.note-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: .62em;
}

.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-blurb { font-size: .86rem; margin-top: 14px; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 15px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { font-size: .86rem; transition: color .18s; }
.footer a:hover { color: var(--primary-l); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: .8rem; flex-wrap: wrap; }

/* ── CONTACT: calendar first, details beside it ──────────────────
   One step, not two. The calendar needs the width (Google's scheduler
   shows a month and a column of times side by side), so it takes the
   wide column and the optional details sit next to it. Below 960px
   they stack, calendar still first. */
.book-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr); gap: 28px; align-items: start; }
@media (max-width: 960px) { .book-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── FORMS on the public site ────────────────────────────────── */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: .9rem; color: var(--ink); background: #fff; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(162,80,159,.12);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { padding: 13px 17px; border-radius: 12px; font-size: .86rem; margin-bottom: 18px; line-height: 1.55; }
.form-msg.ok  { background: #E7F4EF; color: #0F5E43; border: 1px solid #BFE3D5; }
.form-msg.err { background: #FCEDEF; color: #971F32; border: 1px solid #F3CBD2; }

/* ── AUTH PAGES ──────────────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-side {
  background: linear-gradient(150deg, #241C22 0%, #4A2949 55%, var(--primary) 100%);
  color: rgba(255,255,255,.76); padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden;
}
.auth-side::before {
  content: ''; position: absolute; top: -120px; right: -90px;
  width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.05);
}
.auth-side h2 { color: #fff; font-size: 1.85rem; font-weight: 800; margin-bottom: 15px; position: relative; }
.auth-side p { font-size: .94rem; max-width: 40ch; position: relative; }
.auth-points { list-style: none; display: grid; gap: 13px; margin-top: 26px; position: relative; }
.auth-points li { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; }
.auth-points svg { width: 17px; height: 17px; color: #EBB8E9; flex-shrink: 0; margin-top: 2px; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card { width: 100%; max-width: 410px; }
.auth-card h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: 9px; }
.auth-card .lead { font-size: .92rem; margin-bottom: 30px; }
.auth-foot { margin-top: 26px; font-size: .86rem; text-align: center; }
.auth-foot a { color: var(--primary); font-weight: 600; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 70px; left: 0; right: 0; background: var(--cream);
    border-bottom: 1px solid var(--border); padding: 22px 24px;
  }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .hero { padding: 54px 0 48px; }
  .grid-3, .grid-2, .price-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .panel { padding: 26px 22px; }
  .cta-band { padding: 40px 24px; border-radius: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
}
