/* ============================================================
   PIPELINE — Backend Engineering Studio
   Design tokens: blueprint-light theme, signal blue + amber
   Fonts: Space Grotesk (display) / IBM Plex Sans (body) / IBM Plex Mono (utility)
   ============================================================ */

:root{
  --bg:            #F5F6F8;
  --bg-alt:        #ECEFF4;
  --surface:       #FFFFFF;
  --ink:           #141A2B;
  --ink-soft:      #4B5468;
  --ink-faint:     #8791A4;
  --line:          #DDE2EA;
  --line-soft:     #E7EAF0;
  --accent:        #2F6FED;
  --accent-ink:    #1C4FC4;
  --accent-soft:   #E7EFFE;
  --amber:         #0261d0;
  --amber-ink:     #00489d;
  --amber-soft:    #FDF1DD;
  --success:       #1FA97A;
  --danger:        #E4573D;
  --code-bg:       #101627;
  --code-line:     #232B42;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --shadow-sm:     0 1px 2px rgba(20,26,43,.06);
  --shadow-md:     0 8px 24px rgba(20,26,43,.08);
  --shadow-lg:     0 20px 48px rgba(20,26,43,.12);
  --container-max: 1240px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:'IBM Plex Sans', system-ui, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5,h6, .display-font{
  font-family:'Space Grotesk', sans-serif;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.01em;
}

.mono{ font-family:'IBM Plex Mono', monospace; }

a{ color:var(--accent); text-decoration:none; }
a:hover{ color:var(--accent-ink); }

::selection{ background:var(--accent); color:#fff; }

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

.container-xl{
  width:100%;
  max-width:var(--container-max);
  margin-inline:auto;
  padding-inline:1.25rem;
}

/* ---------- Grid paper texture (subtle, used behind hero/sections) ---------- */
.grid-texture{
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size:40px 40px;
  background-position:-1px -1px;
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family:'IBM Plex Mono', monospace;
  font-size:.75rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-ink);
  background:var(--accent-soft);
  border:1px solid #D6E3FD;
  padding:.35rem .75rem;
  border-radius:100px;
}
.eyebrow .dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 3px rgba(31,169,122,.18);
}

.section-head{ max-width:640px; }
.section-head p{ color:var(--ink-soft); font-size:1.05rem; }
.section-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ink-faint);
  margin-bottom:.6rem;
  display:block;
}

section{ padding:6rem 0; }
.section-alt{ background:var(--bg-alt); }
@media (max-width:767.98px){
  section{ padding:4rem 0; }
}

