:root {
  --ink: #0A0C10;
  --surface: #12151C;
  --surface-2: #1A1E27;
  --hairline: #242A34;
  --hairline-2: #2F3743;
  --text: #F4F6F8;
  --text-2: #9BA3AE;
  --muted: #5B6470;
  --signal: #34E29B;
  --signal-glow: rgba(52,226,155,.14);
  --bg: var(--ink);
  --card: var(--surface);
  --card-strong: var(--surface-2);
  --subtle: var(--muted);
  --line: var(--hairline);
  --line-strong: var(--hairline-2);
  --accent-dark: var(--ink);
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 24px 70px rgba(0,0,0,0.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
p { color: var(--text-2); margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { font-size: clamp(3.25rem, 7.2vw, 7.4rem); max-width: 1120px; font-weight: 850; }
h2 { font-size: clamp(2.15rem, 3.7vw, 4.4rem); font-weight: 820; }
h3 { font-size: 1.2rem; font-weight: 780; }
ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(52,226,155,0.72);
  outline-offset: 3px;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }
.section-pad { padding: 128px 0; }
.section-pad.compact { padding-top: 76px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.88);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--signal); color: var(--ink);
  font-weight: 900;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 12px; border-radius: 999px;
  color: var(--muted); font-size: 0.93rem; font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); background: rgba(244,246,248,0.055); }
