/* =========================================================
   PrintByDesign Studio — Design tokens
   Palette lifted from the brand mark: registration-mark
   blue / pink / yellow on ink, with the swoosh gradient
   (blue → violet → pink → yellow) as the one rich accent.
   ========================================================= */
:root{
  --ink:        #0E0E13;
  --ink-soft:    #46464f;
  --paper:      #FAFAFC;
  --panel:      #F2F1F6;
  --panel-line: #E2E1EA;

  --blue:   #1E56E3;
  --violet: #7A2FE0;
  --pink:   #EE1A76;
  --yellow: #FFC629;

  --swoosh: linear-gradient(120deg, var(--blue) 0%, var(--violet) 42%, var(--pink) 72%, var(--yellow) 100%);

  --display: "Unbounded", system-ui, sans-serif;
  --body:    "Plus Jakarta Sans", system-ui, sans-serif;
  --mono:    "Space Mono", monospace;

  --container: 1220px;
  --radius: 20px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

@media (prefers-color-scheme: dark){
  :root{ color-scheme: light; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--display); line-height:1.08; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }
section{ position:relative; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

/* ---------- utility ---------- */
.section-eyebrow{
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--pink);
  margin: 0 0 14px;
}
.section-eyebrow--light{ color: var(--yellow); }
.section-head{ max-width: 640px; margin: 0 auto 56px; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* ---------- registration marks (signature motif) ---------- */
.reg-mark{ display:flex; align-items:center; gap:8px; }
.reg-dot{
  width:10px; height:10px; border-radius:50%; flex:none;
}
.reg-dot.c-blue{ background: var(--blue); }
.reg-dot.c-pink{ background: var(--pink); }
.reg-dot.c-yellow{ background: var(--yellow); }
.reg-dot.c-ink{ background: var(--ink); }
.reg-mark--footer{ gap:6px; }
.reg-mark--footer .reg-dot{ width:7px; height:7px; }

/* =========================================================
   Loader
   ========================================================= */
.loader{
  position:fixed; inset:0; z-index:999; background:var(--paper);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.loader .reg-mark .reg-dot{ width:14px; height:14px; animation: dotPulse 1.1s ease-in-out infinite; }
.loader .reg-mark .reg-dot:nth-child(1){ animation-delay:0s; }
.loader .reg-mark .reg-dot:nth-child(2){ animation-delay:.12s; }
.loader .reg-mark .reg-dot:nth-child(3){ animation-delay:.24s; }
.loader .reg-mark .reg-dot:nth-child(4){ animation-delay:.36s; }
@keyframes dotPulse{ 0%,100%{ transform:translateY(0); opacity:.4; } 50%{ transform:translateY(-10px); opacity:1; } }
.loader.is-hidden{ opacity:0; visibility:hidden; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 22px; border-radius: 100px;
  font-weight:600; font-size:.92rem; white-space:nowrap;
  border:2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-lg{ padding:16px 30px; font-size:1rem; }
.btn-solid{ background: var(--ink); color:#fff; }
.btn-solid:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(14,14,19,.22); }
.btn-outline{ border-color: var(--ink); color:var(--ink); }
.btn-outline:hover{ background: var(--ink); color:#fff; transform: translateY(-2px); }
.btn-outline-light{ border-color: rgba(255,255,255,.5); color:#fff; }
.btn-outline-light:hover{ background: #fff; color:var(--ink); }
.btn-ghost{ color: var(--ink); }
.btn-ghost:hover{ color: var(--pink); }

/* =========================================================
   Nav
   ========================================================= */
.nav{
  position: sticky; top:0; z-index: 200;
  background: rgba(250,250,252,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-line);
}
.nav-inner{
  max-width: var(--container); margin:0 auto; padding: 14px 28px;
  display:flex; align-items:center; gap: 28px;
}
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; }
.brand-badge{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  flex:none;
}
.brand-badge img{ width:100%; height:100%; object-fit:contain; }
.brand-word{ font-family: var(--display); font-weight:700; font-size:1.02rem; letter-spacing:-.01em; display:flex; flex-direction:column; line-height:1; }
.brand-word em{ font-style:normal; color: var(--pink); }
.brand-word .brand-blue{ color: var(--blue); }
.brand-word small{ font-family: var(--mono); font-size:.55rem; letter-spacing:.28em; color: var(--ink-soft); margin-top:4px; }

.nav-links{ display:flex; gap:28px; font-weight:600; font-size:.94rem; }
.nav-links a{ position:relative; padding:4px 0; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--pink);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.nav-burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ padding-top: 64px; overflow:hidden; }
.hero-inner{
  max-width: var(--container); margin:0 auto; padding: 24px 28px 40px;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items:center;
}
.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-family: var(--mono); text-transform:uppercase; letter-spacing:.12em; font-size:.78rem;
  color: var(--ink-soft); margin-bottom:20px;
}
.eyebrow-mark{
  width:26px; height:6px; border-radius:4px; background: var(--swoosh); flex:none;
}
.hero-title{ font-size: clamp(2.4rem, 5vw, 4rem); font-weight:700; }
.hero-title-accent{
  background: var(--swoosh); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ margin: 24px 0 32px; max-width: 46ch; color: var(--ink-soft); font-size:1.05rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }
.hero-proof{ display:flex; gap:28px; margin-top:36px; flex-wrap:wrap; }
.hero-proof li{ font-size:.85rem; color: var(--ink-soft); }
.hero-proof strong{ display:block; font-family: var(--display); font-size:1.3rem; color:var(--ink); }

.hero-visual{ position:relative; height: 420px; }
.tag-stack{ position:relative; width:100%; height:100%; }
.hang-tag{
  position:absolute; width: 168px; background:#fff; border-radius:16px;
  padding: 26px 18px 18px; text-align:center;
  box-shadow: 0 18px 40px rgba(14,14,19,.14);
  border: 1px solid var(--panel-line);
}
.hang-tag::before{
  content:""; position:absolute; top:12px; left:50%; transform:translateX(-50%);
  width:14px; height:14px; border-radius:50%; background: var(--paper);
  border: 1px solid var(--panel-line);
}
.tag-art{ width:100%; height:110px; color: var(--ink); margin-bottom:8px; }
.tag-label{ font-family: var(--mono); font-size:.68rem; letter-spacing:.14em; color: var(--ink-soft); }

.tag-1{ top:0; left:6%; transform: rotate(-9deg); z-index:3; animation: floatY 6s ease-in-out infinite; }
.tag-2{ top:34%; left:38%; transform: rotate(6deg); z-index:2; animation: floatY 7s ease-in-out infinite .5s; }
.tag-3{ top:12%; left:64%; transform: rotate(-4deg); z-index:1; animation: floatY 6.5s ease-in-out infinite 1s; }
.tag-1 svg{ color: var(--blue); }
.tag-2 svg{ color: var(--pink); }
.tag-3 svg{ color: var(--violet); }
@keyframes floatY{ 0%,100%{ translate: 0 0; } 50%{ translate: 0 -14px; } }

/* marquee ribbon */
.marquee{
  border-top: 1px solid var(--panel-line); border-bottom: 1px solid var(--panel-line);
  background: var(--panel); overflow:hidden;
}
.marquee-track{
  display:flex; align-items:center; gap: 18px; white-space:nowrap; width:max-content;
  padding: 14px 0; animation: scrollX 26s linear infinite;
  font-family: var(--display); font-weight:700; font-size:.95rem; text-transform:uppercase; letter-spacing:.04em;
}
.marquee-track span{ padding-right:18px; }
@keyframes scrollX{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================
   Positioning
   ========================================================= */
.positioning{ padding: 96px 28px; }
.positioning-inner{ max-width: 860px; margin:0 auto; text-align:center; }
.positioning-title{ font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom:20px; }
.positioning-body{ color: var(--ink-soft); font-size:1.08rem; max-width: 62ch; margin: 0 auto; }

.chip-row{
  margin-top: 48px; display:grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap:14px; text-align:left;
}
.chip{
  display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--panel-line);
  border-radius:16px; padding:18px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.chip:hover{ transform: translateY(-4px); box-shadow: 0 14px 28px rgba(14,14,19,.08); }
.chip strong{ display:block; font-size:.94rem; margin-bottom:4px; }
.chip small{ color: var(--ink-soft); font-size:.82rem; line-height:1.4; }
.chip-icon{ width:34px; height:34px; border-radius:9px; flex:none; position:relative; }
.chip:nth-child(1) .chip-icon{ background: var(--blue); }
.chip:nth-child(2) .chip-icon{ background: var(--pink); }
.chip:nth-child(3) .chip-icon{ background: var(--violet); }
.chip:nth-child(4) .chip-icon{ background: var(--yellow); }
.chip:nth-child(5) .chip-icon{ background: var(--ink); }
.chip-icon::before{
  content:""; position:absolute; inset:9px; background:#fff;
}
.chip-icon[data-icon="quality"]::before{ clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.chip-icon[data-icon="speed"]::before{ clip-path: polygon(55% 0%, 20% 55%, 45% 55%, 40% 100%, 80% 40%, 55% 40%); }
.chip-icon[data-icon="design"]::before{ clip-path: polygon(0% 100%, 0% 70%, 70% 0%, 100% 30%, 30% 100%); }
.chip-icon[data-icon="delivery"]::before{ clip-path: polygon(0% 30%, 60% 30%, 60% 0%, 100% 30%, 100% 75%, 0% 75%); }
.chip-icon[data-icon="secure"]::before{ clip-path: polygon(50% 0%, 100% 20%, 100% 55%, 50% 100%, 0% 55%, 0% 20%); }

/* =========================================================
   Products — hang-tag cards
   ========================================================= */
.products{ padding: 40px 28px 100px; max-width: var(--container); margin:0 auto; }
.tag-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:22px;
}
.product-tag{
  position:relative; background:#fff; border:1px solid var(--panel-line); border-radius:18px;
  padding: 34px 26px 28px; text-align:center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-tag:hover{ transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 20px 36px rgba(14,14,19,.1); border-color: transparent; }
.product-tag-hole{
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:16px; height:16px; border-radius:50%; background: var(--paper); border:1px solid var(--panel-line);
}
.product-art{ width:100%; height:120px; color: var(--ink); margin: 12px 0 14px; transition: color .3s var(--ease); }
.product-tag:nth-child(6n+1):hover .product-art,.product-tag:nth-child(6n+1) .product-art{ }
.product-tag:hover .product-art{ color: var(--pink); }
.product-tag h3{ font-size: 1.15rem; margin-bottom:8px; }
.product-tag p{ color: var(--ink-soft); font-size:.92rem; }
.product-tag::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:3px; background: var(--swoosh);
  transition: width .35s var(--ease); border-radius: 0 0 18px 18px;
}
.product-tag:hover::after{ width:100%; }

/* =========================================================
   Design Studio (embedded design tool)
   ========================================================= */
.studio{ padding: 40px 28px 110px; max-width: var(--container); margin:0 auto; }
.studio-lede{ margin-top:14px; color: var(--ink-soft); font-size:1.02rem; }

.studio-app{
  display:grid; grid-template-columns: 220px minmax(0,1fr) 260px; gap:20px;
  background: var(--panel); border:1px solid var(--panel-line); border-radius: 22px; padding: 20px;
}
.studio-rail{ display:flex; flex-direction:column; gap:20px; min-width:0; }
.studio-rail--right{ min-height:0; }
.studio-block{ background:#fff; border:1px solid var(--panel-line); border-radius:16px; padding:16px; }
.studio-block--grow{ flex:1; display:flex; flex-direction:column; }
.studio-block h4{
  font-family: var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.1em;
  color: var(--ink-soft); margin: 0 0 12px;
}

.studio-product-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:8px; }
.studio-product-btn{
  display:flex; flex-direction:column; align-items:center; gap:6px; padding:10px 6px;
  border-radius:12px; border:1.5px solid var(--panel-line); background:#fff; cursor:pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.studio-product-btn svg{ width:32px; height:32px; color: var(--ink-soft); }
.studio-product-btn span{ font-size:.68rem; font-weight:600; color: var(--ink-soft); }
.studio-product-btn:hover{ border-color: var(--blue); }
.studio-product-btn.is-active{ border-color: var(--ink); background: var(--panel); }
.studio-product-btn.is-active svg{ color: var(--ink); }
.studio-product-btn.is-active span{ color: var(--ink); }

.studio-swatches{ display:flex; flex-wrap:wrap; gap:8px; }
.studio-swatch{
  width:28px; height:28px; border-radius:50%; border:2px solid #fff; cursor:pointer;
  box-shadow: 0 0 0 1.5px var(--panel-line); transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.studio-swatch:hover{ transform: scale(1.08); }
.studio-swatch.is-active{ box-shadow: 0 0 0 2px var(--ink); }

.studio-btn{
  width:100%; display:flex; align-items:center; gap:10px; padding: 11px 12px; margin-bottom:10px;
  border-radius:11px; border:1.5px solid var(--panel-line); background:#fff; cursor:pointer;
  font-family: var(--body); font-weight:600; font-size:.88rem; color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.studio-btn:hover{ border-color: var(--ink); background: var(--panel); }
.studio-btn-icon{
  display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:7px;
  background: var(--panel); font-size:.78rem; font-weight:700; flex:none;
}
.studio-hint{ font-size:.78rem; color: var(--ink-soft); line-height:1.5; margin-top:4px; }

.studio-stage{ display:flex; flex-direction:column; min-width:0; }
.studio-stage-toolbar{
  display:flex; align-items:center; justify-content:space-between; padding: 4px 4px 12px;
}
.studio-stage-label{ font-weight:700; font-size:.92rem; }
.studio-stage-actions{ display:flex; gap:8px; }
.studio-icon-btn{
  border:1.5px solid var(--panel-line); background:#fff; border-radius:9px; padding:7px 12px;
  font-size:.78rem; font-weight:600; cursor:pointer; color: var(--ink-soft);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.studio-icon-btn:hover{ border-color: var(--pink); color: var(--pink); }

.studio-canvas-wrap{
  flex:1; display:flex; align-items:center; justify-content:center; background:#fff;
  border:1px solid var(--panel-line); border-radius:16px; padding: 16px; min-height: 360px;
}
.studio-canvas-wrap canvas{
  width:100%; max-width: 480px; height:auto; touch-action:none; cursor:default;
  border-radius: 10px;
}
.studio-stage-footer{ display:flex; gap:12px; justify-content:center; margin-top:16px; flex-wrap:wrap; }

.layer-editor{ display:flex; flex-direction:column; gap:10px; }
.layer-editor label{ font-size:.76rem; font-weight:700; color: var(--ink-soft); display:block; margin-bottom:4px; }
.layer-editor textarea,
.layer-editor select,
.layer-editor input[type="range"]{
  width:100%; border:1px solid var(--panel-line); border-radius:9px; padding:8px 10px;
  font-family: var(--body); font-size:.86rem; background:#fff; color: var(--ink);
}
.layer-editor textarea{ resize:vertical; min-height:52px; }
.layer-editor-row{ display:flex; gap:8px; align-items:center; }
.layer-color-row{ display:flex; gap:6px; flex-wrap:wrap; }
.layer-color-swatch{
  width:22px; height:22px; border-radius:50%; cursor:pointer; border:2px solid #fff; box-shadow:0 0 0 1px var(--panel-line);
}
.layer-color-swatch.is-active{ box-shadow: 0 0 0 2px var(--ink); }
.layer-editor-actions{ display:flex; gap:6px; flex-wrap:wrap; margin-top:4px; }
.layer-editor-actions button{
  flex:1; border:1px solid var(--panel-line); background:#fff; border-radius:8px; padding:7px 6px;
  font-size:.74rem; font-weight:600; cursor:pointer; color: var(--ink-soft);
}
.layer-editor-actions button:hover{ border-color: var(--ink); color: var(--ink); }
.layer-editor-actions button.is-danger:hover{ border-color: var(--pink); color: var(--pink); }

.layer-list{ display:flex; flex-direction:column; gap:6px; overflow-y:auto; max-height:200px; }
.layer-list li{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:8px 10px; border-radius:9px; border:1px solid var(--panel-line); font-size:.8rem;
  cursor:pointer; background:#fff;
}
.layer-list li.is-selected{ border-color: var(--ink); background: var(--panel); font-weight:700; }
.studio-empty{ font-size:.82rem; color: var(--ink-soft); }

@media (max-width: 980px){
  .studio-app{ grid-template-columns: 1fr; }
  .studio-rail{ flex-direction:row; flex-wrap:wrap; }
  .studio-rail .studio-block{ flex:1; min-width:200px; }
}

/* =========================================================
   Process
   ========================================================= */
.process{ padding: 40px 28px 110px; max-width: var(--container); margin:0 auto; }
.process-list{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step;
  position:relative;
}
.process-step{
  background: var(--panel); border-radius:18px; padding: 32px 26px; position:relative;
}
.process-num{
  font-family: var(--mono); font-weight:700; font-size:.85rem; color:#fff;
  background: var(--ink); width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.process-step:nth-child(1) .process-num{ background: var(--blue); }
.process-step:nth-child(2) .process-num{ background: var(--pink); }
.process-step:nth-child(3) .process-num{ background: var(--yellow); color: var(--ink); }
.process-step h3{ font-size:1.2rem; margin-bottom:10px; }
.process-step p{ color: var(--ink-soft); font-size:.94rem; }

/* =========================================================
   For Business
   ========================================================= */
.business{ background: var(--ink); color:#fff; padding: 90px 28px; }
.business-inner{
  max-width: var(--container); margin:0 auto; display:grid; grid-template-columns: 1.1fr .7fr;
  gap: 50px; align-items:center;
}
.business h2{ font-size: clamp(1.7rem,3vw,2.5rem); margin: 0 0 20px; }
.business-copy p{ color: rgba(255,255,255,.72); font-size:1.02rem; margin-bottom:24px; max-width:56ch; }
.business-list{ margin-bottom:32px; display:grid; gap:12px; }
.business-list li{
  padding-left:26px; position:relative; color: rgba(255,255,255,.86); font-size:.96rem;
}
.business-list li::before{
  content:""; position:absolute; left:0; top:7px; width:12px; height:12px; border-radius:3px; background: var(--yellow);
}
.business-visual{
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:22px;
  display:flex; align-items:center; justify-content:center; padding: 40px; aspect-ratio: 1/1;
}
.business-art{ width:100%; height:100%; color: var(--yellow); max-width:220px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{ background: var(--swoosh); padding: 90px 28px; color:#fff; text-align:center; }
.cta-band-inner{ max-width: 680px; margin:0 auto; }
.cta-band h2{ font-size: clamp(1.8rem,3.6vw,2.8rem); margin-bottom:16px; }
.cta-band p{ font-size:1.08rem; opacity:.92; margin-bottom:32px; }
.cta-actions{ justify-content:center; }
.cta-band .btn-solid{ background:#fff; color: var(--ink); }
.cta-band .btn-solid:hover{ box-shadow: 0 10px 24px rgba(0,0,0,.22); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--paper); padding: 64px 28px 28px; border-top:1px solid var(--panel-line); }
.footer-inner{
  max-width: var(--container); margin:0 auto; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:40px; padding-bottom:40px; border-bottom:1px solid var(--panel-line);
}
.footer-brand{ display:flex; gap:14px; align-items:center; }
.brand-badge--footer{ width:44px; height:44px; }
.footer-word{ font-family: var(--display); font-weight:700; font-size:1.1rem; }
.footer-word em{ font-style:normal; color: var(--pink); }
.footer-word .brand-blue{ color: var(--blue); }
.footer-word small{ font-family: var(--mono); font-size:.55rem; letter-spacing:.24em; color: var(--ink-soft); margin-left:6px; }
.footer-tag{ color: var(--ink-soft); font-size:.86rem; margin-top:4px; }
.footer-links{ display:flex; gap:56px; }
.footer-links h4{ font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color: var(--ink-soft); margin-bottom:14px; font-weight:700; }
.footer-links a{ display:block; font-size:.92rem; margin-bottom:10px; }
.footer-links a:hover{ color: var(--pink); }
.footer-bottom{
  max-width: var(--container); margin: 24px auto 0; display:flex; justify-content:space-between;
  align-items:center; color: var(--ink-soft); font-size:.82rem;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ height: 340px; order:-1; }
  .business-inner{ grid-template-columns: 1fr; }
  .business-visual{ max-width: 280px; margin:0 auto; }
  .process-list{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-panel{ display:none; }
  .nav-burger{ display:flex; }
  .nav.is-open .nav-panel{
    display:flex; flex-direction:column; gap:20px; position:absolute; top:100%; left:0; right:0;
    background: var(--paper); padding: 22px 28px 26px; border-bottom: 1px solid var(--panel-line);
  }
  .nav.is-open .nav-links{ flex-direction:column; gap:16px; }
  .nav.is-open .nav-cta{ flex-direction:column; }
  .nav.is-open .nav-cta .btn{ width:100%; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }
  .footer-inner{ flex-direction:column; }
  .footer-links{ gap:32px; }
}
