/* FurniStack public marketing site
   Standalone public marketing property.
*/

:root {
  --ink: #0b1020;
  --ink-2: #141a2e;
  --ink-3: #202842;
  --brand: #5b5cf6;
  --brand-2: #7c7dff;
  --teal: #20c7a8;
  --teal-soft: #dffaf4;
  --cloud: #f7f9fc;
  --white: #ffffff;
  --slate: #667085;
  --slate-2: #98a2b3;
  --line: #e7eaf0;
  --line-dark: rgba(255,255,255,.12);
  --danger: #c13d54;
  --success: #138a72;
  --shadow-sm: 0 8px 30px rgba(11,16,32,.07);
  --shadow-md: 0 24px 70px rgba(11,16,32,.12);
  --shadow-lg: 0 40px 100px rgba(11,16,32,.18);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --header: 78px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.3rem, 7.5vw, 6.9rem); font-weight: 800; }
h2 { font-size: clamp(2.4rem, 4.7vw, 4.5rem); font-weight: 780; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 720; }
::selection { background: rgba(91,92,246,.2); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.2rem;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(32,199,168,.11);
}

.lead {
  color: var(--slate);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
  max-width: 760px;
}

.muted { color: var(--slate); }
.eyebrow { color: var(--slate-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.grad-text {
  background: linear-gradient(112deg, var(--brand) 0%, #7778ff 44%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(231,234,240,.8);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(1.5);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { width: 176px; flex: 0 0 auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
}
.nav a {
  color: #3d465c;
  font-size: .93rem;
  font-weight: 600;
  transition: color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav .mobile-cta { display: none; }
.nav a[aria-current="page"] { position: relative; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -11px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
}
.header-actions { display: flex; align-items: center; gap: .75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 720;
  font-size: .93rem;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav a:focus-visible, .mobile-toggle:focus-visible {
  outline: 3px solid rgba(91,92,246,.25);
  outline-offset: 3px;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #6e70ff 55%, #6466f5);
  box-shadow: 0 8px 26px rgba(91,92,246,.28);
}
.btn-primary:hover { box-shadow: 0 12px 34px rgba(91,92,246,.36); }
.btn-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  box-shadow: 0 3px 12px rgba(11,16,32,.04);
}
.btn-secondary:hover { border-color: #cfd4df; box-shadow: var(--shadow-sm); }
.btn-ghost-dark {
  color: white;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.btn-sm { min-height: 42px; padding: .62rem .95rem; font-size: .88rem; }
.icon-arrow { transition: transform .2s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  align-items: center;
  justify-content: center;
}
.mobile-toggle span, .mobile-toggle span::before, .mobile-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s;
}
.mobile-toggle span { position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after { content:""; position:absolute; left:0; }
.mobile-toggle span::before { top:-6px; }
.mobile-toggle span::after { top:6px; }
.nav-open .mobile-toggle span { background: transparent; }
.nav-open .mobile-toggle span::before { top:0; transform: rotate(45deg); }
.nav-open .mobile-toggle span::after { top:0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 76px;
  background:
    radial-gradient(circle at 80% 15%, rgba(91,92,246,.10), transparent 29%),
    radial-gradient(circle at 10% 65%, rgba(32,199,168,.08), transparent 25%),
    linear-gradient(#fff, #fbfcff 72%, #f7f9fc);
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(11,16,32,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,16,32,.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.58), transparent 85%);
  pointer-events:none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 44px;
}
.hero-copy { padding: 8px 0; }
.hero h1 {
  max-width: 700px;
  font-size: clamp(3.7rem, 5.15vw, 5rem);
  line-height: .99;
  letter-spacing: -.047em;
}
.hero .lead {
  margin-top: 1.35rem;
  max-width: 620px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.64;
}
.hero-actions { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:1.55rem; }
.hero-note {
  display:flex; align-items:center; gap:.7rem;
  margin-top: 1.15rem;
  color: var(--slate);
  font-size:.87rem;
}
.hero-note .dots { display:flex; }
.hero-note .dots i {
  width:25px; height:25px; border-radius:50%;
  margin-left:-6px; border:2px solid white;
  background: linear-gradient(135deg,#dfe4ed,#f8fafc);
}
.hero-note .dots i:first-child { margin-left:0; background: linear-gradient(135deg,#cbd5e1,#94a3b8); }
.hero-note .dots i:nth-child(2) { background: linear-gradient(135deg,#a5b4fc,#6366f1); }
.hero-note .dots i:nth-child(3) { background: linear-gradient(135deg,#99f6e4,#14b8a6); }

.product-stage {
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-orbit {
  position:absolute; width:520px; height:520px; border-radius:50%;
  border:1px dashed rgba(91,92,246,.15);
  animation: spin 28s linear infinite;
}
.product-orbit::after {
  content:""; position:absolute; top:19px; left:70px; width:10px; height:10px; border-radius:50%; background:var(--teal);
  box-shadow:0 0 0 7px rgba(32,199,168,.12);
}
@keyframes spin { to { transform:rotate(360deg); } }

.dashboard {
  position:relative;
  z-index:2;
  width: 100%;
  max-width: 600px;
  background: #0e1426;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  box-shadow: 0 45px 110px rgba(11,16,32,.25);
  overflow:hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}
.dash-top {
  height: 52px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 16px 0 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#11182c;
}
.dash-top-left { display:flex; align-items:center; gap:.6rem; color:white; font-size:.72rem; font-weight:700; }
.mini-logo { width:22px; height:22px; border-radius:7px; background:linear-gradient(135deg,var(--brand-2),var(--teal)); }
.window-dots { display:flex; gap:5px; }
.window-dots i { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.24); }
.dash-body { display:grid; grid-template-columns: 116px 1fr; min-height:420px; }
.dash-side { border-right:1px solid rgba(255,255,255,.07); padding:14px 10px; background:#0c1222; }
.side-item { height:26px; border-radius:7px; margin-bottom:6px; display:flex; align-items:center; padding:0 8px; gap:7px; color:#7e8aa5; font-size:6.8px; }
.side-item.active { color:#fff; background:rgba(91,92,246,.16); }
.side-dot { width:7px; height:7px; border-radius:2px; background:currentColor; opacity:.55; }
.dash-main { padding: 22px; background:linear-gradient(180deg,#10172a,#0d1425); }
.dash-heading { color:white; font-size:17px; letter-spacing:-.03em; font-weight:730; }
.dash-sub { color:#7f8aa3; font-size:8px; margin-top:3px; }
.metric-row { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:17px; }
.metric {
  padding:13px; min-height:76px; border:1px solid rgba(255,255,255,.07); border-radius:12px; background:rgba(255,255,255,.03);
}
.metric-label { color:#8390aa; font-size:7px; }
.metric-value { color:white; font-weight:760; font-size:19px; margin-top:5px; letter-spacing:-.04em; }
.metric-trend { color:#6ee7c8; font-size:6.5px; margin-top:2px; }
.dash-panel { margin-top:10px; border:1px solid rgba(255,255,255,.07); border-radius:13px; background:rgba(255,255,255,.025); padding:14px; }
.panel-title { display:flex; justify-content:space-between; align-items:center; color:white; font-size:8px; font-weight:700; }
.chart { height:94px; display:flex; align-items:flex-end; gap:6px; padding-top:12px; }
.chart i { flex:1; border-radius:4px 4px 2px 2px; background:linear-gradient(180deg,#696bff,rgba(91,92,246,.14)); min-height:12px; }
.chart i:nth-child(2n){ background:linear-gradient(180deg,#24c8aa,rgba(32,199,168,.13)); }

.float-card {
  position:absolute; z-index:4;
  border:1px solid rgba(231,234,240,.95);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(15px);
  border-radius:14px;
  box-shadow:var(--shadow-md);
  padding:12px 14px;
  animation: float 5s ease-in-out infinite;
}
.float-card strong { display:block; font-size:.8rem; }
.float-card small { color:var(--slate); font-size:.68rem; }
.float-card .status-dot { width:7px;height:7px;border-radius:50%;background:var(--teal);display:inline-block;margin-right:5px; }
.float-1 { top:18px; right:-8px; }
.float-2 { left:-24px; bottom:52px; animation-delay:-1.7s; }
.float-3 { right:4px; bottom:2px; animation-delay:-3s; }
@keyframes float { 50% { transform: translateY(-8px); } }

.trust-strip {
  padding: 34px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:white;
}
.trust-inner { display:flex; justify-content:space-between; align-items:center; gap:2rem; }
.trust-copy { color:var(--slate); font-size:.9rem; font-weight:600; }
.trust-tags { display:flex; gap:.65rem; flex-wrap:wrap; justify-content:flex-end; }
.trust-tag {
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.52rem .72rem;
  border:1px solid var(--line); border-radius:999px; color:#4c566d; font-size:.78rem; font-weight:650; background:var(--cloud);
}
.trust-tag i { width:7px;height:7px;border-radius:50%;background:var(--brand); }

.section { padding: 112px 0; }
.section-sm { padding: 78px 0; }
.section-cloud { background: var(--cloud); }
.section-dark { background:var(--ink); color:white; }
.section-dark h2,.section-dark h3,.section-dark h4 { color:white; }
.section-dark .lead { color:#aab3c6; }

.section-head {
  display:flex; justify-content:space-between; align-items:end; gap:3rem; margin-bottom:3.2rem;
}
.section-head > div:first-child { max-width:780px; }
.section-head .lead { max-width:520px; }

.lifecycle {
  margin-top: 55px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  border:1px solid var(--line);
  background:white;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.life-step { position:relative; padding:25px 20px 24px; min-height:155px; border-right:1px solid var(--line); }
.life-step:last-child { border-right:0; }
.life-num { color:var(--brand); font-size:.72rem; font-weight:800; letter-spacing:.08em; }
.life-step strong { display:block; margin-top:24px; font-size:1rem; }
.life-step p { color:var(--slate); font-size:.77rem; margin:.45rem 0 0; line-height:1.5; }
.life-step::after {
  content:"→"; position:absolute; right:-10px; top:30px; z-index:2; width:20px;height:20px;border-radius:50%;
  display:grid;place-items:center;background:white;border:1px solid var(--line); color:var(--brand); font-size:.7rem;
}
.life-step:last-child::after { display:none; }

.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.feature-card {
  padding:29px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
  min-height:260px;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:#d8dce5; }
.feature-icon {
  width:45px;height:45px;border-radius:12px; display:grid;place-items:center;
  background:linear-gradient(135deg,rgba(91,92,246,.1),rgba(32,199,168,.11));
  color:var(--brand); margin-bottom:36px;
}
.feature-icon svg { width:21px;height:21px; }
.feature-card h3 { margin-bottom:.7rem; }
.feature-card p { color:var(--slate); font-size:.93rem; line-height:1.65; }
.feature-link { display:inline-flex; align-items:center; gap:.4rem; margin-top:.35rem; color:var(--brand); font-size:.86rem; font-weight:720; }

.split {
  display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center;
}
.visual-panel {
  min-height:500px; border-radius:var(--radius-lg);
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 75% 25%,rgba(91,92,246,.13),transparent 30%),
    linear-gradient(145deg,#fbfcff,#f0f3f9);
  position:relative; overflow:hidden; padding:34px;
}
.visual-panel.dark {
  background:linear-gradient(145deg,#141a2e,#0b1020);
  border-color:rgba(255,255,255,.08);
}
.ui-window {
  width:100%; border-radius:16px; background:white; box-shadow:var(--shadow-md); border:1px solid var(--line); overflow:hidden;
}
.ui-window-head { height:42px;border-bottom:1px solid var(--line);display:flex;align-items:center;padding:0 14px;gap:5px;background:#fafbfc; }
.ui-window-head i { width:7px;height:7px;border-radius:50%;background:#d4d8e1; }
.ui-content { padding:18px; }
.ui-row { display:grid; grid-template-columns:44px 1.2fr .8fr .7fr; gap:10px; align-items:center; padding:10px 0; border-bottom:1px solid #eef0f4; font-size:9px; color:#667085; }
.ui-row:last-child{border-bottom:0;}
.ui-thumb{width:38px;height:32px;border-radius:7px;background:linear-gradient(135deg,#e8ebf1,#d5dae4);}
.ui-pill{display:inline-flex;width:max-content;padding:3px 7px;border-radius:999px;background:#e7faf5;color:#148a71;font-weight:700;font-size:7px;}
.ui-pill.blue{background:#eeeefe;color:#5758db;}
.ui-pill.amber{background:#fff5dd;color:#9a6b0b;}

.check-list { list-style:none; padding:0; margin:2rem 0 0; display:grid; gap:1.05rem; }
.check-list li { display:flex; align-items:flex-start; gap:.85rem; color:#4e5870; }
.check {
  flex:0 0 auto; width:22px;height:22px;border-radius:50%;
  display:grid;place-items:center;color:white;background:linear-gradient(135deg,var(--brand),var(--teal)); font-size:.72rem;font-weight:900;
}

.dark-grid {
  display:grid; grid-template-columns: .9fr 1.1fr; gap:72px; align-items:start;
}
.dark-feature-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.dark-feature {
  padding:24px; min-height:190px; border:1px solid var(--line-dark); border-radius:16px; background:rgba(255,255,255,.035);
}
.dark-feature .num { color:#7e80ff;font-size:.72rem;font-weight:800;letter-spacing:.08em; }
.dark-feature h3 { font-size:1.1rem;margin-top:32px; }
.dark-feature p { color:#9ca7bc;font-size:.84rem;line-height:1.6;margin-top:.6rem; }

.integration-cloud {
  display:grid; grid-template-columns: repeat(4,1fr); gap:14px;
}
.integration-tile {
  min-height:145px; padding:20px; border:1px solid var(--line); border-radius:16px; background:white;
  display:flex; flex-direction:column; justify-content:space-between;
  transition:.22s var(--ease);
}
.integration-tile:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.integration-glyph { width:37px;height:37px;border-radius:10px;background:var(--cloud);border:1px solid var(--line);display:grid;place-items:center;color:var(--brand);font-weight:800; }
.integration-tile strong { font-size:.95rem; }
.integration-tile small { color:var(--slate); }

.story-band {
  padding:70px; border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%,rgba(32,199,168,.14),transparent 26%),
    radial-gradient(circle at 15% 85%,rgba(91,92,246,.22),transparent 30%),
    var(--ink);
  color:white; position:relative; overflow:hidden;
}
.story-band h2{color:white;max-width:880px;}
.story-band p{color:#aeb7ca;max-width:740px;font-size:1.08rem;line-height:1.75;margin-top:1.4rem;}
.story-meta{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem;}
.story-meta span{padding:.5rem .7rem;border-radius:999px;border:1px solid rgba(255,255,255,.14);color:#cbd2df;font-size:.78rem;}

.cta { padding:110px 0; }
.cta-box {
  padding:72px;
  border-radius:32px;
  background:
    radial-gradient(circle at 15% 25%,rgba(124,125,255,.28),transparent 28%),
    radial-gradient(circle at 85% 75%,rgba(32,199,168,.18),transparent 30%),
    var(--ink);
  text-align:center; color:white; position:relative; overflow:hidden;
}
.cta-box h2 { color:white; max-width:820px; margin:auto; }
.cta-box p { color:#adb7c9; max-width:650px; margin:1.3rem auto 0; font-size:1.08rem; }
.cta-actions { display:flex;justify-content:center;gap:.8rem;margin-top:2rem;flex-wrap:wrap; }

.page-hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 83% 20%,rgba(91,92,246,.09),transparent 25%),
    linear-gradient(#fff,#fafbfe);
  border-bottom:1px solid var(--line);
}
.page-hero .lead { margin-top:1.4rem; }
.page-hero h1 { font-size:clamp(3.2rem,6.5vw,6.2rem); max-width:960px; }
.page-hero.center { text-align:center; }
.page-hero.center .lead { margin-left:auto;margin-right:auto; }

.module-stack { display:grid; gap:22px; }
.module-row {
  display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;align-items:center;
  padding:48px;border:1px solid var(--line);border-radius:24px;background:white;
}
.module-row:nth-child(even) .module-copy{order:2;}
.module-row:nth-child(even) .module-visual{order:1;}
.module-copy p{color:var(--slate);line-height:1.72;margin-top:1rem;}
.tag-row{display:flex;gap:.55rem;flex-wrap:wrap;margin-top:1.3rem;}
.tag{padding:.43rem .62rem;border-radius:999px;background:var(--cloud);border:1px solid var(--line);font-size:.74rem;font-weight:650;color:#586176;}
.module-visual{min-height:300px;border-radius:18px;background:linear-gradient(145deg,#f6f8fb,#ebeff5);border:1px solid #e3e7ee;padding:20px;display:flex;align-items:center;}
.module-visual.dark{background:linear-gradient(145deg,#141a2e,#0b1020);border-color:#21283b;}

.solution-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:18px; }
.solution-card { padding:34px;border:1px solid var(--line);border-radius:20px;background:white;min-height:340px;position:relative;overflow:hidden; }
.solution-card::after{content:"";position:absolute;width:170px;height:170px;border-radius:50%;right:-85px;top:-85px;background:radial-gradient(circle,rgba(91,92,246,.12),transparent 67%);}
.solution-card .kicker{margin-bottom:2.2rem;}
.solution-card p{color:var(--slate);line-height:1.7;margin-top:1rem;}
.solution-card ul{padding-left:1.1rem;color:#4f596f;font-size:.9rem;line-height:1.8;}

.integration-categories { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.int-card { padding:28px;border:1px solid var(--line);border-radius:18px;background:white;min-height:260px; }
.int-card .integration-glyph{margin-bottom:38px;}
.int-card p{color:var(--slate);font-size:.9rem;line-height:1.65;margin-top:.7rem;}
.status-badge{display:inline-flex;align-items:center;gap:.45rem;padding:.4rem .62rem;border-radius:999px;font-size:.72rem;font-weight:700;background:#eef0ff;color:#5355d8;}
.status-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--brand);}

.principles{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.principle{padding:30px;border-top:2px solid var(--ink);background:var(--cloud);border-radius:0 0 16px 16px;}
.principle .num{font-size:.73rem;color:var(--brand);font-weight:800;}
.principle h3{margin-top:2rem;}
.principle p{color:var(--slate);font-size:.9rem;line-height:1.7;margin-top:.8rem;}

.form-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start;}
.form-card{padding:34px;border:1px solid var(--line);border-radius:22px;background:white;box-shadow:var(--shadow-sm);}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.field{display:grid;gap:7px;}
.field.full{grid-column:1/-1;}
.field label{font-size:.8rem;font-weight:700;color:#3f485e;}
.field input,.field select,.field textarea{
  width:100%;border:1px solid #d8dce5;border-radius:11px;background:white;color:var(--ink);
  padding:.85rem .9rem;outline:none;transition:border .2s,box-shadow .2s;
}
.field textarea{min-height:118px;resize:vertical;}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--brand);box-shadow:0 0 0 4px rgba(91,92,246,.1);}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
.form-actions{display:flex;align-items:center;gap:1rem;margin-top:20px;}
.form-note{font-size:.77rem;color:var(--slate);line-height:1.5;margin-top:13px;}
.form-status{display:none;margin-top:16px;padding:12px 14px;border-radius:11px;font-size:.84rem;font-weight:650;}
.form-status.show{display:block;}
.form-status.success{background:#e7faf5;color:#116e5c;}
.form-status.error{background:#fff0f2;color:#a73146;}

.contact-points{display:grid;gap:22px;margin-top:2rem;}
.contact-point{display:flex;gap:14px;align-items:flex-start;}
.contact-point i{width:34px;height:34px;border-radius:10px;background:linear-gradient(135deg,rgba(91,92,246,.1),rgba(32,199,168,.1));display:grid;place-items:center;color:var(--brand);font-style:normal;font-weight:800;flex:0 0 auto;}
.contact-point strong{display:block;font-size:.92rem;}
.contact-point span{display:block;color:var(--slate);font-size:.84rem;margin-top:2px;}

.legal{max-width:820px;margin:auto;}
.legal h1{font-size:clamp(2.8rem,6vw,5rem);}
.legal h2{font-size:1.5rem;margin-top:2.5rem;letter-spacing:-.02em;}
.legal p,.legal li{color:#536078;line-height:1.75;}
.legal .updated{color:var(--slate-2);font-size:.85rem;margin:1rem 0 3rem;}

.not-found{min-height:calc(100vh - var(--header));display:grid;place-items:center;text-align:center;padding:70px 20px;background:var(--cloud);}
.not-found h1{font-size:clamp(4rem,12vw,9rem);color:var(--brand);}
.not-found p{color:var(--slate);max-width:500px;margin:1rem auto 1.5rem;}

.site-footer { background:#080d1a; color:#b2bbcd; padding:72px 0 28px; }
.footer-grid { display:grid;grid-template-columns:1.55fr repeat(4,1fr);gap:40px; }
.footer-brand img{width:176px;}
.footer-brand p{max-width:320px;font-size:.88rem;line-height:1.7;margin-top:1rem;color:#8995ac;}
.footer-col strong{display:block;color:white;font-size:.82rem;margin-bottom:1rem;}
.footer-col a{display:block;color:#8f9ab0;font-size:.84rem;margin:.62rem 0;transition:color .2s;}
.footer-col a:hover{color:white;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:1rem;border-top:1px solid rgba(255,255,255,.08);margin-top:52px;padding-top:22px;font-size:.75rem;color:#718099;}
.footer-bottom-links{display:flex;gap:1.1rem;}

.reveal{opacity:0;transform:translateY(16px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal.visible{opacity:1;transform:none;}

@media (max-width: 1050px) {
  .nav{gap:1.15rem;}
  .nav a{font-size:.88rem;}
  .hero-grid{grid-template-columns:1fr;gap:34px;}
  .hero-copy{text-align:center;}
  .hero .lead{margin-left:auto;margin-right:auto;}
  .hero-actions,.hero-note{justify-content:center;}
  .product-stage{min-height:520px;max-width:720px;margin:auto;}
  .lifecycle{grid-template-columns:repeat(3,1fr);}
  .life-step:nth-child(3){border-right:0;}
  .life-step:nth-child(-n+3){border-bottom:1px solid var(--line);}
  .life-step:nth-child(3)::after{display:none;}
  .feature-grid{grid-template-columns:repeat(2,1fr);}
  .split,.dark-grid{gap:42px;}
  .integration-cloud{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1.4fr repeat(2,1fr);}
  .footer-col:nth-last-child(-n+2){margin-top:10px;}
}

@media (max-width: 820px) {
  :root{--header:68px;}
  .container,.header-inner{width:min(calc(100% - 28px),var(--max));}
  .mobile-toggle{display:flex;}
  .header-actions .btn{display:none;}
  .nav{
    position:fixed;left:14px;right:14px;top:76px;z-index:60;
    display:grid;gap:0;padding:12px;border:1px solid var(--line);border-radius:16px;
    background:white;box-shadow:var(--shadow-lg);
    opacity:0;transform:translateY(-8px) scale(.985);pointer-events:none;transition:.2s var(--ease);
  }
  .nav-open .nav{opacity:1;transform:none;pointer-events:auto;}
  .nav a{padding:13px 12px;border-radius:9px;font-size:.95rem;}
  .nav a:hover,.nav a[aria-current="page"]{background:var(--cloud);}
  .nav a[aria-current="page"]::after{display:none;}
  .nav .mobile-cta{display:flex;margin-top:6px;background:var(--brand);color:white!important;justify-content:center;}
  .section{padding:86px 0;}
  .section-head{display:block;margin-bottom:2.4rem;}
  .section-head .lead{margin-top:1rem;}
  .split,.dark-grid,.module-row,.form-layout{grid-template-columns:1fr;}
  .module-row:nth-child(even) .module-copy,.module-row:nth-child(even) .module-visual{order:initial;}
  .module-row{padding:28px;gap:30px;}
  .solution-grid,.integration-categories,.principles{grid-template-columns:1fr 1fr;}
  .story-band,.cta-box{padding:48px 28px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;margin-bottom:14px;}
}

@media (max-width: 620px) {
  h1{font-size:clamp(3rem,15vw,4.3rem);}
  .hero{padding-top:48px;}
  .hero h1{font-size:clamp(3rem,13vw,4.2rem);line-height:1.01;}
  .product-stage{min-height:460px;}
  .product-orbit{width:390px;height:390px;}
  .dashboard{transform:none;border-radius:19px;}
  .dash-body{grid-template-columns:82px 1fr;min-height:330px;}
  .dash-main{padding:14px;}
  .metric-row{grid-template-columns:1fr 1fr;}
  .metric-row .metric:last-child{display:none;}
  .float-card{display:none;}
  .trust-inner{display:block;}
  .trust-tags{justify-content:flex-start;margin-top:1rem;}
  .lifecycle{grid-template-columns:1fr;}
  .life-step{border-right:0!important;border-bottom:1px solid var(--line)!important;min-height:126px;}
  .life-step:last-child{border-bottom:0!important;}
  .life-step::after{display:none!important;}
  .life-step strong{margin-top:14px;}
  .feature-grid,.solution-grid,.integration-categories,.principles,.dark-feature-grid,.integration-cloud{grid-template-columns:1fr;}
  .feature-card{min-height:auto;}
  .visual-panel{min-height:390px;padding:18px;}
  .page-hero{padding:64px 0 58px;}
  .page-hero h1{font-size:clamp(2.8rem,13vw,4.4rem);}
  .form-grid{grid-template-columns:1fr;}
  .field.full{grid-column:auto;}
  .form-card{padding:22px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px;}
  .footer-bottom{align-items:flex-start;flex-direction:column;}
  .cta{padding:80px 0;}
}

@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important;}
  .reveal{opacity:1;transform:none;}
}

/* =========================================================
   FurniStack homepage polish v1.2
   ========================================================= */

.trust-strip {
  padding: 24px 0;
  background: rgba(255,255,255,.94);
}
.trust-copy { color:#59647b; }
.trust-tag {
  background:#fff;
  box-shadow:0 2px 8px rgba(11,16,32,.025);
}

.lifecycle-section { padding: 96px 0 100px; }
.lifecycle-section .section-head { margin-bottom: 2.25rem; }
.lifecycle {
  position:relative;
  margin-top: 38px;
  border-color:#dde2eb;
  box-shadow:0 18px 44px rgba(11,16,32,.055);
}
.lifecycle::before {
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  z-index:3;
  background:linear-gradient(90deg,var(--brand),#7778ff 50%,var(--teal));
}
.life-step {
  min-height:146px;
  padding:27px 20px 22px;
  transition:background .2s ease, transform .2s ease;
}
.life-step:hover { background:#fafbff; }
.life-num {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:30px;
  height:24px;
  padding:0 7px;
  border-radius:999px;
  background:#f0f1ff;
  border:1px solid #e2e3ff;
}
.life-step strong { margin-top:17px; }
.life-step p { font-size:.79rem; }
.life-step::after { top:29px; box-shadow:0 2px 8px rgba(11,16,32,.04); }

.platform-section { padding: 98px 0 102px; }
.platform-section .section-head { margin-bottom:2.75rem; }
.feature-grid { gap:16px; }
.feature-card {
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:248px;
  padding:28px;
  background:linear-gradient(180deg,#fff 0%,#fdfdff 100%);
  border-color:#e0e4ec;
}
.feature-card::before {
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg,var(--brand),var(--teal));
  opacity:.62;
}
.feature-card::after {
  content:"";
  position:absolute;
  width:150px; height:150px;
  right:-88px; top:-94px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(91,92,246,.09),transparent 68%);
  pointer-events:none;
}
.feature-card:hover {
  transform:translateY(-4px);
  border-color:#d4d9e4;
  box-shadow:0 20px 46px rgba(11,16,32,.08);
}
.feature-icon { margin-bottom:27px; }
.feature-card h3 { font-size:1.12rem; }
.feature-card p { font-size:.9rem; }
.feature-link { margin-top:auto; padding-top:1rem; }

.furniture-native-section {
  padding:100px 0;
  background:
    radial-gradient(circle at 78% 18%,rgba(91,92,246,.10),transparent 29%),
    radial-gradient(circle at 15% 80%,rgba(32,199,168,.055),transparent 24%),
    var(--ink);
}
.dark-feature {
  min-height:184px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.025));
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.dark-feature:hover {
  transform:translateY(-3px);
  border-color:rgba(124,125,255,.30);
  background:linear-gradient(145deg,rgba(91,92,246,.085),rgba(255,255,255,.028));
}
.dark-feature h3 { margin-top:27px; }

.connected-data-section { padding: 96px 0; }
.connected-data-section .visual-panel { min-height:470px; }

.integrations-section { padding:96px 0 100px; }
.integrations-section .section-head { margin-bottom:2.65rem; }
.integration-cloud { gap:12px; }
.integration-tile {
  min-height:138px;
  padding:19px;
  border-color:#e0e4ec;
  background:linear-gradient(180deg,#fff,#fdfdff);
}
.integration-tile > div:last-child {
  display:grid;
  gap:4px;
}
.integration-tile strong,
.integration-tile small { display:block; }
.integration-tile strong { font-size:.92rem; line-height:1.25; }
.integration-tile small { font-size:.76rem; line-height:1.4; }
.integration-glyph {
  width:36px;
  height:36px;
  background:linear-gradient(135deg,#f1f2ff,#f5fbfa);
}

.story-section { padding: 86px 0 50px; }
.story-band {
  padding:64px 68px;
  box-shadow:0 30px 75px rgba(11,16,32,.12);
}
.story-band p { max-width:780px; }

.cta { padding: 50px 0 92px; }
.cta-box {
  padding:68px;
  box-shadow:0 32px 80px rgba(11,16,32,.11);
}

@media (max-width:1050px) {
  .lifecycle-section,.platform-section,.furniture-native-section,.connected-data-section,.integrations-section { padding:84px 0; }
  .story-section { padding:74px 0 42px; }
  .cta { padding:42px 0 76px; }
}

@media (max-width:820px) {
  .trust-strip { padding:19px 0; }
  .lifecycle-section,.platform-section,.furniture-native-section,.connected-data-section,.integrations-section { padding:68px 0; }
  .lifecycle { margin-top:30px; }
  .life-step { min-height:136px; }
  .feature-card { min-height:230px; }
  .story-section { padding:62px 0 34px; }
  .story-band { padding:42px 26px; }
  .cta { padding:34px 0 68px; }
  .cta-box { padding:48px 24px; border-radius:24px; }
}

/* ===== FURNISTACK INTERIOR PAGES V1.3 ===== */

.page-hero-split {
  padding: 76px 0 74px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 72px;
  align-items: center;
}

.page-hero-copy h1 {
  font-size: clamp(3.25rem, 5.35vw, 5.75rem);
  max-width: 820px;
}

.page-hero-copy .lead {
  max-width: 690px;
}

/* Platform hero */
.platform-map {
  min-height: 390px;
  position: relative;
  border: 1px solid #e1e5ed;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(91,92,246,.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #f2f5fb);
  box-shadow: 0 28px 80px rgba(11,16,32,.09);
}

.platform-map::before,
.platform-map::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(91,92,246,.18);
  border-radius: 50%;
}
.platform-map::after { inset: 27%; border-color: rgba(32,199,168,.18); }

.platform-map-core {
  position: absolute;
  z-index: 4;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 150px; height: 150px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: white;
  background: linear-gradient(145deg, #11182d, #0b1020);
  box-shadow: 0 22px 60px rgba(11,16,32,.22);
}
.platform-map-core img { width: 38px; }
.platform-map-core strong { font-size: 1.05rem; }
.platform-map-core span { color: #9fa9bd; font-size: .72rem; }

.platform-map-node {
  position: absolute;
  z-index: 5;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid #e1e5ed;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(11,16,32,.07);
  color: #3e475d;
  font-size: .76rem;
  font-weight: 750;
}
.platform-map-node.n1 { left: 8%; top: 16%; }
.platform-map-node.n2 { right: 8%; top: 17%; }
.platform-map-node.n3 { left: 5%; top: 49%; }
.platform-map-node.n4 { right: 5%; top: 49%; }
.platform-map-node.n5 { left: 13%; bottom: 13%; }
.platform-map-node.n6 { right: 12%; bottom: 13%; }
.platform-map-ring { position:absolute;left:50%;top:50%;border-radius:50%;transform:translate(-50%,-50%);pointer-events:none; }
.platform-map-ring.ring-1 { width:255px;height:255px;border:1px solid rgba(91,92,246,.13); }
.platform-map-ring.ring-2 { width:330px;height:330px;border:1px solid rgba(32,199,168,.09); }

.platform-modules { padding-top: 88px; }
.platform-modules .module-row { box-shadow: 0 12px 36px rgba(11,16,32,.035); }
.platform-modules .module-row:hover { border-color:#d8dce6; box-shadow:0 20px 50px rgba(11,16,32,.06); }

/* Solutions hero */
.retail-flow-visual {
  min-height: 390px;
  position: relative;
  border-radius: 30px;
  border: 1px solid #e1e5ed;
  background:
    radial-gradient(circle at 78% 20%, rgba(32,199,168,.09), transparent 28%),
    linear-gradient(145deg,#fff,#f4f6fb);
  box-shadow: 0 28px 80px rgba(11,16,32,.08);
  padding: 42px 38px;
  overflow: hidden;
}
.flow-line { position:absolute;left:60px;top:64px;bottom:78px;width:2px;background:linear-gradient(var(--brand),var(--teal));opacity:.58; }
.flow-stop { position:relative;display:flex;align-items:center;gap:16px;margin-bottom:27px;z-index:2; }
.flow-stop i { width:18px;height:18px;border-radius:50%;background:white;border:5px solid var(--brand);box-shadow:0 0 0 5px rgba(91,92,246,.08);flex:0 0 auto;margin-left:13px; }
.flow-stop.s2 i { border-color:#7778ff; }
.flow-stop.s3 i { border-color:var(--teal);box-shadow:0 0 0 5px rgba(32,199,168,.08); }
.flow-stop div { flex:1;display:grid;grid-template-columns:42px 1fr;align-items:center;column-gap:4px;row-gap:2px;padding:14px 16px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.95);box-shadow:0 8px 24px rgba(11,16,32,.04); }
.flow-stop span { grid-row:1/3;color:var(--brand);font-size:.67rem;font-weight:850;letter-spacing:.08em; }
.flow-stop strong { font-size:.93rem; }
.flow-stop small { color:var(--slate);font-size:.72rem; }
.flow-result { position:absolute;right:26px;bottom:24px;left:92px;padding:14px 16px;border-radius:14px;color:white;background:linear-gradient(135deg,#11182d,#0b1020);box-shadow:0 14px 38px rgba(11,16,32,.16); }
.flow-result span { display:block;color:#8e9ab1;font-size:.67rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800; }
.flow-result strong { display:block;margin-top:4px;font-size:.88rem; }

.solutions-grid-section { padding: 94px 0; }
.solution-card { transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease; }
.solution-card::before { content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(var(--brand),var(--teal));opacity:.68; }
.solution-card:hover { transform:translateY(-4px);border-color:#d6dbe5;box-shadow:0 22px 52px rgba(11,16,32,.07); }
.solution-card li::marker { color:var(--brand); }

/* Integrations hero */
.integration-hub {
  min-height: 420px;
  position: relative;
  border-radius: 30px;
  border: 1px solid #e0e4ec;
  background:
    radial-gradient(circle at 50% 50%, rgba(91,92,246,.13), transparent 35%),
    linear-gradient(145deg,#fff,#f2f5fa);
  box-shadow: 0 28px 80px rgba(11,16,32,.09);
  overflow: hidden;
}
.integration-hub svg { position:absolute;inset:0;width:100%;height:100%;z-index:1; }
.integration-hub svg path { stroke:rgba(91,92,246,.19);stroke-width:1.4;fill:none;stroke-dasharray:5 6; }
.hub-core { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:4;width:150px;height:150px;border-radius:32px;background:linear-gradient(145deg,#12192e,#0b1020);display:grid;place-items:center;align-content:center;gap:6px;color:white;box-shadow:0 22px 60px rgba(11,16,32,.22); }
.hub-core img { width:40px; }
.hub-core strong { font-size:1.05rem; }
.hub-core small { color:#9ca7bc;font-size:.71rem; }
.hub-node { position:absolute;z-index:5;padding:9px 12px;border:1px solid #dfe3eb;border-radius:11px;background:rgba(255,255,255,.96);color:#3f485e;font-size:.72rem;font-weight:750;box-shadow:0 8px 24px rgba(11,16,32,.06); }
.hub-node.h1 { left:7%;top:14%; }.hub-node.h2 { left:43%;top:8%; }.hub-node.h3 { right:6%;top:15%; }.hub-node.h4 { right:3%;top:48%; }.hub-node.h5 { right:9%;bottom:12%; }.hub-node.h6 { left:43%;bottom:7%; }.hub-node.h7 { left:7%;bottom:14%; }
.integration-category-section { padding: 92px 0 100px; }
.int-card { position:relative;overflow:hidden;transition:transform .22s var(--ease),box-shadow .22s ease,border-color .22s ease; }
.int-card::before { content:"";position:absolute;left:0;right:0;top:0;height:3px;background:linear-gradient(90deg,var(--brand),var(--teal));opacity:.55; }
.int-card:hover { transform:translateY(-4px);border-color:#d7dce5;box-shadow:0 20px 48px rgba(11,16,32,.07); }

/* Company hero */
.company-manifesto {
  min-height: 360px;
  padding: 40px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 85% 18%,rgba(32,199,168,.18),transparent 28%),
    radial-gradient(circle at 18% 82%,rgba(91,92,246,.28),transparent 32%),
    var(--ink);
  box-shadow: 0 28px 80px rgba(11,16,32,.14);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.manifesto-label { color:#8d98af;font-size:.7rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase; }
.company-manifesto blockquote { margin:24px 0 34px;font-size:clamp(1.8rem,3vw,2.7rem);line-height:1.15;letter-spacing:-.04em;font-weight:760; }
.manifesto-tags { display:flex;gap:8px;flex-wrap:wrap; }
.manifesto-tags span { padding:8px 10px;border:1px solid rgba(255,255,255,.14);border-radius:999px;color:#c3cada;font-size:.71rem; }
.company-story-section { padding: 84px 0 58px; }
.company-story-section + .section-cloud { padding-top: 84px; }
.principle { transition:transform .2s ease,box-shadow .2s ease; }
.principle:hover { transform:translateY(-3px);box-shadow:0 16px 36px rgba(11,16,32,.055); }

/* Early access */
.early-hero { padding-bottom:72px; }
.early-hero h1 { max-width:820px;margin-inline:auto; }
.early-hero-tags { display:flex;justify-content:center;gap:9px;flex-wrap:wrap;margin-top:24px; }
.early-hero-tags span { padding:8px 12px;border-radius:999px;border:1px solid #e0e4ec;background:rgba(255,255,255,.85);color:#576176;font-size:.75rem;font-weight:700;box-shadow:0 4px 16px rgba(11,16,32,.035); }
.early-access-section { padding:86px 0 100px; }
.early-access-section .form-layout { grid-template-columns:.72fr 1.28fr;gap:76px; }
.early-access-section .form-card { padding:42px;border-radius:26px;box-shadow:0 24px 70px rgba(11,16,32,.09); }
.early-access-section .form-grid { gap:19px; }
.early-access-section .field input,.early-access-section .field select,.early-access-section .field textarea { padding:.95rem 1rem;border-radius:12px; }
.early-access-section .field textarea { min-height:140px; }
.early-access-section .form-actions .btn { min-width:170px; }
.form-trust { display:flex;gap:8px;flex-wrap:wrap;margin-top:18px; }
.form-trust span { padding:7px 9px;border-radius:9px;background:#f3f5f9;color:#59647a;font-size:.69rem;font-weight:700; }

@media (max-width: 1050px) {
  .page-hero-grid { grid-template-columns:1fr 1fr;gap:42px; }
  .page-hero-copy h1 { font-size:clamp(3rem,5.4vw,4.8rem); }
}

@media (max-width: 820px) {
  .page-hero-split { padding:58px 0 62px; }
  .page-hero-grid { grid-template-columns:1fr;gap:38px; }
  .page-hero-copy h1 { font-size:clamp(2.8rem,12vw,4.4rem); }
  .platform-map,.retail-flow-visual,.integration-hub,.company-manifesto { min-height:340px; }
  .platform-map { max-width:620px;width:100%;margin-inline:auto; }
  .platform-map-node { font-size:.68rem;padding:8px 10px; }
  .integration-hub { max-width:620px;width:100%;margin-inline:auto; }
  .hub-node { font-size:.64rem;padding:7px 9px; }
  .early-access-section .form-layout { grid-template-columns:1fr;gap:46px; }
  .early-access-section .form-card { padding:28px; }
}

@media (max-width: 560px) {
  .platform-map,.retail-flow-visual,.integration-hub,.company-manifesto { min-height:310px;border-radius:22px; }
  .platform-map-core,.hub-core { width:118px;height:118px;border-radius:25px; }
  .platform-map-ring.ring-1 { width:205px;height:205px; }
  .platform-map-ring.ring-2 { width:265px;height:265px; }
  .platform-map-node.n3 { left:3%; }.platform-map-node.n4 { right:3%; }
  .flow-line { left:44px; }
  .flow-stop i { margin-left:0; }
  .flow-stop div { grid-template-columns:34px 1fr; }
  .flow-result { left:50px;right:18px; }
  .hub-node.h2,.hub-node.h6 { left:40%; }
  .company-manifesto { padding:28px; }
  .early-access-section .form-card { padding:22px; }
  .form-trust { display:grid;grid-template-columns:1fr; }
}

/* ===== END FURNISTACK INTERIOR PAGES V1.3 ===== */

/* ===== FURNISTACK MOBILE POLISH V1.4 ===== */

/* Tablet/phone: make interior heroes reveal their page-specific visual sooner. */
@media (max-width: 820px) {
  .page-hero-split {
    padding: 44px 0 50px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .page-hero-copy .lead {
    margin-top: 1rem;
    line-height: 1.58;
  }

  .platform-map,
  .retail-flow-visual,
  .integration-hub,
  .company-manifesto {
    min-height: 300px;
  }

  .early-access-section {
    padding-top: 62px;
  }
}

@media (max-width: 560px) {
  /* Shared mobile header stays unchanged; tighten content beneath it. */
  .page-hero-split {
    padding: 36px 0 42px;
  }

  .page-hero-grid {
    gap: 22px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -.042em;
  }

  .page-hero-copy .kicker {
    margin-bottom: .9rem;
  }

  .page-hero-copy .lead {
    margin-top: 1rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  .platform-map,
  .retail-flow-visual,
  .integration-hub,
  .company-manifesto {
    min-height: 270px;
    border-radius: 20px;
  }

  .platform-map-core,
  .hub-core {
    width: 106px;
    height: 106px;
    border-radius: 23px;
  }

  .platform-map-core img,
  .hub-core img {
    width: 31px;
  }

  .platform-map-core strong,
  .hub-core strong {
    font-size: .88rem;
  }

  .platform-map-core span,
  .hub-core small {
    font-size: .61rem;
  }

  .platform-map-ring.ring-1 {
    width: 184px;
    height: 184px;
  }

  .platform-map-ring.ring-2 {
    width: 238px;
    height: 238px;
  }

  .platform-map-node,
  .hub-node {
    font-size: .61rem;
    padding: 7px 8px;
  }

  .retail-flow-visual {
    padding: 28px 22px;
  }

  .flow-stop {
    gap: 10px;
    margin-bottom: 18px;
  }

  .flow-stop div {
    padding: 11px 12px;
  }

  .flow-result {
    bottom: 18px;
    padding: 11px 13px;
  }

  .company-manifesto {
    padding: 25px;
  }

  .company-manifesto blockquote {
    margin: 18px 0 22px;
    font-size: 1.7rem;
  }

  /* Homepage: keep the product visible sooner and use a concise mobile dashboard snapshot. */
  .hero {
    padding: 34px 0 42px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero .kicker {
    margin-bottom: .95rem;
  }

  .hero h1 {
    font-size: clamp(2.62rem, 11.3vw, 3.55rem);
    line-height: 1.015;
    letter-spacing: -.046em;
  }

  .hero .lead {
    margin-top: 1rem;
    font-size: .99rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.15rem;
    gap: .65rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    display: none;
  }

  .product-stage {
    min-height: 395px;
    align-items: flex-start;
  }

  .product-orbit {
    width: 330px;
    height: 330px;
  }

  .dashboard {
    border-radius: 18px;
  }

  .dash-top {
    height: 46px;
  }

  .dash-body {
    grid-template-columns: 74px 1fr;
    min-height: 300px;
  }

  .dash-side {
    padding: 11px 7px;
  }

  .side-item {
    padding: 0 6px;
    font-size: 6.2px;
  }

  .dash-main {
    padding: 12px;
  }

  .dash-heading {
    font-size: 15px;
  }

  .metric-row {
    margin-top: 12px;
  }

  .metric {
    min-height: 66px;
    padding: 10px;
  }

  .metric-value {
    font-size: 17px;
  }

  .dash-panel {
    padding: 11px;
  }

  .hero .dash-panel:last-child {
    display: none;
  }

  .hero .chart {
    height: 76px;
  }

  /* Early Access: retain comfortable tap targets while reducing unnecessary scrolling. */
  .early-hero {
    padding: 42px 0 44px;
  }

  .early-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .early-hero .lead {
    margin-top: 1rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  .early-hero-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .early-hero-tags span {
    padding: 7px 10px;
    font-size: .69rem;
  }

  .early-access-section {
    padding: 54px 0 70px;
  }

  .early-access-section .form-layout {
    gap: 32px;
  }

  .early-access-section .contact-points {
    gap: 16px;
    margin-top: 1.45rem;
  }

  .early-access-section .form-card {
    padding: 20px;
    border-radius: 20px;
  }

  .early-access-section .form-grid {
    gap: 14px;
  }

  .early-access-section .field {
    gap: 6px;
  }

  .early-access-section .field input,
  .early-access-section .field select,
  .early-access-section .field textarea {
    padding: .8rem .85rem;
    border-radius: 11px;
  }

  .early-access-section .field textarea {
    min-height: 108px;
  }

  .early-access-section .form-actions {
    margin-top: 16px;
  }

  .early-access-section .form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .form-trust {
    gap: 6px;
  }

  .form-trust span {
    padding: 6px 8px;
    font-size: .66rem;
  }
}

/* ===== END FURNISTACK MOBILE POLISH V1.4 ===== */