.main-nav a[aria-current="page"] { box-shadow: inset 0 0 0 1px var(--hairline); }
.main-nav .nav-cta { color: var(--ink); background: var(--signal); font-weight: 850; padding-inline: 16px; box-shadow: 0 0 0 4px var(--signal-glow); }
.main-nav .nav-cta:hover { color: var(--ink); background: #55ebb0; }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; background: var(--card-strong); color: var(--text); font: inherit; font-weight: 800; }
.hero { min-height: calc(100vh - 70px); display: flex; align-items: center; padding-top: 104px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr); gap: 52px; align-items: center; }
.hero-grid--editorial { grid-template-columns: 1fr; gap: 54px; }
.hero-grid--editorial .hero-copy { max-width: 1040px; }
.eyebrow { color: var(--text); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 850; margin-bottom: 22px; font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.hero-subtitle { font-size: clamp(1.18rem, 2vw, 1.6rem); max-width: 760px; margin-top: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 36px 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; border-radius: 999px; padding: 14px 21px; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signal); color: var(--ink); box-shadow: 0 0 0 5px var(--signal-glow); }
.btn-primary:hover { background: #55ebb0; box-shadow: 0 0 0 6px var(--signal-glow); }
.btn-secondary { background: rgba(244,246,248,0.02); border-color: var(--line); color: var(--text); }
.btn-secondary:hover { border-color: var(--line-strong); background: rgba(244,246,248,0.055); }
.proof-line { max-width: 760px; font-size: 1rem; color: var(--text-2); }
.proof-line + .proof-line { margin-top: 8px; }
.hero-panel, .tech-box, .cta-card, .case-card, .service-card-large, .contact-form, .contact-side, .featured-product {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26,30,39,0.92), rgba(18,21,28,0.96));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.featured-product {
  overflow: hidden;
  padding: 22px;
}
.featured-product__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.featured-product__header h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
}
.featured-product > p {
  max-width: 620px;
  margin-bottom: 22px;
}
.featured-product__screen {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #080a0e;
  aspect-ratio: 16 / 9;
}
.featured-product__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel { padding: 18px; min-height: 470px; display: flex; flex-direction: column; gap: 18px; }
.panel-topbar { display: flex; gap: 8px; padding: 8px; }
.panel-topbar span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.24); }
.metric-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.main-metric { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.metric-label, .tag { color: var(--muted); text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.72rem; font-weight: 850; font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.main-metric strong { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.05em; margin: 16px 0; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; min-height: 100px; }
.mini-card span { color: var(--subtle); display: block; margin-bottom: 14px; font-size: .8rem; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p:not(.eyebrow) { margin-top: 18px; font-size: 1.1rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.five-grid .project-card:nth-child(1), .five-grid .project-card:nth-child(2) { grid-column: span 1; }
.project-card, .process-step, .principle-card, .service-item, .contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.project-card, .process-step, .principle-card, .service-item, .mini-card, .service-card-large, .case-card, .contact-card {
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.project-card:hover, .process-step:hover, .principle-card:hover, .service-item:hover, .mini-card:hover, .service-card-large:hover, .case-card:hover, .contact-card:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.project-card h3 { margin: 14px 0 10px; font-size: 1.45rem; }
.project-card h3:first-child { margin-top: 0; }
.muted-section { background: #0d1016; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.sticky-heading { position: sticky; top: 110px; }
.text-link { display: inline-flex; margin-top: 28px; color: var(--text); font-weight: 850; border-bottom: 1px solid var(--signal); }
.service-list { display: grid; gap: 14px; }
.service-item { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
.service-item span, .process-step span { color: var(--subtle); font-weight: 800; }
.service-item h3 { margin-bottom: 8px; font-size: 1.55rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step h3 { margin: 24px 0 10px; }
.tech-box { padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.tech-box h2 { font-size: clamp(2rem, 3vw, 3.4rem); }
.stack-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.stack-cloud span { padding: 10px 13px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text); font-weight: 750; font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .86rem; }
.ai-note { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); }
.cta-section { padding-top: 56px; }
.cta-card { padding: 56px; text-align: center; }
.cta-card p:not(.eyebrow) { max-width: 640px; margin: 18px auto 28px; }
.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: rgba(0,0,0,0.1); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.footer-grid p { max-width: 470px; margin-top: 16px; }
.footer-location { color: var(--subtle); font-weight: 750; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.page-hero { padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); }
.page-hero p:not(.eyebrow) { font-size: 1.25rem; margin-top: 24px; }
.work-editorial {
  position: relative;
  overflow: hidden;
}
.work-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244,246,248,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,246,248,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}
.work-editorial > * { position: relative; }
.work-gallery {
  display: grid;
  gap: 96px;
}
.editorial-case {
  display: grid;
  gap: 28px;
  padding: 0 0 96px;
  border-bottom: 1px solid var(--line);
}
.editorial-case:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.editorial-case--lead {
  gap: 34px;
}
.editorial-case__header {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.case-index {
  margin-top: 8px;
  color: var(--signal);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: .06em;
}
.case-label {
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 850;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  margin-bottom: 18px;
}
.editorial-case h2 {
  max-width: 1040px;
  font-size: clamp(2.6rem, 5.8vw, 6.2rem);
  line-height: .98;
}
.editorial-case h2 span {
  display: block;
  color: var(--text-2);
  font-weight: 760;
}
.editorial-case--lead h2 {
  font-size: clamp(3.2rem, 7vw, 7.2rem);
}
.case-copy {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(1.04rem, 1.6vw, 1.32rem);
}
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 116px;
}
.case-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18,21,28,.72);
  color: var(--text-2);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .02em;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,30,39,.98), rgba(8,10,14,.98));
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  padding: 38px 14px 14px;
}
.browser-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5f57;
  box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #28c840;
}
.browser-frame::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 78px;
  right: 16px;
  height: 11px;
  border-radius: 999px;
  background: rgba(244,246,248,.06);
  border: 1px solid rgba(244,246,248,.04);
}
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(244,246,248,.06);
  background: #080a0e;
}
.browser-frame--lead img {
  max-height: 900px;
}
.editorial-case > .preview-link {
  justify-self: start;
  margin-left: 116px;
}
.case-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.case-meta .tag { margin: 0; }
.status-pill { color: var(--text-2); border: 1px solid var(--line); background: var(--surface-2); border-radius: 999px; padding: 6px 10px; font-size: .76rem; font-weight: 800; font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.status-pill--live { color: var(--signal); border-color: rgba(52,226,155,.32); background: var(--signal-glow); }
.build-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.build-note h3, .case-details h3 { margin-bottom: 10px; font-size: .95rem; letter-spacing: 0; }
.product-preview {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a0e;
  display: grid;
  place-items: center;
  gap: 16px;
  color: var(--subtle);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-align: center;
}
.product-preview p { max-width: 520px; font-weight: 700; letter-spacing: 0; }
.product-preview--image {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 10px;
  border-style: solid;
  background: #080a0e;
  place-items: stretch;
}
.product-preview--lead { aspect-ratio: 16 / 9; padding: 12px; }
.product-preview--image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}
.product-preview--lead img { height: 100%; }
.shot-storepilot, .shot-kepler, .shot-mybi, .shot-stayops, .shot-opscore, .shot-alcaisse {
  object-position: center;
  transform: none;
}
.product-preview--image .preview-link {
  justify-self: start;
  margin-top: 2px;
}
.preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--signal);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.preview-link:hover {
  transform: translateY(-1px);
  background: #55ebb0;
  box-shadow: 0 0 0 5px var(--signal-glow);
}
.case-card > .preview-link { justify-self: start; }
.case-specs {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}
.case-specs div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.case-specs dt {
  color: var(--text);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 6px;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.case-specs dd {
  color: var(--muted);
  margin: 0;
}
.trust-line { color: var(--signal); font-weight: 850; font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.page-hero .trust-line { margin-top: 18px; font-size: 1rem; }
.feature-list li { margin-bottom: 8px; }
.stack-line { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); color: var(--subtle); font-weight: 700; }
.services-grid-large { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card-large { padding: 34px; }
.service-card-large h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin: 12px 0 18px; }
.service-card-large h3 { margin-top: 28px; margin-bottom: 10px; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p + p { margin-top: 16px; }
.principles-list { display: grid; gap: 16px; }
.values-heading .eyebrow { margin-bottom: 0; }
.principle-card h3 { margin-bottom: 8px; }
.section-text { margin-top: 20px; font-size: 1.15rem; }
.legal-list { display: grid; gap: 18px; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.legal-card h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.legal-card p + p { margin-top: 10px; }
.legal-card a { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.contact-form { padding: 30px; display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--text); font-weight: 750; }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface); color: var(--text);
  padding: 14px 15px; font: inherit; outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(155,163,174,0.62); }
input:focus, textarea:focus { border-color: rgba(52,226,155,.5); background: var(--surface-2); }
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .95rem; color: var(--subtle); }
.form-note a { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.contact-side { padding: 30px; position: sticky; top: 110px; }
.contact-side h2 { font-size: 2rem; margin-bottom: 14px; }
.contact-side a { text-decoration: underline; text-underline-offset: 4px; }
.contact-card { margin-top: 24px; }
.contact-card ul { margin-top: 14px; }
.alcaisse-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: 42px;
  align-items: end;
}
.alcaisse-summary, .deployment-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,30,39,.86), rgba(18,21,28,.94));
  box-shadow: var(--shadow);
}
.alcaisse-summary {
  padding: 28px;
}
.alcaisse-summary h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.alcaisse-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.alcaisse-copy {
  display: grid;
  gap: 24px;
}
.alcaisse-copy > p {
  font-size: 1.15rem;
}
.deployment-note {
  padding: 24px;
}
.deployment-note .tag {
  margin-bottom: 10px;
}
.center-actions {
  justify-content: center;
}
.demo-body {
  background:
    linear-gradient(rgba(244,246,248,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,246,248,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 70px 70px;
}
.demo-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 36px;
}
.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,12,16,.88);
}
.demo-disclaimer {
  color: var(--text-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.demo-exit {
  min-height: 40px;
  padding: 9px 14px;
}
.pos-app {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 112px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f7fb;
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
  color: #101522;
}
.pos-app p, .pos-app span, .pos-app small {
  color: #667085;
}
.pos-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #111827;
  color: #fff;
}
.pos-sidebar h1 {
  font-size: 1.35rem;
  line-height: 1.1;
  color: #fff;
}
.pos-nav {
  display: grid;
  gap: 8px;
}
.pos-nav button, .category-row button, .payment-methods button, .cart-head button, .cart-line button {
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}
.pos-nav button {
  text-align: left;
  padding: 12px 14px;
  border-radius: 8px;
  background: transparent;
  color: #cbd5e1;
  font-weight: 800;
}
.pos-nav button:hover, .pos-nav button.is-active {
  background: rgba(255,255,255,.09);
  color: #fff;
}
.pos-session {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.pos-session span, .pos-session small {
  display: block;
  color: #9ca3af;
  font-size: .78rem;
}
.pos-session strong {
  display: block;
  margin: 4px 0;
  color: #fff;
}
.pos-main {
  min-width: 0;
  padding: 26px;
}
.pos-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}
.pos-header h2 {
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 3.5rem);
}
.pos-status, .pos-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #e8fff4;
  color: #047857;
  font-weight: 850;
  font-size: .85rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}
