/* ==========================================================================
   KESTUL PrintHub — style.css
   Core stylesheet: tokens, base, layout, components
   ========================================================================== */

/* ---------------------------------
   1. DESIGN TOKENS
--------------------------------- */
:root{
  /* Brand colors (fixed brief palette) */
  --blue:        #0057D9;
  --blue-dark:   #003FA0;
  --navy:        #0D1B2A;
  --white:       #FFFFFF;
  --gray-light:  #F5F8FC;
  --purple:      #6A1B9A;

  /* Derived surfaces */
  --surface:        var(--white);
  --surface-alt:    var(--gray-light);
  --surface-navy:   var(--navy);
  --text-body:      #38445A;
  --text-heading:   var(--navy);
  --text-muted:     #6B7A90;
  --border-soft:    rgba(13,27,42,0.08);

  /* Gradients (registration-mark / press theme) */
  --grad-primary: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-navy:    linear-gradient(160deg, #0D1B2A 0%, #142943 60%, #1B1233 100%);

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Radius & shadow */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(13,27,42,0.06);
  --shadow-md: 0 14px 40px rgba(13,27,42,0.10);
  --shadow-lg: 0 24px 60px rgba(13,27,42,0.16);
  --shadow-glow: 0 10px 30px rgba(0,87,217,0.25);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .5s;

  /* Layout */
  --container-w: 1200px;
  --header-h: 84px;
}

/* Dark mode tokens */
body.dark-mode{
  --surface:      #0D1420;
  --surface-alt:  #101B2C;
  --text-body:    #C4CEE0;
  --text-heading: #F5F8FC;
  --text-muted:   #8B98B2;
  --border-soft:  rgba(255,255,255,0.08);
}

/* ---------------------------------
   2. RESET & BASE
--------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@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; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

h1,h2,h3,h4{
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.15;
  margin: 0 0 .5em;
}
p{ margin: 0 0 1em; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }

.container{ max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

:focus-visible{ outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------
   3. UTILITIES / TYPE
--------------------------------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .9em;
}
.eyebrow.center{ text-align:center; }
.eyebrow::before{ content:"◆ "; color: var(--purple); }

.section-title{ font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section-sub{ color: var(--text-muted); font-size: 1.05rem; max-width: 620px; }
.section-head{ margin-bottom: 3.2rem; }
.section-head.light .section-title,
.section-head.light .eyebrow{ color: var(--white); }
.section-head.light .section-sub{ color: rgba(255,255,255,.72); }

.accent-cyan{ color: var(--blue); }
.accent-purple{ color: var(--purple); }

/* ---------------------------------
   4. BUTTONS
--------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5em;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--grad-primary); color:#fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,87,217,.35); }
.btn-outline{ border-color: var(--navy); color: var(--navy); }
body.dark-mode .btn-outline{ border-color:#fff; color:#fff; }
.btn-outline:hover{ background: var(--navy); color:#fff; transform: translateY(-3px); }
.btn-light{ background:#fff; color: var(--blue); }
.btn-light:hover{ transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.btn-outline-light{ border-color: rgba(255,255,255,.6); color:#fff; }
.btn-outline-light:hover{ background: rgba(255,255,255,.15); }
.btn-sm{ padding: 10px 20px; font-size:.88rem; }
.btn-block{ width:100%; }

/* ---------------------------------
   5. LOADER
--------------------------------- */
.loader{
  position: fixed; inset:0; z-index: 999;
  background: var(--grad-navy);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 20px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.loaded{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{ display:flex; gap:10px; }
.loader-dot{
  width:16px; height:16px; border-radius:50%;
  background: var(--blue);
  animation: loaderPulse 1s ease-in-out infinite;
}
.loader-dot:nth-child(2){ background: var(--purple); animation-delay:.15s; }
.loader-dot:nth-child(3){ background:#fff; animation-delay:.3s; }
@keyframes loaderPulse{ 0%,100%{ transform: scale(.6); opacity:.5;} 50%{ transform: scale(1.15); opacity:1;} }
.loader-text{ color: rgba(255,255,255,.65); font-family: var(--font-mono); font-size:.85rem; letter-spacing:.08em; }

.skip-link{
  position:absolute; left:-999px; top:0; background: var(--blue); color:#fff; padding: 12px 20px; z-index: 1001; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* ---------------------------------
   6. HEADER
--------------------------------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: background .3s var(--ease), height .3s var(--ease), box-shadow .3s var(--ease);
}
body.dark-mode .site-header{ background: rgba(13,20,32,.75); border-color: rgba(255,255,255,.06); }
.site-header.scrolled{ height: 68px; box-shadow: var(--shadow-sm); background: rgba(255,255,255,.92); }
body.dark-mode .site-header.scrolled{ background: rgba(13,20,32,.92); }

.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand-logo{ height: 52px; width:auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo{ height: 42px; }

.main-nav ul{ display:flex; gap: 2rem; }
.nav-link{
  font-weight:600; font-size:.95rem; color: var(--text-heading);
  position:relative; padding: 6px 0;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background: var(--grad-primary); transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active-link::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap: 14px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--border-soft);
  background: transparent; color: var(--text-heading);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s, transform .25s;
}
.icon-btn:hover{ background: var(--surface-alt); transform: rotate(15deg); }
.icon-btn svg{ width:19px; height:19px; }
.icon-moon{ display:none; }
body.dark-mode .icon-sun{ display:none; }
body.dark-mode .icon-moon{ display:block; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding: 8px; }
.nav-toggle span{ width: 24px; height: 2px; background: var(--text-heading); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------------------------------
   7. HERO
--------------------------------- */
.hero{
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 100px;
  background: var(--surface-alt);
  overflow: hidden;
}
.hero-halftone{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(0,87,217,.14) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 80% 30%, black, transparent 70%);
}
.hero-regmarks .regmark{ position:absolute; width:44px; height:44px; stroke: rgba(106,27,154,.35); fill:none; stroke-width:1.2; }
.rm-tl{ top: 110px; left: 4%; }
.rm-br{ bottom: 60px; right: 6%; }

.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items:center;
}
.hero-title{ font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin-bottom:.4em; }
.hero-title-line{ display:block; }
.hero-sub{ font-size: 1.15rem; max-width: 480px; color: var(--text-body); }
.hero-actions{ display:flex; gap: 16px; margin: 2rem 0 2.6rem; flex-wrap:wrap; }

.hero-trust{ display:flex; align-items:center; gap: 18px; flex-wrap:wrap; }
.trust-item{ display:flex; flex-direction:column; }
.trust-item strong{ font-family: var(--font-heading); font-size:1rem; color: var(--text-heading); }
.trust-item span{ font-size:.82rem; color: var(--text-muted); }
.divider-dot{ width:5px; height:5px; border-radius:50%; background: var(--purple); }

/* Hero visual — printed sheet stack */
.hero-visual{ position:relative; height: 460px; }
.press-card{ position:relative; width:100%; height:100%; }
.press-sheet{
  position:absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.press-sheet-1{ background: var(--grad-navy); transform: rotate(-7deg) translate(10px, 24px); opacity:.5; }
.press-sheet-2{ background: linear-gradient(160deg,#fff,#EEF3FB); transform: rotate(-3deg) translate(4px, 10px); opacity:.85; }
.press-sheet-3{
  background: #fff;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.press-logo{ width: 62%; }
.press-scanline{
  position:absolute; left: 6%; right:6%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0,87,217,.7);
  animation: scan 3.2s ease-in-out infinite;
}
@keyframes scan{ 0%{ top: 8%; opacity:0;} 10%{opacity:1;} 50%{ top: 88%; opacity:1;} 60%{opacity:0;} 100%{ top:8%; opacity:0;} }

.scroll-cue{
  position:absolute; left:50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border-soft); border-radius: 20px;
  display:flex; justify-content:center; padding-top:8px;
}
.scroll-cue span{ width:4px; height:8px; border-radius:2px; background: var(--blue); animation: cueMove 1.6s ease-in-out infinite; }
@keyframes cueMove{ 0%{ opacity:1; transform:translateY(0);} 70%{opacity:0; transform:translateY(12px);} 100%{opacity:0;} }

/* ---------------------------------
   8. ABOUT
--------------------------------- */
.about{ padding: 120px 0; background: var(--surface); }
.about-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items:center; }
.about-media{ position:relative; height: 380px; }
.about-swatch{
  position:absolute; inset:0;
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  background-size: 200% 200%;
  animation: swatchShift 8s ease infinite;
}
@keyframes swatchShift{ 0%,100%{ background-position: 0% 50%;} 50%{ background-position: 100% 50%;} }
.about-swatch::after{
  content:""; position:absolute; inset:0; border-radius: inherit;
  background-image: radial-gradient(rgba(255,255,255,.35) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  opacity:.5;
}
.about-card{
  position:absolute; left: -30px; bottom: -30px; max-width: 260px;
  background: var(--surface); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 22px 24px;
  border: 1px solid var(--border-soft);
}
.mono-tag{ font-family: var(--font-mono); font-size:.72rem; color: var(--purple); letter-spacing:.1em; }
.about-card p{ margin: .5em 0 0; font-weight:600; color: var(--text-heading); font-size:.95rem; }
.lead{ font-size: 1.15rem; color: var(--text-heading); font-weight:500; }

/* ---------------------------------
   9. SERVICES
--------------------------------- */
.services{ padding: 120px 0; background: var(--surface-alt); }
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card{
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon{
  width: 56px; height:56px; border-radius: 16px;
  background: var(--grad-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; margin-bottom: 20px;
}
.service-icon svg{ width: 28px; height:28px; }
.service-card h3{ font-size: 1.2rem; margin-bottom: .7em; }
.service-list li{ position:relative; padding-left: 18px; margin-bottom: .5em; color: var(--text-body); font-size:.95rem; }
.service-list li::before{ content:""; position:absolute; left:0; top:.55em; width:6px; height:6px; border-radius:50%; background: var(--purple); }

/* ---------------------------------
   10. WHY US
--------------------------------- */
.why-us{ padding: 120px 0; background: var(--grad-navy); color:#fff; }
.why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s;
}
.why-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,.07); }
.why-card svg{ width: 30px; height: 30px; color: var(--blue); margin-bottom: 16px; }
.why-card:nth-child(3n) svg, .why-card:nth-child(3n-1) svg{ color: var(--purple); }
.why-card h3{ color:#fff; font-size: 1.1rem; margin-bottom:.4em; }
.why-card p{ color: rgba(255,255,255,.65); font-size:.92rem; margin:0; }

.process{ margin-top: 90px; text-align:center; }
.process-title{ color:#fff; margin-bottom: 3rem; }
.process-track{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap: 10px; }
.process-step{ display:flex; flex-direction:column; align-items:center; gap: 10px; width: 140px; }
.process-mark{
  width: 52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  border: 2px solid var(--blue); color:#fff; font-family: var(--font-heading); font-weight:700;
  background: rgba(0,87,217,.12);
}
.process-step p{ margin:0; font-size:.85rem; color: rgba(255,255,255,.75); }
.process-line{ width: 50px; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 6px, transparent 6px 12px); margin-bottom: 30px; }

/* ---------------------------------
   11. OUR STORY / TIMELINE
--------------------------------- */
.story{ padding: 120px 0; background: var(--surface); }
.timeline{ position:relative; max-width: 760px; margin: 0 auto; }
.timeline-track{ position:absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--purple)); }
.timeline-item{ position:relative; padding-left: 60px; margin-bottom: 46px; }
.timeline-item:last-child{ margin-bottom:0; }
.timeline-dot{
  position:absolute; left: 8px; top: 2px; width: 24px; height:24px; border-radius:50%;
  background: var(--surface); border: 3px solid var(--blue); box-shadow: 0 0 0 5px var(--surface-alt);
}
.timeline-item:nth-child(3) .timeline-dot, .timeline-item:nth-child(4) .timeline-dot{ border-color: var(--purple); }
.timeline-content h3{ font-size: 1.25rem; margin-bottom:.3em; }
.timeline-content p{ color: var(--text-muted); margin:0; }

/* ---------------------------------
   13. FAQ
--------------------------------- */
.faq{ padding: 120px 0; background: var(--surface); }
.faq-list{ max-width: 800px; margin: 0 auto; display:flex; flex-direction:column; gap: 14px; }
.faq-item{ border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow:hidden; background: var(--surface-alt); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap: 16px;
  padding: 20px 24px; background:none; border:none; text-align:left;
  font-family: var(--font-heading); font-weight:600; font-size:1rem; color: var(--text-heading);
}
.faq-icon{ flex-shrink:0; width: 28px; height:28px; border-radius:50%; background: var(--grad-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.1rem; transition: transform .3s var(--ease); }
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-answer p{ padding: 0 24px 20px; margin:0; color: var(--text-muted); }

/* ---------------------------------
   14. CTA
--------------------------------- */
.cta{ position:relative; padding: 100px 0; background: var(--grad-primary); overflow:hidden; text-align:center; }
.cta-halftone{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.25) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black, transparent 75%);
}
.cta-inner{ position:relative; z-index:2; }
.cta h2{ color:#fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta p{ color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------------------------------
   15. CONTACT
--------------------------------- */
.contact{ padding: 120px 0; background: var(--surface-alt); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-list{ margin: 2rem 0; display:flex; flex-direction:column; gap: 20px; }
.contact-list li{ display:flex; align-items:flex-start; gap: 16px; }
.contact-list svg{ width: 22px; height:22px; color: var(--blue); flex-shrink:0; margin-top:3px; }
.contact-label{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color: var(--text-muted); margin-bottom: .2em; }
.contact-list a{ font-weight:600; color: var(--text-heading); }
.contact-list a:hover{ color: var(--blue); }
.contact-map{ border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); }
.contact-map iframe{ width:100%; height: 260px; border:0; display:block; filter: grayscale(.15); }

.contact-form-wrap{ background: var(--surface); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); }
.form-row{ margin-bottom: 20px; }
.form-row label{ display:block; font-size:.85rem; font-weight:600; color: var(--text-heading); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--border-soft);
  background: var(--surface-alt); color: var(--text-heading); font-family: var(--font-body); font-size:.95rem;
  transition: border-color .25s, box-shadow .25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,87,217,.12);
}
.form-row textarea{ resize: vertical; min-height: 100px; }
.form-status{ margin-top: 14px; font-size:.9rem; text-align:center; min-height: 1.2em; }
.form-status.success{ color: #1B8A5A; }
.form-status.error{ color: #C0392B; }
.honeypot{ position:absolute; left:-9999px; }

/* ---------------------------------
   16. FOOTER
--------------------------------- */
.site-footer{ background: var(--navy); color: rgba(255,255,255,.75); padding-top: 80px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo{ height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p{ color: rgba(255,255,255,.5); font-size:.9rem; }
.footer-col h4{ color:#fff; font-size:1rem; margin-bottom: 1.1em; }
.footer-col ul{ display:flex; flex-direction:column; gap: 10px; }
.footer-col a:hover{ color: var(--blue); }
.footer-bottom{ padding: 24px 0; }
.footer-bottom-inner{ text-align:center; font-size:.85rem; color: rgba(255,255,255,.4); }

/* ---------------------------------
   17. FLOATING BUTTONS
--------------------------------- */
.float-btn{
  position: fixed; right: 24px; width: 54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); z-index: 400; border:none;
  transition: transform .25s var(--ease), opacity .3s var(--ease), visibility .3s;
}
.float-btn svg{ width: 26px; height:26px; }
.float-btn:hover{ transform: translateY(-4px) scale(1.05); }
.float-whatsapp{ bottom: 24px; background:#25D366; color:#fff; }
.float-call{ bottom: 90px; background: var(--grad-primary); color:#fff; }
.back-to-top{ bottom: 156px; background: var(--surface); color: var(--blue); border: 1px solid var(--border-soft); opacity:0; visibility:hidden; }
.back-to-top.visible{ opacity:1; visibility:visible; }

/* ---------------------------------
   18. SCROLL REVEAL
--------------------------------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }
