/*
Theme Name: Simpliweb
Theme URI: https://www.simpliweb.nl
Author: Simpliweb
Description: Custom thema voor Simpliweb — Merk. Strategie. Digitaal.
Version: 2.3
Text Domain: simpliweb
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;600;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --ink:    #0c0c0a;
  --ink2:   #161614;
  --ink3:   #1e1e1c;
  --cream:  #f0ede6;
  --muted:  #7a776f;
  --yellow: #F7C848;
  --ydark:  #1a1400;
  --border: rgba(240,237,230,0.08);
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'Syne', sans-serif;
  --body:   'DM Sans', sans-serif;
  --pad:    clamp(1.5rem, calc((100vw - 1560px) / 2 + 3rem), 10vw);
  --ease:   cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a, button, input, select, textarea, *, *::before, *::after, [role="button"], label, img, svg, div, section, span { cursor: none !important; }

/* ── CURSOR ── */
#sw-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
  transition: width .15s var(--ease), height .15s var(--ease), opacity .2s;
}
#sw-cursor.big { width: 52px; height: 52px; }

/* ── NAV ── */
.sw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(12,12,10,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.sw-nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sw-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sw-nav-scan-btn {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--yellow) !important;
  text-decoration: none !important;
  border: 1px solid rgba(247,200,72,.35);
  padding: .55rem 1.2rem;
  border-radius: 2rem;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.sw-nav-scan-btn:hover {
  background: rgba(247,200,72,.08);
  border-color: var(--yellow);
  color: var(--yellow) !important;
}
.sw-nav-cta-btn {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: var(--yellow);
  color: #1a1400 !important;
  text-decoration: none !important;
  padding: .6rem 1.4rem;
  border-radius: 2rem;
  white-space: nowrap;
  transition: opacity .2s;
}
.sw-nav-cta-btn:hover { opacity: .85; color: #1a1400 !important; }
.sw-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 800; font-size: 1.05rem;
  letter-spacing: -.025em; color: var(--cream); text-decoration: none;
}
.sw-logo em { color: var(--yellow); font-style: normal; }

.sw-nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.sw-nav-links li { list-style: none; }
.sw-nav-links a, .sw-nav-links li a {
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.sw-nav-links a:hover, .sw-nav-links li a:hover { color: var(--cream); }
.sw-nav-links .sw-nav-cta,
.sw-nav-links li.sw-nav-cta a {
  background: var(--yellow); color: var(--ydark) !important;
  padding: .55rem 1.35rem; border-radius: 2rem;
  font-weight: 700; letter-spacing: .03em; line-height: 1;
  transition: opacity .2s;
}
.sw-nav-links .sw-nav-cta:hover,
.sw-nav-links li.sw-nav-cta a:hover { opacity: .85; color: var(--ydark) !important; }
.sw-nav-links li.current-menu-item > a { color: var(--cream); }

.sw-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
}
.sw-nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
}

/* ── SHARED ── */
.sw-label {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: .6rem;
}
.sw-label::before { content: ''; width: 1rem; height: 1px; background: var(--yellow); flex-shrink: 0; }