.pos-message {
  margin-bottom: 16px;
  border: 1px solid #bbf7d0;
}
.pos-view {
  display: none;
}
.pos-view.is-active {
  display: block;
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}
.checkout-products, .cart-panel, .ops-cards article, .demo-table, .report-grid article {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.checkout-products {
  padding: 18px;
}
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.category-row button, .payment-methods button {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 850;
}
.category-row button.is-selected, .payment-methods button.is-selected {
  background: #101827;
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pos-product {
  min-height: 122px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pos-product:hover {
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.pos-product span, .pos-product small {
  display: block;
  font-size: .78rem;
}
.pos-product strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1rem;
}
.cart-panel {
  position: sticky;
  top: 18px;
  padding: 18px;
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.cart-head h2 {
  color: #0f172a;
  font-size: 1.5rem;
}
.cart-head button, .cart-line button {
  background: #f1f5f9;
  color: #334155;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 850;
}
.cart-lines {
  display: grid;
  gap: 10px;
  min-height: 130px;
}
.empty-cart {
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
}
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #eef2f7;
}
.cart-line strong, .cart-line span {
  display: block;
}
.cart-line span {
  font-size: .85rem;
}
.cart-totals {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.total-row {
  color: #0f172a;
  font-size: 1.2rem;
}
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.checkout-button {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: #101827;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.ops-cards, .report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ops-cards article, .report-grid article {
  padding: 18px;
}
.ops-cards strong, .report-grid strong {
  display: block;
  margin: 8px 0;
  color: #0f172a;
  font-size: 1.7rem;
}
.demo-table {
  overflow: hidden;
}
.demo-table h2 {
  padding: 18px;
  color: #0f172a;
  font-size: 2rem;
}
.demo-table div {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr .8fr;
  gap: 12px;
  padding: 13px 18px;
  border-top: 1px solid #eef2f7;
}
.demo-table span:first-child {
  color: #0f172a;
  font-weight: 850;
}
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .hero-grid, .split-layout, .tech-box, .case-card--lead, .about-grid, .contact-layout, .alcaisse-hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-panel { min-height: auto; }
  .hero-grid { gap: 36px; }
  .project-grid, .process-grid, .services-grid-large, .case-grid, .alcaisse-feature-grid { grid-template-columns: 1fr; }
  .sticky-heading, .contact-side { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .pos-app { grid-template-columns: 1fr; }
  .pos-sidebar { display: grid; grid-template-columns: 1fr; }
  .pos-session { margin-top: 0; }
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
}
@media (max-width: 820px) {
  body { background-attachment: scroll; }
  .site-header { border-radius: 24px; align-items: center; margin-top: 12px; }
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(11, 11, 10, .97); border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; }
  .main-nav .nav-cta { text-align: center; margin-top: 4px; }
  .container, .site-header { width: min(100% - 24px, 1180px); }
  h1 { font-size: clamp(2.45rem, 8.5vw, 4rem); line-height: 1.06; }
  h1, h2 { max-width: 100%; overflow-wrap: break-word; }
  h2 { font-size: clamp(1.95rem, 7vw, 3.1rem); }
  .hero-subtitle, .page-hero p:not(.eyebrow) { font-size: 1.08rem; }
  .hero { align-items: start; }
  .hero.section-pad { padding-top: 76px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .panel-grid { grid-template-columns: 1fr; }
  .featured-product__header { align-items: start; flex-direction: column; }
  .hero-panel, .tech-box, .cta-card, .case-card, .service-card-large, .contact-form, .contact-side, .project-card, .process-step, .principle-card, .service-item, .contact-card, .product-preview, .legal-card, .featured-product, .featured-product__screen { border-radius: 8px; }
  .case-card, .service-card-large, .contact-form, .contact-side, .tech-box { padding: 24px; }
  .work-gallery { gap: 72px; }
  .editorial-case { gap: 22px; padding-bottom: 72px; }
  .editorial-case, .editorial-case__header, .case-stack, .case-stack span, .browser-frame { min-width: 0; max-width: 100%; }
  .editorial-case__header { grid-template-columns: 1fr; gap: 12px; }
  .case-index { margin-top: 0; font-size: 1rem; }
  .case-label { margin-bottom: 12px; font-size: .62rem; }
  .editorial-case h2, .editorial-case--lead h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  .case-copy { margin-top: 18px; font-size: 1rem; }
  .case-stack { padding-left: 0; }
  .case-stack span {
    width: 100%;
    min-height: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.45;
  }
  .browser-frame { padding: 28px 8px 8px; }
  .browser-frame::before { top: 11px; left: 12px; }
  .browser-frame::after { top: 10px; left: 66px; right: 10px; }
  .editorial-case > .preview-link { margin-left: 0; }
  .demo-shell { width: min(100% - 16px, 1480px); padding-top: 8px; }
  .demo-topbar {
    align-items: stretch;
    border-radius: 8px;
    flex-direction: column;
  }
  .demo-exit { width: 100%; }
  .pos-main, .pos-sidebar { padding: 18px; }
  .pos-header { flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ops-cards, .report-grid { grid-template-columns: 1fr; }
  .demo-table div { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 34px 22px; }
  .service-item { grid-template-columns: 42px 1fr; gap: 14px; }
  .footer-grid { flex-direction: column; }
}
@media (max-width: 480px) {
  .section-pad { padding: 68px 0; }
  .section-pad.compact { padding-top: 48px; }
  .page-hero { padding-bottom: 38px; }
  h1 { font-size: clamp(2rem, 9.2vw, 2.5rem); line-height: 1.08; overflow-wrap: anywhere; }
  h2 { font-size: clamp(1.8rem, 9vw, 2.7rem); overflow-wrap: anywhere; }
  .editorial-case h2, .editorial-case--lead h2 { font-size: clamp(1.95rem, 9.3vw, 2.55rem); }
  .hero-grid { gap: 28px; }
  .eyebrow { margin-bottom: 16px; }
  .hero-subtitle { margin-top: 22px; }
  .hero-actions { margin: 28px 0 18px; }
  .project-grid, .process-grid, .services-grid-large, .service-list, .case-list { gap: 14px; }
  .work-showcase, .case-grid { gap: 14px; }
  .work-gallery { gap: 60px; }
  .editorial-case { padding-bottom: 60px; }
  .project-card, .process-step, .principle-card, .service-item, .contact-card, .legal-card { padding: 20px; }
  .featured-product, .case-card, .case-card--lead { padding: 18px; }
  .product-preview--image { padding: 8px; }
  .product-preview--lead { padding: 8px; }
  .case-card--lead h2 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .mini-card { min-height: auto; padding: 16px; }
  .main-metric strong { font-size: clamp(1.9rem, 12vw, 2.6rem); }
  .stack-cloud span { padding: 9px 11px; }
  input, textarea { padding: 13px 14px; }
  .pos-app { border-radius: 8px; }
  .pos-nav { grid-template-columns: 1fr 1fr; }
  .product-grid, .payment-methods { grid-template-columns: 1fr; }
  .checkout-products, .cart-panel { padding: 14px; }
  .pos-product { min-height: 108px; }
  .demo-table div { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