/* ---------- Buttons ---------- */
.btn{
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
  border-radius:100px;
  padding:.7rem 1.5rem;
  font-size:.95rem;
  border:1px solid transparent;
  transition:all .18s ease;
}
.btn-signal{
  background:var(--ink);
  color:#fff;
}
.btn-signal:hover{ background:var(--accent-ink); color:#fff; transform:translateY(-1px); }
.btn-outline-ink{
  background:transparent;
  border-color:var(--line);
  color:var(--ink);
}
.btn-outline-ink:hover {
    border-color: var(--ink);
    background: var(--surface);
    color: var(--ink) !important;
}
.btn-amber{
  background:var(--amber);
  color:var(--accent-soft);
}
.btn-amber:hover{ background:var(--amber-ink); color:#fff; }
.btn-lg{ padding:.9rem 2rem; font-size:1rem; }
.btn-sm{ padding:.45rem 1rem; font-size:.82rem; }
.btn-block-icon{ display:inline-flex; align-items:center; gap:.5rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.pl-navbar{
  position:sticky; top:0; z-index:1000;
  background:rgba(245,246,248,.86);
  backdrop-filter:blur(10px) saturate(140%);
  border-bottom:1px solid var(--line-soft);
}
.pl-navbar .navbar-brand{
  display:flex; align-items:center; gap:.6rem;
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  font-size:1.15rem;
  color:var(--ink);
}
.pl-navbar .navbar-brand:hover{ color:var(--ink); }
.brand-mark{
  width:34px; height:34px;
  border-radius:9px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  flex-shrink:0;
}
.brand-mark svg{ width:18px; height:18px; }
.brand-tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:.68rem;
  color:var(--ink-faint);
  letter-spacing:.08em;
  display:block;
  font-weight:400;
  margin-top:-2px;
}
.pl-nav-links{ gap:.3rem; }
.pl-nav-links .nav-link{
  color:var(--ink-soft);
  font-weight:500;
  font-size:.94rem;
  padding:.5rem .9rem !important;
  border-radius:100px;
  transition:all .15s ease;
}
.pl-nav-links .nav-link:hover, .pl-nav-links .nav-link.active{
  color:var(--ink);
  background:var(--bg-alt);
}

/* Offcanvas sidebar (mobile menu, opens left -> right) */
.offcanvas.pl-offcanvas{
  width:300px;
  background:var(--surface);
  border-right:1px solid var(--line);
}
.pl-offcanvas .offcanvas-header{ border-bottom:1px solid var(--line-soft); }
.pl-offcanvas .nav-link{
  color:var(--ink);
  font-size:1.05rem;
  font-weight:500;
  padding:.85rem .25rem;
  border-bottom:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:space-between;
}
.pl-offcanvas .nav-link:hover{ color:var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  overflow:hidden;
  padding-top:5rem;
  padding-bottom:4rem;
}
.hero-copy h1{
  font-size:clamp(2.3rem, 4.6vw, 3.6rem);
  line-height:1.08;
}
.hero-copy .lede{
  font-size:1.15rem;
  color:var(--ink-soft);
  max-width:520px;
}
.hero-stats{
  display:flex; gap:2.2rem; flex-wrap:wrap;
  margin-top:2.5rem;
  padding-top:1.75rem;
  border-top:1px solid var(--line);
}
.hero-stats .stat-num{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  font-size:1.6rem;
  color:var(--ink);
}
.hero-stats .stat-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  color:var(--ink-faint);
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Hero pipeline diagram panel */
.pipeline-panel{
  background:var(--code-bg);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  box-shadow:var(--shadow-lg);
  color:#C9D2E8;
  position:relative;
}
.pipeline-panel .panel-bar{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:1.4rem;
}
.panel-dots{ display:flex; gap:6px; }
.panel-dots span{ width:9px; height:9px; border-radius:50%; background:#3A4360; }
.panel-title{ font-family:'IBM Plex Mono',monospace; font-size:.72rem; color:#7A84A8; }

.pipeline-diagram{ width:100%; height:auto; display:block; }
.pipeline-node-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  fill:#C9D2E8;
}
.pipeline-sub-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:9px;
  fill:#6F7A9C;
}
.pipeline-status{
  margin-top:1.4rem;
  display:flex; gap:1.2rem; flex-wrap:wrap;
  font-family:'IBM Plex Mono', monospace;
  font-size:.75rem;
  color:#7A84A8;
  border-top:1px solid var(--code-line);
  padding-top:1rem;
}
.pipeline-status b{ color:#4ADE9A; font-weight:600; }

/* Signature traveling-dot divider */
.trace-divider{
  width:100%; height:34px;
  display:block;
}

/* ============================================================
   CARDS / COMPONENTS
   ============================================================ */
.pl-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:1.9rem;
  height:100%;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pl-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:#CBD7F5;
}
.pl-card .icon-tile{
  width:46px; height:46px;
  border-radius:11px;
  background:var(--accent-soft);
  color:var(--accent-ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.1rem;
}
.pl-card .icon-tile svg{ width:22px; height:22px; }

/* Service card with status-code numbering */
.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:2rem;
  height:100%;
  position:relative;
  transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.status-code{
  font-family:'IBM Plex Mono', monospace;
  font-weight:600;
  font-size:.78rem;
  color:var(--success);
  background:#E9F9F2;
  border-radius:100px;
  padding:.25rem .65rem;
  display:inline-block;
  margin-bottom:1rem;
}
.service-card .tag-row{ margin-top:1.1rem; display:flex; flex-wrap:wrap; gap:.4rem; }
.tag-chip{
  font-family:'IBM Plex Mono', monospace;
  font-size:.7rem;
  background:var(--bg-alt);
  border:1px solid var(--line);
  color:var(--ink-soft);
  padding:.25rem .55rem;
  border-radius:6px;
}

/* Why-choose list */
.why-item{ display:flex; gap:1rem; }
.why-item .num{
  font-family:'IBM Plex Mono', monospace;
  font-size:.8rem;
  color:var(--accent-ink);
  background:var(--accent-soft);
  width:34px;height:34px;flex-shrink:0;
  border-radius:9px;
  display:flex;align-items:center;justify-content:center;
}

/* Process timeline */
.process-track{
  position:relative;
}
.process-track::before{
  content:"";
  position:absolute;
  left:0; right:0; top:51px;
  height:2px;
  background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
}
@media (max-width:991.98px){ .process-track::before{ display:none; } }
.process-step{ position:relative; text-align:left; }
.process-step .step-dot{
  width:52px;height:52px;border-radius:50%;
  background:var(--surface);
  border:2px solid var(--ink);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk', sans-serif; font-weight:700;
  position:relative; z-index:1;
  margin-bottom:1.1rem;
}
.process-step:nth-child(odd) .step-dot{ background:var(--ink); color:#fff; }

/* Tech stack chips */
.stack-chip{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:1rem .6rem;
  text-align:center;
  font-family:'IBM Plex Mono', monospace;
  font-size:.82rem;
  color:var(--ink-soft);
  transition:all .15s ease;
}
.stack-chip:hover{ border-color:var(--accent); color:var(--accent-ink); background:var(--accent-soft); }

/* Offer cards */
.offer-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:2rem;
  height:100%;
}
.offer-card ul{ list-style:none; padding:0; margin:1.1rem 0 0; }
.offer-card ul li{
  display:flex; gap:.6rem; align-items:flex-start;
  padding:.4rem 0;
  color:var(--ink-soft);
  font-size:.92rem;
}
.offer-card ul li svg{ flex-shrink:0; margin-top:3px; color:var(--success); }

/* Pricing */
.pricing-toggle{
  display:inline-flex;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:100px;
  padding:.3rem;
}
.pricing-toggle button{
  border:none; background:transparent;
  padding:.5rem 1.1rem;
  border-radius:100px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.78rem;
  font-weight:600;
  color:var(--ink-soft);
  transition:all .15s ease;
}
.pricing-toggle button.active{ background:var(--ink); color:#fff; }

.price-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:2.2rem;
  height:100%;
  position:relative;
  transition:transform .2s ease, box-shadow .2s ease;
}
.price-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.price-card.featured{
  border:2px solid var(--ink);
  background:var(--ink);
  color:#fff;
}
.price-card.featured .plan-desc,
.price-card.featured .price-note{ color:#A9B2C9; }
.price-card.featured ul li{ color:#DDE2EE; }
.price-card.featured ul li svg{ color:var(--amber); }
.badge-popular{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--amber); color:var(--accent-soft);
  font-family:'IBM Plex Mono', monospace;
  font-size:.68rem; font-weight:700;
  letter-spacing:.06em;
  padding:.32rem .8rem;
  border-radius:100px;
  text-transform:uppercase;
}
.plan-name{ font-family:'IBM Plex Mono', monospace; font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-faint); }
.price-card.featured .plan-name{ color:#8B96B5; }
.plan-price{ font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:2.6rem; margin:.3rem 0; }
.plan-price span{ font-size:1rem; font-weight:500; color:var(--ink-faint); }
.price-card.featured .plan-price span{ color:#8B96B5; }
.price-card ul{ list-style:none; padding:0; margin:1.5rem 0; }
.price-card ul li{ display:flex; gap:.6rem; padding:.4rem 0; font-size:.9rem; color:var(--ink-soft); }

/* Testimonials */
.testi-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:2rem;
  height:100%;
}
.testi-card .quote-mark{ font-family:'Space Grotesk',sans-serif; font-size:2.5rem; color:var(--accent); line-height:1; }
.testi-avatar{
  width:42px;height:42px;border-radius:50%;
  background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk',sans-serif; font-weight:700;
  color:var(--ink-soft);
}

/* FAQ (bootstrap accordion re-skin) */
.pl-accordion .accordion-item{
  background:transparent;
  border:none;
  border-bottom:1px solid var(--line);
}
.pl-accordion .accordion-button{
  background:transparent;
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:1.05rem;
  color:var(--ink);
  padding:1.3rem .25rem;
  box-shadow:none;
}
.pl-accordion .accordion-button:not(.collapsed){ color:var(--accent-ink); }
.pl-accordion .accordion-button::after{ filter:none; }
.pl-accordion .accordion-body{ padding:0 .25rem 1.4rem; color:var(--ink-soft); }

/* CTA band */
.cta-band{
  background:var(--ink);
  border-radius:var(--radius-lg);
  padding:3.5rem;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:#AEB6CC; }

/* ============================================================
   FOOTER
   ============================================================ */
.pl-footer{
  background:var(--bg-alt);
  border-top:1px solid var(--line);
  padding-top:4rem;
}
.pl-footer h6{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink-faint);
  margin-bottom:1.1rem;
}
.pl-footer a{ color:var(--ink-soft); }
.pl-footer a:hover{ color:var(--accent); }
.pl-footer .footer-bottom{
  border-top:1px solid var(--line);
  margin-top:3rem;
  padding:1.5rem 0;
  font-size:.85rem;
  color:var(--ink-faint);
}
.social-dot{
  width:36px;height:36px;border-radius:50%;
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-soft);
  transition:all .15s ease;
}
.social-dot:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* ============================================================
   AUTH / LOGIN PAGE
   ============================================================ */
.auth-wrap{ min-height:100vh; }
.auth-visual {
    background: #96c6ff;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}
.auth-visual .visual-quote{ font-family:'Space Grotesk',sans-serif; font-size:1.6rem; line-height:1.35; max-width:420px; }
.auth-form-side{
  display:flex; align-items:center; justify-content:center;
  padding:2.5rem 1.5rem;
}
.auth-card{ width:100%; max-width:400px; }
.form-control-pl{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:.75rem 1rem;
  font-size:.95rem;
}
.form-control-pl:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-soft);
}
.form-label-pl{
  font-family:'IBM Plex Mono', monospace;
  font-size:.75rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:.4rem;
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dash-body{ background:var(--bg-alt); }
.dash-sidebar{
  background:var(--ink);
  color:#C9D2E8;
  min-height:100vh;
  padding:1.5rem 1.1rem;
}
.dash-sidebar .brand-mark{ background:var(--accent); }
.dash-nav .nav-link{
  color:#9BA6C4;
  font-size:.92rem;
  font-weight:500;
  padding:.65rem .9rem;
  border-radius:9px;
  display:flex; align-items:center; gap:.7rem;
  margin-bottom:.15rem;
}
.dash-nav .nav-link svg{ width:18px; height:18px; flex-shrink:0; }
.dash-nav .nav-link:hover{ background:#1D2540; color:#fff; }
.dash-nav .nav-link.active{ background:var(--accent); color:#fff; }
.dash-nav .nav-section-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:.66rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#5C6688;
  margin:1.3rem .9rem .5rem;
}
.dash-topbar{
  background:var(--surface);
  border-bottom:1px solid var(--line);
  padding:1rem 1.6rem;
  position:sticky; top:0; z-index:900;
}
.dash-search{
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:100px;
  padding:.5rem 1.1rem;
  font-size:.88rem;
  min-width:240px;
}
.dash-main{ padding:1.8rem; }
.dash-stat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:1.5rem;
  height:100%;
}
.dash-stat-card .stat-top{ display:flex; align-items:center; justify-content:space-between; }
.dash-stat-card .stat-icon{
  width:38px;height:38px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.dash-stat-card .stat-value{ font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:1.9rem; margin-top:.6rem; }
.dash-stat-card .stat-delta{ font-family:'IBM Plex Mono', monospace; font-size:.76rem; }
.delta-up{ color:var(--success); }
.delta-down{ color:var(--danger); }

.dash-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:1.6rem;
}
.dash-panel .panel-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }

.table-pl{ font-size:.9rem; }
.table-pl thead th{
  font-family:'IBM Plex Mono', monospace;
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink-faint);
  border-bottom:1px solid var(--line);
  font-weight:600;
  padding-bottom:.7rem;
}
.table-pl td{ padding:.85rem .5rem; border-bottom:1px solid var(--line-soft); vertical-align:middle; }
.status-pill{
  font-family:'IBM Plex Mono', monospace;
  font-size:.7rem; font-weight:600;
  padding:.28rem .65rem;
  border-radius:100px;
}
.status-pill.live{ background:#E9F9F2; color:var(--success); }
.status-pill.building{ background:var(--amber-soft); color:var(--amber-ink); }
.status-pill.failed{ background:#FCE9E5; color:var(--danger); }

/* Simple CSS bar chart for dashboard */
.bar-chart{ display:flex; align-items:flex-end; gap:.9rem; height:180px; }
.bar-chart .bar-col{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.bar-chart .bar{ width:100%; max-width:28px; background:var(--accent-soft); border-radius:6px 6px 0 0; position:relative; transition:height .6s ease; }
.bar-chart .bar.active{ background:var(--accent); }
.bar-chart .bar-label{ font-family:'IBM Plex Mono', monospace; font-size:.68rem; color:var(--ink-faint); margin-top:.5rem; }

/* Floating chat widget */
.chat-launcher{
  position:fixed; bottom:24px; right:24px; z-index:1200;
  width:58px; height:58px; border-radius:50%;
  background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg);
  border:none;
  cursor:pointer;
}
.chat-launcher .chat-ping{
  position:absolute; top:-2px; right:-2px;
  width:12px;height:12px;border-radius:50%;
  background:var(--danger);
  border:2px solid var(--bg);
}
.chat-window{
  position:fixed; bottom:96px; right:24px; z-index:1200;
  width:340px; max-width:calc(100vw - 32px);
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid var(--line);
  display:none;
  flex-direction:column;
  overflow:hidden;
}
.chat-window.open{ display:flex; }
.chat-head{
  background:var(--ink); color:#fff;
  padding:1rem 1.2rem;
  display:flex; align-items:center; gap:.7rem;
}
.chat-head .online-dot{ width:8px;height:8px;border-radius:50%; background:var(--success); }
.chat-body{ padding:1rem; height:280px; overflow-y:auto; background:var(--bg-alt); display:flex; flex-direction:column; gap:.7rem; }
.chat-msg{ max-width:80%; padding:.6rem .85rem; border-radius:12px; font-size:.86rem; line-height:1.4; }
.chat-msg.from-them{ background:var(--surface); border:1px solid var(--line); align-self:flex-start; border-bottom-left-radius:2px; }
.chat-msg.from-me{ background:var(--ink); color:#fff; align-self:flex-end; border-bottom-right-radius:2px; }
.chat-foot{ padding:.8rem; border-top:1px solid var(--line); display:flex; gap:.5rem; }
.chat-foot input{
  flex:1; border:1px solid var(--line); border-radius:100px;
  padding:.5rem 1rem; font-size:.85rem; background:var(--bg-alt);
}
.chat-foot button{
  width:38px;height:38px;border-radius:50%;
  background:var(--accent); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* ============================================================
   GENERIC PAGE HEADER (contact / order / thank-you)
   ============================================================ */
.page-header{
  padding:5rem 0 3.5rem;
  position:relative;
}
.page-header h1{ font-size:clamp(2rem,4vw,2.8rem); }
.breadcrumb-pl{
  font-family:'IBM Plex Mono', monospace;
  font-size:.78rem;
  color:var(--ink-faint);
}
.breadcrumb-pl a{ color:var(--ink-faint); }
.breadcrumb-pl a:hover{ color:var(--accent); }

.info-strip-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:1.6rem;
  height:100%;
}

/* Thank-you page */
.thankyou-mark{
  width:88px;height:88px;border-radius:50%;
  background:#E9F9F2;
  color:var(--success);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.6rem;
}
.order-ref{
  font-family:'IBM Plex Mono', monospace;
  background:var(--bg-alt);
  border:1px dashed var(--line);
  border-radius:var(--radius-sm);
  padding:1rem 1.4rem;
  display:inline-flex;
  gap:.8rem;
  align-items:center;
}

/* Order summary page */
.order-line{
  display:flex; justify-content:space-between; align-items:center;
  padding:.9rem 0; border-bottom:1px solid var(--line-soft);
  font-size:.94rem;
}
.order-line:last-child{ border-bottom:none; }
.order-total{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:1.2rem; margin-top:.5rem; border-top:2px solid var(--ink);
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:1.3rem;
}

/* Utility */
.text-soft{ color:var(--ink-soft); }
.text-faint{ color:var(--ink-faint); }
.bg-surface{ background:var(--surface); }
.rounded-pl{ border-radius:var(--radius-md); }
.border-pl{ border:1px solid var(--line); }
a.navbar-brand img {
    width: auto;
    height: 42px;
}

.icon-tile svg {
    width: auto;
    height: 30px;
}

.dash-sidebar .navbar-brand img {
    filter: invert(1);
}

#cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }
    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }
    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }
    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }
    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #000;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #666 !important;
}

.page-title-big-typography {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}