.sw-btn {
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  line-height: 1; padding: .95rem 1.9rem; border-radius: 2rem;
  text-decoration: none; letter-spacing: .02em;
  display: inline-block; border: none; white-space: nowrap;
  transition: opacity .2s;
}
.sw-btn-y { background: var(--yellow) !important; color: #1a1400 !important; }
.sw-btn-y:hover { opacity: .88; color: #1a1400 !important; }
.sw-btn-o { color: var(--muted) !important; border: 1px solid var(--border); background: transparent !important; }
.sw-btn-o:hover { border-color: rgba(240,237,230,.2); color: var(--cream) !important; }

/* WordPress link color reset for buttons */
a.sw-btn, a.sw-btn:visited, a.sw-btn:link {
  text-decoration: none !important;
}
a.sw-btn-y, a.sw-btn-y:visited { color: #1a1400 !important; }
a.sw-btn-o, a.sw-btn-o:visited { color: var(--muted) !important; }

/* ── MARQUEE ── */
.sw-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0; background: var(--ink2);
}
.sw-marquee-track { display: flex; white-space: nowrap; animation: sw-scroll 32s linear infinite; }
.sw-marquee-track span {
  font-family: var(--sans); font-weight: 700; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 0 2rem;
}
.sw-marquee-track span.y { color: var(--yellow); font-size: .5rem; }
@keyframes sw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.sw-hero {
  min-height: 100vh;
  overflow: hidden; position: relative;
  background: radial-gradient(ellipse 55% 65% at 78% 50%, rgba(247,200,72,.035) 0%, transparent 70%), var(--ink);
}
.sw-hero-inner-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 9rem 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.sw-hero-tag {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1.75rem; display: flex; align-items: center; gap: .6rem;
  opacity: 0; animation: sw-up .6s .1s var(--ease) forwards;
}
.sw-hero-tag::before { content: ''; width: 1.6rem; height: 1px; background: var(--yellow); }
.sw-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.8vw, 8rem);
  line-height: .97; letter-spacing: -.03em; margin-bottom: 2.5rem;
  opacity: 0; animation: sw-up .7s .2s var(--ease) forwards;
}
.sw-hero h1 em  { font-style: italic; color: var(--yellow); }
.sw-hero h1 .dim{ font-style: italic; color: var(--muted); }
.sw-hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 40ch; line-height: 1.85;
  margin-bottom: 2.5rem; opacity: 0; animation: sw-up .6s .35s var(--ease) forwards;
}
.sw-hero-sub strong { color: var(--cream); font-weight: 400; }
.sw-hero-btns {
  display: flex; gap: .85rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: sw-up .6s .45s var(--ease) forwards;
}
.sw-hero-right {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: sw-fadein 1s .3s var(--ease) forwards;
}
.sw-smiley-wrap {
  position: relative; width: 100%; max-width: 500px;
  animation: sw-breathe 6s ease-in-out infinite;
}
.sw-smiley-wrap svg { width: 100%; height: auto; }
@keyframes sw-breathe {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 30px 60px rgba(247,200,72,.18)); }
  50%       { transform: translateY(-10px); filter: drop-shadow(0 45px 80px rgba(247,200,72,.28)); }
}
.sw-float {
  position: absolute; border-radius: .65rem; padding: .7rem 1rem;
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .03em; white-space: nowrap; animation: sw-float 4s ease-in-out infinite;
}
.sw-float-dark  { top: 8%; right: 0%; background: var(--ink2); border: 1px solid var(--border); color: var(--muted); }
.sw-float-dark span { color: var(--yellow); }
.sw-float-yellow{ bottom: 10%; left: -4%; background: var(--yellow); color: var(--ydark); font-weight: 800; animation-delay: 1.8s; }
@keyframes sw-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.sw-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.sw-scroll-hint span {
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); opacity: .4;
}
.sw-scroll-hint-arrow {
  width: 1px; height: 2.5rem;
  background: linear-gradient(to bottom, rgba(247,200,72,.5), transparent);
  animation: sw-drop 2s ease-in-out infinite;
}
@keyframes sw-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── INTRO / OVER ONS ── */
.sw-intro {
  display: grid; grid-template-columns: 4fr 3fr 5fr;
  max-width: 1560px; margin: 0 auto;
  padding: 9rem var(--pad); border-bottom: 1px solid var(--border);
}
.sw-intro-left { padding-right: 4rem; border-right: 1px solid var(--border); }
.sw-intro-heading { font-family: var(--serif); font-size: clamp(2.2rem, 3.8vw, 3.8rem); line-height: 1.06; letter-spacing: -.025em; }
.sw-intro-heading em { font-style: italic; color: var(--muted); }
.sw-stats { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 4rem; }
.sw-stat-big { font-family: var(--sans); font-weight: 800; font-size: 3.2rem; letter-spacing: -.04em; color: var(--yellow); line-height: 1; }
.sw-stat-desc { font-size: .82rem; color: var(--muted); font-family: var(--sans); margin-top: .3rem; }

.sw-intro-photo { position: relative; align-self: stretch; margin: 0 2rem; }
.sw-intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: .75rem; display: block; }
.sw-intro-photo-caption {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(12,12,10,.88); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: .5rem; padding: .6rem 1rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.sw-intro-photo-caption strong { font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--cream); }
.sw-intro-photo-caption span  { font-size: .68rem; color: var(--muted); font-family: var(--sans); }

