/* ==========================================================================
   Creative Studios — Social Media Agency (Luxembourg)
   Main stylesheet
   ========================================================================== */

:root{
  --bg:            #FFFFFF;
  --bg-alt:        #F5F5F4;
  --bg-card:       #FFFFFF;
  --ink:           #121212;
  --ink-soft:      #3A3A3A;
  --grey:          #6E6E6E;
  --grey-light:    #A6A6A6;
  --line:          #E3E3E2;
  --line-soft:     #ECECEB;
  --black:         #0E0E0E;
  --white:         #FFFFFF;

  --radius-s:  10px;
  --radius-m:  18px;
  --radius-l:  28px;

  --font-head: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1220px;
  --pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight: 700; margin:0 0 .5em; letter-spacing:-0.01em; }
p{ margin:0 0 1em; }
button{ font-family: inherit; cursor:pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Type scale ---------- */
.eyebrow{
  display:inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight:600;
  margin-bottom: 14px;
}
.h-xl{ font-size: clamp(2.6rem, 6.5vw, 5.6rem); line-height: .98; }
.h-l{ font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.04; }
.h-m{ font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; }
.lead{ font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 640px; }
.muted{ color: var(--grey); }
.small{ font-size: .875rem; }
.tiny{ font-size: .75rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--black); color: var(--white); }
.btn-primary:hover{ background:#000; }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-ghost{ background: var(--bg-alt); color: var(--ink); }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding: 10px 20px; font-size: .85rem; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.logo{
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing:-0.02em;
  display:flex; align-items:center; gap:2px;
}
.logo .dot{ color: var(--ink); }
.nav-links{
  display:flex; align-items:center; gap: 34px;
  font-weight:600; font-size:.95rem;
}
.nav-links a{
  position:relative; padding: 6px 0; color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--ink);
}
.nav-right{ display:flex; align-items:center; gap: 18px; }
.lang-switch{ display:flex; gap: 4px; border:1px solid var(--line); border-radius:999px; padding:4px; }
.lang-switch a, .lang-switch button{
  border:none; background:transparent; padding: 6px 10px; border-radius:999px;
  font-size:.78rem; font-weight:700; letter-spacing:.03em; color: var(--grey);
  text-decoration:none; display:inline-block; line-height:1;
}
.lang-switch a.active, .lang-switch button.active{ background: var(--black); color:var(--white); }
.nav-toggle{
  display:none; background:none; border:none; width:38px; height:38px;
  position:relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; position:absolute; left:8px; right:8px; height:2px; background: var(--ink);
  transition: all .25s ease;
}
.nav-toggle span{ top:18px; }
.nav-toggle::before{ top:12px; }
.nav-toggle::after{ top:24px; }
.nav-toggle.open::before{ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open::after{ transform: translateY(-6px) rotate(-45deg); }
.nav-toggle.open span{ opacity:0; }

@media (max-width: 880px){
  .nav-links{
    position: fixed; top:72px; left:0; right:0; height: calc(100vh - 72px);
    background: var(--bg); overflow-y:auto;
    flex-direction: column; align-items:flex-start; justify-content:flex-start; padding: 40px var(--pad);
    gap: 26px; font-size:1.3rem; transform: translateY(-12px);
    opacity:0; pointer-events:none; transition: all .3s var(--ease);
  }
  .nav-links.open{ opacity:1; pointer-events:auto; transform: translateY(0); }
  .nav-toggle{ display:block; }
  .nav-right .lang-switch{ order:2; }
  .nav{ gap:10px; }
  .logo{ font-size: 1.05rem; white-space:nowrap; }
  .lang-switch a, .lang-switch button{ padding:5px 8px; }
}

@media (max-width: 360px){
  .logo{ font-size: .92rem; }
}

/* ==========================================================================
   HOME — full-bleed hero visual with the brand name overlaid on top,
   nav floats transparently over it until the page is scrolled.
   ========================================================================== */
body.page-home .site-header{
  position: absolute; top:0; left:0; right:0; width:100%;
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none;
}
body.page-home .site-header .logo,
body.page-home .site-header .nav-links a,
body.page-home .site-header .lang-switch a, body.page-home .site-header .lang-switch button{ color:#fff; }
body.page-home .site-header .nav-links a.active{ color:#fff; }
body.page-home .site-header .nav-links a.active::after{ background:#fff; }
body.page-home .site-header .lang-switch{ border-color: rgba(255,255,255,.45); }
body.page-home .site-header .lang-switch a.active, body.page-home .site-header .lang-switch button.active{ background:#fff; color:#111; }
body.page-home .site-header .nav-toggle span,
body.page-home .site-header .nav-toggle::before,
body.page-home .site-header .nav-toggle::after{ background:#fff; }

body.page-home .site-header.nav-solid{
  position: fixed;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
}
body.page-home .site-header.nav-solid .logo,
body.page-home .site-header.nav-solid .nav-links a,
body.page-home .site-header.nav-solid .lang-switch a, body.page-home .site-header.nav-solid .lang-switch button{ color: var(--ink-soft); }
body.page-home .site-header.nav-solid .nav-links a.active,
body.page-home .site-header.nav-solid .logo{ color: var(--ink); }
body.page-home .site-header.nav-solid .nav-links a.active::after{ background: var(--ink); }
body.page-home .site-header.nav-solid .lang-switch{ border-color: var(--line); }
body.page-home .site-header.nav-solid .lang-switch a.active, body.page-home .site-header.nav-solid .lang-switch button.active{ background: var(--black); color:#fff; }
body.page-home .site-header.nav-solid .nav-toggle span,
body.page-home .site-header.nav-solid .nav-toggle::before,
body.page-home .site-header.nav-solid .nav-toggle::after{ background: var(--ink); }
@media (max-width: 880px){
  /* mobile off-canvas menu panel is always solid/opaque, regardless of nav state
     (selectors repeat ".site-header" to outrank the on-image white-text rules above,
     which share the same ".nav-links a" tail) */
  body.page-home .site-header .nav-links{ background: var(--bg); }
  body.page-home .site-header .nav-links a{ color: var(--ink-soft); }
  body.page-home .site-header .nav-links a.active{ color: var(--ink); }
  body.page-home .site-header .nav-links a.active::after{ background: var(--ink); }
}

.hero-banner{
  position: relative;
  width:100%;
  height: min(88vh, 780px);
  min-height: 460px;
  overflow:hidden;
  background: #111;
}
.hero-video{ position:absolute; inset:0; }
.hero-video video{ width:100%; height:100%; object-fit:cover; display:block; }

.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.72) 78%, rgba(0,0,0,.82) 100%);
}
.hero-overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
  text-align:center; color:#fff;
  padding: 0 var(--pad) 56px;
}
.hero-name{
  font-family: var(--font-head); font-weight:800;
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  line-height: .98; letter-spacing:-0.02em;
  margin:0;
}
.hero-tagline{
  font-family: var(--font-head); font-weight:600;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: #F0EFEC; margin: 14px 0 2px;
}
.hero-eyebrow-on{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; color:#CFCCC6;
  font-weight:600; margin-bottom: 16px;
}

.hero-intro{
  max-width: var(--container); margin:0 auto;
  padding: 64px var(--pad) 50px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}
.hero-intro .lead{ margin: 0 auto 30px; text-align:center; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

@media (max-width: 720px){
  .hero-banner{ height: min(78vh, 620px); min-height: 420px; }
}

/* ---------- Sections ---------- */
section{ padding: 90px 0; }
.section-head{ max-width: 720px; margin-bottom: 50px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.bg-alt{ background: var(--bg-alt); }
.bg-ink{ background: var(--ink); color: var(--bg); }
.bg-ink .eyebrow{ color: #ADA89F; }
.bg-ink .muted{ color:#B9B4AA; }
.bg-ink .lead{ color:#C7C2B8; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4{ color: var(--bg); }
.bg-ink .btn-primary{ background: var(--white); color: var(--black); }
.bg-ink .btn-primary:hover{ background:#EDEAE3; }
.bg-ink .btn-outline{ color: var(--bg); border-color:#4a4a4a; }
.bg-ink .btn-outline:hover{ background: var(--white); color: var(--black); border-color:var(--white); }

.logos-row{
  display:flex; flex-wrap:wrap; gap: 40px; align-items:center; justify-content:center;
  padding: 30px 0; opacity:.55; filter:grayscale(1);
}
.logos-row span{ font-family: var(--font-head); font-weight:700; font-size:1.1rem; }

/* ---------- Cards / grids ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px){ .grid-3{ grid-template-columns: 1fr; } .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 34px;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: var(--bg); padding: 70px 0 30px; }
.footer-top{
  display:flex; justify-content:space-between; gap: 40px; flex-wrap:wrap;
  padding-bottom: 46px; margin-bottom: 30px; border-bottom: 1px solid #2b2b2b;
}
.footer-brand .logo{ color: var(--bg); margin-bottom: 14px; }
.footer-brand p{ color:#B9B4AA; max-width: 340px; }
.footer-cols{ display:flex; gap: 60px; flex-wrap:wrap; }
.footer-col h4{ font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:#8f8b83; margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; color:#D8D4CB; margin-bottom:12px; font-size:.95rem; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; color:#8f8b83; font-size:.82rem; }
.footer-bottom a{ color:#8f8b83; }
.footer-bottom a:hover{ color:var(--white); }
.socials{ display:flex; gap:14px; }
.socials a{
  width:38px; height:38px; border:1px solid #3a3a3a; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#D8D4CB;
}
.socials a:hover{ background:#fff; color:#111; border-color:#fff; }

/* ==========================================================================
   OUR WORK — carousel + watermark
   ========================================================================== */
.work-hero{ padding: 70px var(--pad) 10px; text-align:center; }

.marquee-wrap{
  position:relative; overflow:hidden; padding: 26px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background: var(--bg-alt);
}
.marquee{ display:flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover{ animation-play-state: paused; }
.marquee span{
  font-family: var(--font-head); font-weight:800;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--grey-light);
  padding: 0 34px;
  white-space:nowrap;
  text-transform:uppercase;
  letter-spacing: .01em;
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.carousel-section{ padding: 60px 0 90px; }
.carousel{
  position:relative;
  max-width: 100%;
}
.carousel-track{
  display:flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 0 26px;
  cursor: grab;
  -ms-overflow-style:none; scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{ display:none; }
.carousel-track:active{ cursor: grabbing; }
.work-slide{
  position: relative;
  flex: 0 0 auto;
  width: min(240px, 68vw);
  aspect-ratio: 9/16;
  border-radius: var(--radius-l);
  overflow:hidden;
  scroll-snap-align: start;
  background: #1c1c1c;
  pointer-events:none; /* media itself not interactive/clickable */
}
.work-slide .work-media{ width:100%; height:100%; }
.work-slide img, .work-slide video{ width:100%; height:100%; object-fit:cover; }
.work-slide::before{
  content:""; position:absolute; left:0; right:0; top:0; height:34%; z-index:1;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
}
.work-slide::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 30%);
}

/* Instagram-style overlay: avatar + brand name pinned to the top of the clip */
.work-top{
  position:absolute; left:14px; right:14px; top:14px; z-index:2;
  display:flex; align-items:center; gap:10px;
}
.work-avatar{
  flex:none; width:30px; height:30px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg,#8a8a8a,#2b2b2b);
  color:#fff; font-family: var(--font-head); font-weight:800; font-size:.72rem;
  border: 1.5px solid rgba(255,255,255,.7);
}
.work-client{
  color:#fff; font-family: var(--font-head); font-weight:700; font-size:.92rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.work-mute{
  margin-left:auto; width:26px; height:26px; border-radius:50%;
  background: rgba(0,0,0,.35); display:flex; align-items:center; justify-content:center;
  color:#fff; flex:none;
}
.work-tag{
  position:absolute; left:14px; right:14px; bottom:14px; z-index:2;
  font-size:.72rem; color:#E7E3DA; letter-spacing:.05em; text-transform:uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

.carousel-controls{ display:flex; justify-content:center; gap:14px; margin-top: 10px; }
.car-btn{
  width:48px; height:48px; border-radius:50%; border:1px solid var(--line);
  background: var(--bg-card); display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.car-btn:hover{ background: var(--ink); color:#fff; border-color:var(--ink); }

/* ==========================================================================
   SERVICES / PRICING
   ========================================================================== */
.pricing-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:22px; align-items:stretch;
}
@media (max-width: 1100px){ .pricing-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .pricing-grid{ grid-template-columns: 1fr; } }

.plan{
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 32px 26px;
  display:flex; flex-direction:column;
  position:relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover{ transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.35); }
.plan.featured{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.plan.featured .plan-feat li{ color:#E7E3DA; }
.plan.featured .price-sub, .plan.featured .plan-desc{ color:#B9B4AA; }
.plan-badge{
  position:absolute; top:-13px; left:26px; background: var(--black); color:#fff;
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px;
}
.plan.featured .plan-badge{ background:#fff; color:#111; }
.plan-name{ font-family: var(--font-head); font-weight:800; font-size:1.35rem; margin-bottom:6px; }
.plan-desc{ color: var(--grey); font-size:.9rem; margin-bottom:20px; min-height:42px; }
.plan-price{ display:flex; align-items:baseline; gap:6px; margin-bottom: 4px; }
.plan-price .amount{ font-family: var(--font-head); font-weight:800; font-size:2.3rem; }
.price-sub{ font-size:.8rem; color: var(--grey); margin-bottom:22px; }
.plan-feat{ display:flex; flex-direction:column; gap:12px; margin-bottom: 26px; flex:1; }
.plan-feat li{ display:flex; gap:10px; align-items:flex-start; font-size:.92rem; }
.plan-feat li svg{ flex:none; margin-top:3px; }
.plan-ugc{
  font-size:.82rem; border-top:1px solid var(--line-soft); padding-top:14px; margin-bottom:20px; color: var(--grey);
}
.plan.featured .plan-ugc{ border-color:#2b2b2b; }

.ugc-explainer{
  display:flex; gap:20px; align-items:flex-start;
  background: var(--bg-alt); border-radius: var(--radius-l); padding: 26px 30px; margin-top: 30px;
}
.ugc-explainer .ugc-icon{
  flex:none; width:46px; height:46px; border-radius:50%; background:var(--ink); color:var(--bg);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-family:var(--font-head);
}

.custom-block, .campaign-block{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items:center;
  background: var(--bg-card); border:1px solid var(--line-soft); border-radius: var(--radius-l);
  padding: 44px; margin-top: 26px;
}
@media (max-width: 840px){ .custom-block, .campaign-block{ grid-template-columns:1fr; } }
.custom-block ul li, .campaign-block ul li{ display:flex; gap:10px; margin-bottom:10px; font-size:.95rem; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.founders-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
@media (max-width: 900px){ .founders-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.founder-card{ text-align:center; }
.founder-photo{
  border-radius: var(--radius-l); overflow:hidden; aspect-ratio: 4/5; margin-bottom: 20px;
  background:#1c1c1c;
}
.founder-photo img{ width:100%; height:100%; object-fit:cover; }
.founder-name{ font-family: var(--font-head); font-weight:800; font-size:1.25rem; margin-bottom:2px; }
.founder-role{ color: var(--grey); font-size:.88rem; margin-bottom:14px; }
.founder-bio{ font-size:.92rem; color: var(--ink-soft); }
.edit-flag{
  display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color: var(--grey-light);
  border:1px dashed var(--line); padding:5px 12px; border-radius:999px;
}

.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:50px; }
@media (max-width:900px){ .values-grid{ grid-template-columns:1fr; } }
.value-num{ font-family: var(--font-head); font-weight:800; font-size:1.6rem; color: var(--line); margin-bottom:10px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:start; }
@media (max-width: 900px){ .contact-wrap{ grid-template-columns:1fr; } }
.form-row{ margin-bottom: 20px; }
.form-row label{ display:block; font-weight:600; font-size:.88rem; margin-bottom:8px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding: 14px 16px; border-radius: var(--radius-s); border:1px solid var(--line);
  background: var(--bg-card); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ outline:2px solid var(--ink); outline-offset:1px; }
.form-cols{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:520px){ .form-cols{ grid-template-columns:1fr; } }
.contact-info-item{ display:flex; gap:16px; margin-bottom:26px; align-items:flex-start; }
.contact-info-item .ico{
  flex:none; width:44px; height:44px; border-radius:50%; background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
}
.form-note{ font-size:.82rem; color: var(--grey); margin-top:10px; }
.form-success{
  display:none; background:#101110; color:#fff; padding:20px 24px; border-radius: var(--radius-m); margin-bottom:20px;
}
.form-success.show{ display:block; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal{ padding: 70px 0 100px; }
.legal .container{ max-width: 860px; }
.legal h2{ margin-top: 46px; font-size:1.35rem; }
.legal h2:first-of-type{ margin-top: 20px; }
.legal p, .legal li{ color: var(--ink-soft); }
.legal ul{ margin: 0 0 1em 0; padding-left: 20px; list-style:disc; }
.legal a{ text-decoration:underline; }

[data-lang-block]{ display:none; }
[data-lang-block].active{ display:block; }

/* ==========================================================================
   Utilities / reveal animation
   ========================================================================== */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

.pill{ display:inline-block; padding:5px 14px; border-radius:999px; background:var(--bg-alt); font-size:.78rem; font-weight:600; }

.section-cta{ text-align:center; padding: 90px 0; }
.section-cta h2{ max-width: 720px; margin:0 auto 22px; }
