/* =================================================================
   DEV WEB ZONE — shared stylesheet for every page
   Change a colour ONCE here and it updates across the whole site.
   ================================================================= */
:root {
  --ink:     #0B0E14;   /* page background           */
  --panel:   #12161F;   /* lighter panels            */
  --text:    #E8EAED;   /* main text                 */
  --muted:   #8A92A6;   /* secondary text            */
  --line:    #2A3142;   /* borders / dividers        */
  --cyan:    #22D3EE;   /* aurora start              */
  --violet:  #8B5CF6;   /* aurora middle             */
  --magenta: #EC4899;   /* aurora end                */
  --danger:  #F43F5E;   /* lost money / no-shows     */
  --aurora: linear-gradient(120deg, var(--cyan), var(--violet), var(--magenta));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.12; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* animated aurora gradient on text */
.grad {
  background: var(--aurora);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease infinite;
}
@keyframes gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

/* buttons */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 30px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif; transition: transform .15s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--aurora); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(139,92,246,.35); }
.btn-ghost   { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--cyan); }

/* frosted glass card */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- NAV ---------- */
nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; position: relative; z-index: 5; }
.logo { display: flex; align-items: center; gap: 11px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; color: var(--text); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--aurora);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,92,246,.35);
}
.logo-mark svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 15px; transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }

/* clearly-visible call-to-action in the nav */
.nav-cta {
  background: var(--aurora); color: var(--ink) !important; font-weight: 600;
  padding: 10px 20px; border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 6px 22px rgba(139,92,246,.40);
  transition: transform .15s ease;
}
.nav-cta:hover { transform: translateY(-2px); color: var(--ink) !important; }

/* ---------- HERO ---------- */
.hero { padding: 96px 0 78px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -120px; left: -10%;
  width: 620px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.16), transparent 70%); z-index: -2;
}
#net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero > *:not(#net) { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: 20px;
  border: 1px solid var(--line); background: rgba(11,14,20,0.6);
  font-size: 13px; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 26px;
}
.hero h1 { font-size: 62px; margin-bottom: 22px; }
.hero p { font-size: 19px; color: var(--muted); max-width: 620px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- SECTIONS ---------- */
.section { padding: 70px 0; }
.section-label { font-size: 13px; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 14px; }
.section h2 { font-size: 38px; margin-bottom: 16px; }
.section-intro { color: var(--muted); font-size: 17px; max-width: 640px; margin-bottom: 44px; }

/* ---------- SINGLE-PRODUCT FEATURE BLOCK (BookKit, shown with confidence) ---------- */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; padding: 44px; align-items: center; }
.feature .f-head { font-size: 30px; margin-bottom: 8px; }
.feature .f-who { color: var(--cyan); font-size: 14px; letter-spacing: 1px; margin-bottom: 16px; }
.feature p { color: var(--muted); font-size: 16px; }
.f-points { list-style: none; margin: 22px 0 28px; }
.f-points li { position: relative; padding: 8px 0 8px 30px; color: var(--text); font-size: 15px; }
.f-points li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 14px; border-radius: 4px; background: var(--aurora); }

/* the animated visual inside the feature block */
.f-visual { padding: 28px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.fv-label { font-size: 12px; letter-spacing: 1.5px; color: var(--muted); }
.fv-money { font-size: 52px; font-weight: 700; font-family: 'Space Grotesk'; margin: 6px 0 4px; }
.fv-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.no-show-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; margin-bottom: 18px; }
.cell { aspect-ratio: 1 / 1; border-radius: 5px; }
.cell.booked { background: var(--aurora); animation: pop .45s ease both; }
.cell.ghost { background: rgba(244,63,94,0.10); border: 1px solid rgba(244,63,94,0.6); }
@keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
.fv-legend { display: flex; gap: 18px; font-size: 12px; color: var(--muted); align-items: center; }
.fv-legend .sw { width: 12px; height: 12px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: middle; }

/* ---------- PRODUCTS GRID (used on BookKit pricing) ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product { padding: 30px; min-height: 240px; display: flex; flex-direction: column; transition: transform .15s ease, border-color .2s ease; }
.product:hover { transform: translateY(-4px); border-color: var(--violet); }
.product .tag { align-self: flex-start; font-size: 12px; letter-spacing: 1px; padding: 4px 12px; border-radius: 12px; margin-bottom: 20px; }
.tag-live { background: rgba(34,211,238,0.12); color: var(--cyan); }
.tag-soon { background: rgba(255,255,255,0.05); color: var(--muted); }
.product h3 { font-size: 24px; margin-bottom: 10px; }
.product .who { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.product .desc { font-size: 15px; color: var(--muted); flex-grow: 1; }
.product .link { margin-top: 18px; font-size: 14px; font-weight: 600; }
.product.live { border-color: rgba(139,92,246,0.4); }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 30px; }
.step .num { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { padding: 60px 40px; text-align: center; }
.cta h2 { font-size: 36px; margin-bottom: 14px; }
.cta p { color: var(--muted); font-size: 17px; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FORM (contact) ---------- */
.form { max-width: 520px; margin: 0 auto; text-align: left; }
.form label { display: block; font-size: 13px; color: var(--muted); margin: 16px 0 6px; letter-spacing: .3px; }
.form input, .form textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--cyan); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { margin-top: 22px; width: 100%; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { margin-top: 16px; text-align: center; font-size: 15px; }

/* ---------- FOOTER ---------- */
footer { padding: 40px 0; border-top: 1px solid var(--line); margin-top: 40px;
         display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .muted { color: var(--muted); font-size: 13px; }

/* =================================================================
   BOOKKIT DEMO  (only used on bookkit.html)
   ================================================================= */
.demo-shell { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.demo-bar { background: var(--panel); padding: 14px 18px; display: flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-url { margin-left: 14px; font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.demo-body { padding: 28px; display: grid; grid-template-columns: 320px 1fr; gap: 28px; background: rgba(255,255,255,0.02); }
.demo-col-title { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.pick { padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.03); cursor: pointer; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px; transition: border-color .15s ease; }
.pick:hover { border-color: var(--violet); }
.pick.selected { border-color: var(--cyan); background: rgba(34,211,238,0.06); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--line); flex-shrink: 0; }
.avatar.on { background: var(--aurora); }
.pick .pname { font-size: 15px; font-weight: 600; }
.pick .pmeta { font-size: 12px; color: var(--muted); }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.slot { padding: 12px 0; border-radius: 10px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.03); text-align: center; cursor: pointer; font-size: 14px;
  transition: all .15s ease; }
.slot:hover { border-color: var(--violet); }
.slot.selected { background: var(--aurora); color: var(--ink); font-weight: 600; border-color: transparent; }
.setting { display: flex; align-items: center; gap: 12px; margin: 4px 0 22px; padding: 14px 16px;
           border: 1px dashed var(--line); border-radius: 12px; }
.setting .switch { width: 46px; height: 26px; border-radius: 13px; background: var(--line); position: relative; cursor: pointer; flex-shrink: 0; transition: background .15s ease; }
.setting .switch.on { background: var(--cyan); }
.setting .knob { width: 20px; height: 20px; border-radius: 50%; background: #fff; position: absolute; top: 3px; left: 3px; transition: left .15s ease; }
.setting .switch.on .knob { left: 23px; }
.setting .stext { font-size: 13px; color: var(--muted); }
.summary { padding: 22px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.summary .row { display: flex; justify-content: space-between; align-items: center; margin: 8px 0; font-size: 15px; }
.summary .muted { color: var(--muted); }
.summary .price { font-size: 22px; font-weight: 700; color: var(--cyan); font-family: 'Space Grotesk'; }
.summary hr { border: none; border-top: 1px solid var(--line); margin: 16px 0; }
.book-btn { width: 100%; margin-top: 8px; }
.success { text-align: center; padding: 30px; }
.success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--aurora); margin: 0 auto 18px;
                  display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--ink); }
.success h3 { font-size: 22px; margin-bottom: 10px; }
.success p { color: var(--muted); font-size: 15px; }
.hidden { display: none; }

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
  .hero h1 { font-size: 40px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .products, .steps { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; padding: 28px; }
  .section h2, .cta h2 { font-size: 28px; }
  .demo-body { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(2, 1fr); }
}

/* respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