.sw-intro-right { padding-left: 4rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.sw-intro-right p { font-size: 1rem; color: var(--muted); line-height: 1.85; }
.sw-intro-right p strong { color: var(--cream); font-weight: 400; }
.sw-quote-card { margin-top: .5rem; padding: 1.75rem; background: var(--ink2); border: 1px solid var(--border); border-left: 2px solid var(--yellow); border-radius: 0 .75rem .75rem 0; }
.sw-quote-card q { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--cream); line-height: 1.65; display: block; margin-bottom: .65rem; }
.sw-quote-who { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ── SERVICES ── */
.sw-services { border-bottom: 1px solid var(--border); }
.sw-services-header {
  display: grid; grid-template-columns: 5fr 7fr;
  padding: 5rem var(--pad) 4rem; max-width: 1560px; margin: 0 auto; align-items: end; gap: 2rem;
}
.sw-services-heading { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.0; letter-spacing: -.03em; }
.sw-services-heading em { font-style: italic; color: var(--muted); }
.sw-services-intro { font-size: .95rem; color: var(--muted); max-width: 42ch; line-height: 1.85; padding-left: 3rem; }

.sw-service-list { max-width: 1560px; margin: 0 auto; padding: 0 var(--pad) 2rem; }

.sw-service-item {
  display: grid; grid-template-columns: 3.5rem 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-radius: .5rem;
  transition: background .3s var(--ease), border-color .3s;
  cursor: default;
}
.sw-service-item:hover { background: var(--yellow); border-bottom-color: transparent; }
.sw-service-item:hover .sw-si-num   { color: rgba(26,20,0,.45); }
.sw-service-item:hover .sw-si-title { color: var(--ydark); }
.sw-service-item:hover .sw-si-tag   { background: rgba(26,20,0,.1); color: var(--ydark); border-color: rgba(26,20,0,.15); }
.sw-service-item:hover .sw-si-arrow { border-color: rgba(26,20,0,.2); color: var(--ydark); transform: translate(2px, -2px); }
.sw-service-item:hover .sw-si-desc  { color: rgba(26,20,0,.65); }

.sw-si-num {
  font-family: var(--sans); font-weight: 700; font-size: .72rem;
  color: var(--muted); letter-spacing: .06em; transition: color .3s; padding-left: .25rem;
}
.sw-si-main { min-width: 0; }
.sw-si-title {
  font-family: var(--sans); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -.02em; color: var(--cream);
  transition: color .3s; line-height: 1.2;
}

/* Grid-rows trick: geen max-height artefact */
.sw-si-desc-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.sw-service-item:hover .sw-si-desc-wrap { grid-template-rows: 1fr; }
.sw-si-desc {
  overflow: hidden; min-height: 0;
  font-size: .875rem; color: var(--muted); line-height: 1.65;
  transition: color .3s;
  padding-top: 0;
}
.sw-service-item:hover .sw-si-desc { padding-top: .5rem; }

.sw-si-right { display: flex; align-items: center; gap: 1.25rem; }
.sw-si-tag {
  font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--muted);
  background: var(--ink3); border: 1px solid var(--border);
  padding: .3rem .85rem; border-radius: 1rem; white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.sw-si-arrow {
  width: 2rem; height: 2rem; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .3s, border-color .3s, transform .3s var(--ease);
}
.sw-si-arrow svg { width: 13px; height: 13px; }

/* ── YELLOW BREAK ── */
.sw-yellow-break { background: var(--yellow); padding: 8rem var(--pad); position: relative; overflow: hidden; }
.sw-yb-inner { max-width: 1560px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.sw-yb-heading { font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5rem); line-height: 1.0; letter-spacing: -.03em; color: var(--ydark); }
.sw-yb-heading em { font-style: italic; opacity: .45; }
.sw-yb-right { display: flex; flex-direction: column; gap: 1.5rem; }
.sw-yb-right p { font-size: 1rem; color: var(--ydark); opacity: .65; line-height: 1.85; }
.sw-yb-btn {
  background: var(--ydark); color: var(--yellow) !important;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .03em; line-height: 1;
  padding: 1rem 2rem; border-radius: 2rem; text-decoration: none !important;
  display: inline-block; align-self: flex-start; transition: opacity .2s;
}
.sw-yb-btn:hover { opacity: .85; color: var(--yellow) !important; }
.sw-yb-bg { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); opacity: .05; width: 50vw; pointer-events: none; }

/* ── PROCESS ── */
.sw-process { padding: 9rem var(--pad); max-width: 1560px; margin: 0 auto; }
.sw-process-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; gap: 3rem; flex-wrap: wrap; }
.sw-process-heading { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.0; letter-spacing: -.03em; max-width: 14ch; }
.sw-process-heading em { font-style: italic; color: var(--muted); }
.sw-process-note { font-size: .95rem; color: var(--muted); max-width: 38ch; line-height: 1.85; }
.sw-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.sw-steps::before { content: ''; position: absolute; top: 2rem; left: 2rem; right: 2rem; height: 1px; background: var(--border); }
.sw-step { padding: 0 2rem 0 0; }
.sw-step-dot {
  width: 4rem; height: 4rem; border-radius: 50%; background: var(--ink2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: .72rem; color: var(--yellow); margin-bottom: 2rem; letter-spacing: .04em;
}
.sw-step-title { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--cream); margin-bottom: .65rem; letter-spacing: -.01em; }
.sw-step-text  { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ── WHY ── */
.sw-why { background: var(--ink2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 9rem var(--pad); }
.sw-why-inner { max-width: 1560px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; }
.sw-why-left { padding-right: 5rem; border-right: 1px solid var(--border); }
.sw-why-heading { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.6rem); line-height: 1.06; letter-spacing: -.025em; margin-bottom: 3rem; }
.sw-why-heading em { font-style: italic; color: var(--muted); }
.sw-why-list { list-style: none; }
.sw-why-list li { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.35rem 0; border-top: 1px solid var(--border); }
.sw-why-list li:last-child { border-bottom: 1px solid var(--border); }
.sw-wl-dot { width: 1.6rem; height: 1.6rem; flex-shrink: 0; border-radius: 50%; background: rgba(247,200,72,.08); border: 1px solid rgba(247,200,72,.2); display: flex; align-items: center; justify-content: center; margin-top: .2rem; }
.sw-wl-dot svg { width: .65rem; height: .65rem; stroke: var(--yellow); fill: none; stroke-width: 2.5; }
.sw-wl-text { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.sw-wl-text strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: .15rem; }
.sw-why-right { padding-left: 5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.sw-why-right p { font-size: 1rem; color: var(--muted); line-height: 1.85; }
.sw-why-right p strong { color: var(--cream); font-weight: 400; }

/* ── CTA ── */
.sw-cta { padding: 10rem var(--pad); text-align: center; position: relative; overflow: hidden; }
.sw-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60vw; height: 50vh; background: radial-gradient(ellipse, rgba(247,200,72,.05) 0%, transparent 70%); pointer-events: none; }
.sw-cta .sw-label { justify-content: center; }
.sw-cta .sw-label::before { display: none; }
.sw-cta-heading { font-family: var(--serif); font-size: clamp(3.5rem,8vw,7rem); line-height: .97; letter-spacing: -.03em; max-width: 14ch; margin: 0 auto 1.5rem; }
.sw-cta-heading em { font-style: italic; color: var(--yellow); }
.sw-cta-sub  { font-size: 1rem; color: var(--muted); max-width: 44ch; margin: 0 auto .75rem; line-height: 1.85; }
.sw-cta-wink { font-size: .82rem; color: var(--muted); font-style: italic; opacity: .5; margin: 0 auto 3rem; }
.sw-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── HOE WE WERKEN ── */
.sw-page-hero { padding: 14rem var(--pad) 7rem; max-width: 900px; margin: 0 auto; }
.sw-page-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem); line-height: .97; letter-spacing: -.03em; margin-bottom: 2rem; }
.sw-page-hero h1 em { font-style: italic; color: var(--yellow); }
.sw-page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 52ch; line-height: 1.85; }
.sw-steps-full { max-width: 1400px; margin: 0 auto; padding: 4rem var(--pad) 9rem; }
.sw-step-full { display: grid; grid-template-columns: 5rem 1fr; gap: 3rem; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.sw-step-full:first-child { border-top: 1px solid var(--border); }
.sw-step-num-big { font-family: var(--sans); font-weight: 800; font-size: 4rem; letter-spacing: -.05em; color: rgba(247,200,72,.12); line-height: 1; padding-top: .25rem; }
.sw-step-content h3 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; letter-spacing: -.02em; color: var(--cream); margin-bottom: 1rem; line-height: 1.1; }
.sw-step-content p { font-size: .95rem; color: var(--muted); line-height: 1.85; max-width: 56ch; }
.sw-step-tag { display: inline-block; margin-top: 1.25rem; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; line-height: 1; color: var(--yellow); background: rgba(247,200,72,.08); border: 1px solid rgba(247,200,72,.2); padding: .4rem 1rem; border-radius: 1rem; }

/* ── CONTACT ── */
.sw-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; padding: 13rem var(--pad) 9rem; gap: 8rem; align-items: stretch; }
.sw-contact-left { display: flex; flex-direction: column; }
.sw-contact-left h1 { font-family: var(--serif); font-size: clamp(3rem,5vw,5rem); line-height: .97; letter-spacing: -.03em; margin-bottom: 2rem; }
.sw-contact-left h1 em { font-style: italic; color: var(--yellow); }
.sw-contact-left p { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; }
.sw-contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.sw-contact-detail { display: flex; align-items: center; gap: .85rem; }
.sw-contact-detail-icon { width: 2.2rem; height: 2.2rem; border-radius: .45rem; background: rgba(247,200,72,.08); border: 1px solid rgba(247,200,72,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sw-contact-detail-icon svg { width: .9rem; height: .9rem; stroke: var(--yellow); fill: none; stroke-width: 1.5; }
.sw-contact-detail-text a, .sw-contact-detail-text span { font-size: .9rem; color: var(--muted); text-decoration: none; font-family: var(--body); }
.sw-contact-detail-text a:hover { color: var(--cream); }
.sw-contact-photo { margin-top: auto; position: relative; border-radius: .75rem; overflow: hidden; }
.sw-contact-photo img { width: 100%; max-height: 400px; object-fit: cover; object-position: center 18%; display: block; }
.sw-contact-photo-label { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(12,12,10,.88); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: .5rem; padding: .6rem 1rem; display: flex; flex-direction: column; gap: .2rem; }
.sw-contact-photo-label strong { font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--cream); }
.sw-contact-photo-label span   { font-size: .68rem; color: var(--muted); font-family: var(--sans); font-style: italic; }

.sw-contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.sw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.sw-field { display: flex; flex-direction: column; gap: .4rem; }
.sw-field label { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.sw-field input, .sw-field select, .sw-field textarea { background: var(--ink2); border: 1px solid var(--border); border-radius: .5rem; padding: .85rem 1rem; font-family: var(--body); font-size: .9rem; color: var(--cream); outline: none; transition: border-color .2s; width: 100%; appearance: none; }
.sw-field input:focus, .sw-field select:focus, .sw-field textarea:focus { border-color: rgba(247,200,72,.35); }
.sw-field textarea { resize: vertical; min-height: 130px; }
.sw-required { color: var(--yellow); }
.sw-char-count { display: block; font-family: var(--sans); font-size: .65rem; color: var(--muted); opacity: .45; margin-top: .3rem; text-align: right; transition: color .2s; }
.sw-char-count.sw-char-warn   { color: var(--yellow); opacity: .75; }
.sw-char-count.sw-char-danger { color: #f08080; opacity: 1; }
.sw-form-submit { background: var(--yellow); color: #1a1400 !important; font-family: var(--sans); font-weight: 600; font-size: .875rem; line-height: 1; letter-spacing: .03em; padding: 1.1rem 2.5rem; border-radius: 2rem; border: none; width: 100%; margin-top: .5rem; transition: opacity .2s; }
.sw-form-submit:hover { opacity: .88; }
.sw-form-submit:disabled { opacity: .35; }
.sw-form-note { font-size: .75rem; color: var(--muted); text-align: center; opacity: .5; }

/* ── CAPTCHA ── */
.sw-captcha { background: var(--ink2); border: 1px solid var(--border); border-radius: .75rem; padding: 1.5rem; margin-bottom: 1rem; }
.sw-captcha-label { display: flex; align-items: center; gap: .6rem; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.sw-captcha-stage { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.sw-captcha-target { position: relative; width: 110px; flex-shrink: 0; }
.sw-captcha-target svg { width: 110px; height: 110px; display: block; }
.sw-captcha-progress { position: absolute; bottom: -1.4rem; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
.sw-captcha-pieces { display: flex; gap: .65rem; flex-wrap: wrap; flex: 1; }
.sw-piece { display: flex; flex-direction: column; align-items: center; gap: .45rem; background: var(--ink3); border: 1px solid var(--border); border-radius: .5rem; padding: .75rem .65rem .55rem; min-width: 68px; transition: background .2s, border-color .2s, transform .15s; }
.sw-piece:hover:not(:disabled) { background: var(--ink); border-color: rgba(247,200,72,.3); transform: translateY(-2px); }
.sw-piece svg { width: 34px; height: 34px; display: block; }
.sw-piece span { font-family: var(--sans); font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.sw-piece-placed { opacity: .3; }
.sw-captcha-done { display: flex; align-items: center; gap: .6rem; margin-top: 1.25rem; padding: .8rem 1rem; background: rgba(247,200,72,.1); border: 1px solid rgba(247,200,72,.25); border-radius: .5rem; font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--yellow); opacity: 0; max-height: 0; overflow: hidden; transition: opacity .4s, max-height .4s; }
.sw-captcha-done-visible { opacity: 1; max-height: 4rem; }

/* ── FOOTER ── */
.sw-footer { border-top: 1px solid var(--border); }
.sw-footer-inner { max-width: 1600px; margin: 0 auto; padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.sw-footer-scan { display: flex; align-items: center; gap: .5rem; font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .04em; color: #F7C848 !important; text-decoration: none !important; border: 1px solid rgba(247,200,72,.3); padding: .5rem 1.1rem; border-radius: 2rem; white-space: nowrap; transition: background .2s; }
.sw-footer-scan:hover { background: rgba(247,200,72,.06); }
.sw-footer-links { display: flex; gap: 2rem; list-style: none; }
.sw-footer-links a { font-family: var(--sans); font-size: .75rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.sw-footer-links a:hover { color: var(--cream); }
.sw-footer-copy { font-family: var(--sans); font-size: .72rem; color: var(--muted); opacity: .4; }

/* ── LEGAL ── */
.sw-legal-wrap { max-width: 1400px; margin: 0 auto; padding: 13rem var(--pad) 8rem; }
.sw-legal-header { margin-bottom: 5rem; }
.sw-legal-header h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); line-height: .97; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.sw-legal-header h1 em { font-style: italic; color: var(--yellow); }
.sw-legal-header > p { font-size: .95rem; color: var(--muted); max-width: 52ch; line-height: 1.85; margin-bottom: 2.5rem; }
.sw-legal-downloads { display: flex; gap: 1rem; flex-wrap: wrap; }
.sw-legal-body { display: grid; grid-template-columns: 1fr 3fr; gap: 5rem; align-items: start; }
.sw-legal-meta { position: sticky; top: 7rem; background: var(--ink2); border: 1px solid var(--border); border-radius: .75rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.sw-legal-meta-item { display: flex; flex-direction: column; gap: .2rem; }
.sw-legal-meta-item span { font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--yellow); }
.sw-legal-meta-item, .sw-legal-meta-item a { font-size: .85rem; color: var(--muted); text-decoration: none; }
.sw-legal-meta-item a:hover { color: var(--cream); }
.sw-legal-content { display: flex; flex-direction: column; }
.sw-legal-article { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.sw-legal-article:first-child { border-top: 1px solid var(--border); }
.sw-legal-article h2 { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--cream); margin-bottom: 1rem; display: flex; align-items: baseline; gap: .75rem; }
.sw-legal-article h2 span { font-family: var(--sans); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--yellow); background: rgba(247,200,72,.08); padding: .25rem .65rem; border-radius: 1rem; flex-shrink: 0; }
.sw-legal-article p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: .75rem; }
.sw-legal-article p:last-child { margin-bottom: 0; }
.sw-legal-article ul { margin: .75rem 0 0 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.sw-legal-article ul li { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.sw-legal-article ul li strong { color: var(--cream); font-weight: 500; }
.sw-legal-article a { color: var(--yellow); text-decoration: none; }
.sw-legal-article a:hover { text-decoration: underline; }

/* ── SCROLL ANIMATIES ── */
.sw-anim { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.sw-anim.sw-visible { opacity: 1; transform: none; }
.sw-anim-left { opacity: 0; transform: translateX(-16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.sw-anim-left.sw-visible { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes sw-up     { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes sw-fadein { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .sw-nav-inner { padding: 1.1rem 1.5rem; }
  .sw-nav-links { display: none; }
  .sw-nav-scan-btn { display: none; }
  .sw-nav-cta-btn { display: none; }
  .sw-nav-toggle { display: flex; }
  .sw-nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ink); justify-content: center; align-items: center; gap: 2.5rem; z-index: 199; }
  .sw-nav-links.open a { font-size: 1.2rem; }

  .sw-hero-inner-grid { grid-template-columns: 1fr; padding: 8rem 1.5rem 5rem; gap: 0; }
  .sw-hero-right { display: none; }
  .sw-scroll-hint { display: none; }

  .sw-intro { grid-template-columns: 1fr; padding: 5rem 1.5rem; }
  .sw-intro-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 3.5rem; margin-bottom: 3.5rem; }
  .sw-intro-photo { display: none; }
  .sw-intro-right { padding-left: 0; }

  .sw-services-header { grid-template-columns: 1fr; padding: 4rem 1.5rem 2.5rem; }
  .sw-services-intro { padding-left: 0; margin-top: 1rem; }
  .sw-service-list { padding: 0 1.5rem 2rem; }
  .sw-service-item { grid-template-columns: 2.5rem 1fr; gap: .75rem; padding: 1.5rem 1rem; }
  .sw-si-right { display: none; }

  .sw-yb-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sw-yellow-break { padding: 6rem 1.5rem; }

  .sw-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sw-steps::before { display: none; }
  .sw-process { padding: 5rem 1.5rem; }

  .sw-why { padding: 5rem 1.5rem; }
  .sw-why-inner { grid-template-columns: 1fr; }
  .sw-why-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 3.5rem; margin-bottom: 3.5rem; }
  .sw-why-right { padding-left: 0; }

  .sw-cta { padding: 6rem 1.5rem; }
  .sw-footer-inner { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }

  .sw-contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; padding: 10rem 1.5rem 5rem; }
  .sw-form-row { grid-template-columns: 1fr; }

  .sw-page-hero { padding: 10rem 1.5rem 5rem; }
  .sw-steps-full { padding: 3rem 1.5rem 6rem; }
  .sw-step-full { grid-template-columns: 1fr; gap: .75rem; }
  .sw-step-num-big { font-size: 2.5rem; }

  .sw-legal-wrap { padding: 10rem 1.5rem 5rem; }
  .sw-legal-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .sw-legal-meta { position: static; }
}

/* ── LANDINGSPAGINA's ── */
.sw-lp-hero {
  padding-top: 13rem;
  padding-bottom: 8rem;
  padding-left: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  padding-right: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(247,200,72,.04) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(247,200,72,.03) 0%, transparent 60%),
    #0c0c0a;
  position: relative;
  overflow: hidden;
}
/* Decoratieve smiley-achtergrond rechts */
.sw-lp-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 35vw, 480px);
  height: clamp(200px, 35vw, 480px);
  border-radius: 50%;
  border: 1px solid rgba(247,200,72,.06);
  box-shadow:
    0 0 0 clamp(30px, 4vw, 60px) rgba(247,200,72,.025),
    0 0 0 clamp(60px, 8vw, 120px) rgba(247,200,72,.012);
  pointer-events: none;
}
.sw-lp-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.sw-lp-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .97; letter-spacing: -.03em; margin-bottom: 2rem;
}
.sw-lp-h1 em { font-style: italic; color: #F7C848; }
.sw-lp-sub { font-size: 1.1rem; color: #7a776f; max-width: 52ch; line-height: 1.85; margin-bottom: 2.5rem; }
.sw-lp-sub strong { color: #f0ede6; font-weight: 400; }
.sw-lp-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Inline CTA banner */
.sw-cta-inline {
  background: #F7C848;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  padding-right: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
}
.sw-cta-inline-inner {
  max-width: 1560px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.sw-cta-inline-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05; letter-spacing: -.025em; color: #1a1400; margin-bottom: .5rem;
}
.sw-cta-inline-sub { font-size: .95rem; color: #1a1400; opacity: .65; max-width: 50ch; line-height: 1.7; }
.sw-cta-inline .sw-btn-y { background: #1a1400 !important; color: #F7C848 !important; white-space: nowrap; flex-shrink: 0; }
.sw-cta-inline .sw-btn-y:hover { opacity: .85 !important; }

.sw-lp-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  padding-right: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
}
.sw-lp-section-inner { max-width: 1560px; margin: 0 auto; }
.sw-lp-section.alt { background: #161614; border-top: 1px solid rgba(240,237,230,0.08); border-bottom: 1px solid rgba(240,237,230,0.08); }

.sw-lp-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6rem;
  align-items: start;
}
.sw-lp-2col-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05; letter-spacing: -.025em; margin-bottom: 1.5rem;
  color: #f0ede6;
}
.sw-lp-2col-heading em { font-style: italic; color: #7a776f; }
.sw-lp-body { font-size: 1rem; color: #7a776f; line-height: 1.85; }
.sw-lp-body p { margin-bottom: 1.25rem; }
.sw-lp-body p:last-child { margin-bottom: 0; }
.sw-lp-body strong { color: #f0ede6; font-weight: 400; }
.sw-lp-body a { color: #F7C848; text-decoration: none; }
.sw-lp-body a:hover { text-decoration: underline; }

/* Voordelen lijst */
.sw-benefits {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 0 !important;
}
.sw-benefits li {
  position: relative;
  padding-left: 2.2rem;
  font-size: .93rem;
  color: #7a776f;
  line-height: 1.75;
  display: block !important;
}
.sw-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35rem;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  border-radius: 50%;
  background-color: rgba(247,200,72,.15);
  border: 1px solid rgba(247,200,72,.35);
  display: block;
}
.sw-benefits li strong {
  color: #f0ede6;
  font-weight: 600;
  display: inline !important;
}
.sw-benefits li strong::after {
  content: ' — ';
  font-weight: 300;
  color: rgba(240,237,230,.25);
}

/* Prijs indicatie */
.sw-price-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  margin-top: 3rem;
}
.sw-price-card {
  background: #161614;
  border: 1px solid rgba(240,237,230,0.08);
  border-radius: .75rem;
  padding: 2rem;
}
.sw-price-card.featured {
  border-color: rgba(247,200,72,.35);
  background: rgba(247,200,72,.04);
}
.sw-price-tag { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; letter-spacing: -.03em; color: #F7C848; line-height: 1; margin-bottom: .4rem; }
.sw-price-label { font-family: 'Syne', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #7a776f; margin-bottom: 1rem; }
.sw-price-desc { font-size: .875rem; color: #7a776f; line-height: 1.75; }

.sw-faq {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  padding-right: max(1.5rem, calc((100vw - 1560px) / 2 + 3rem));
  border-top: 1px solid rgba(240,237,230,0.08);
}
.sw-faq-inner { max-width: 800px; margin: 0 auto; }
.sw-faq-heading { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.025em; margin-bottom: 3rem; color: #f0ede6; }
.sw-faq-heading em { font-style: italic; color: #F7C848; }
.sw-faq-list { display: flex; flex-direction: column; }
.sw-faq-item { border-bottom: 1px solid rgba(240,237,230,0.08); }
.sw-faq-item:first-child { border-top: 1px solid rgba(240,237,230,0.08); }
.sw-faq-q {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  gap: 1.5rem;
  background: none;
  border: none;
  color: #f0ede6;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .2s;
}
.sw-faq-q:hover { color: #F7C848; }
.sw-faq-q svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; transition: transform .3s; }
.sw-faq-item.open .sw-faq-q svg { transform: rotate(180deg); }
.sw-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.sw-faq-item.open .sw-faq-a { grid-template-rows: 1fr; }
.sw-faq-a p { overflow: hidden; min-height: 0; font-size: .925rem; color: #7a776f; line-height: 1.85; padding-bottom: 1.5rem; }

@media (max-width: 960px) {
  .sw-lp-hero { padding: 10rem 1.5rem 5rem !important; }
  .sw-lp-2col { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .sw-price-cards { grid-template-columns: 1fr !important; }
  .sw-lp-section { padding: 5rem 1.5rem !important; }
  .sw-cta-inline { padding: 3.5rem 1.5rem !important; }
  .sw-cta-inline-inner { flex-direction: column !important; align-items: flex-start !important; }
  .sw-faq { padding: 5rem 1.5rem !important; }
}

/* ── MERK-SCAN NAV KNOP ── */
.sw-nav-links .sw-nav-scan,
.sw-nav-links li.sw-nav-scan a {
  color: var(--yellow) !important;
  border: 1px solid rgba(247,200,72,.4);
  padding: .55rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  transition: background .2s, border-color .2s !important;
}
.sw-nav-links .sw-nav-scan:hover,
.sw-nav-links li.sw-nav-scan a:hover {
  background: rgba(247,200,72,.08) !important;
  border-color: var(--yellow) !important;
  color: var(--yellow) !important;
}

/* ── SMILEY HOVER WORDS ── */
.sw-smiley-wrap {
  position: relative;
}

.sw-idea-word {
  position: absolute;
  font-family: var(--sans);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--ink2);
  border: 1px solid rgba(247,200,72,.25);
  padding: .35rem .85rem;
  border-radius: 1rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
  transition: none;
  z-index: 10;
}
.sw-idea-word.launch {
  transition: opacity .5s ease, transform .8s cubic-bezier(.2,.8,.3,1);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.sw-idea-word.fade {
  transition: opacity .4s ease .3s;
  opacity: 0;
}

/* Cursor fix — pulse ring on smiley hover */
.sw-smiley-wrap:hover .sw-smiley-pulse {
  animation: sw-smiley-pulse 1s ease-out forwards;
}
@keyframes sw-smiley-pulse {
  0%   { r: 190; opacity: .4; }
  100% { r: 240; opacity: 0; }
}
