/* ============================================================
   Satz Global Solutions — stylesheet
   ============================================================ */

:root{
  --purple-500:#6D4FEA;
  --purple-600:#5A3AE0;
  --purple-700:#4830B8;
  --indigo-700:#3B2FA8;
  --blue-500:#4F6BFF;
  --orange-500:#F5A524;
  --orange-600:#EF8F0C;

  --grad-brand: linear-gradient(135deg, #8E6BFF 0%, #4B3CE0 55%, #3626B8 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(141,107,255,.16), rgba(75,60,224,.10));

  --navy-950:#0A0B16;
  --navy-900:#0D0E1E;
  --navy-800:#12142A;
  --navy-700:#191b36;
  --navy-border: rgba(255,255,255,.09);

  --cream-50:#FBF7F1;
  --cream-100:#F7F0E6;
  --gray-50:#F5F5F8;
  --gray-100:#EEEEF3;
  --gray-200:#E3E3EC;

  --ink-900:#12131F;
  --ink-700:#2B2C40;
  --ink-500:#6B6C82;
  --ink-400:#8B8CA0;

  --white:#FFFFFF;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:32px;
  --radius-full:999px;

  --shadow-sm: 0 2px 10px rgba(18,19,31,.05);
  --shadow-md: 0 10px 30px rgba(18,19,31,.08);
  --shadow-lg: 0 24px 60px rgba(18,19,31,.14);
  --shadow-purple: 0 14px 34px rgba(90,58,224,.35);

  --ease: cubic-bezier(.4,0,.2,1);
  --container: 1240px;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input{ font-family:inherit; }
h1,h2,h3,h4{ font-family: var(--font-heading); color: var(--ink-900); line-height:1.15; font-weight:800; letter-spacing:-.02em; }

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

.icon{ stroke: currentColor; fill:none; stroke-width:1.8; vertical-align:middle; flex-shrink:0; }

.svg-sprite{ position:absolute; width:0; height:0; overflow:hidden; }

.grad-text{
  background: var(--grad-brand);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color: var(--purple-600);
}
.text-orange{ color: var(--orange-500); }
.text-purple{ color: var(--purple-600); }
.highlight{ color: var(--purple-600); font-weight:700; }

.eyebrow{
  font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink-500); margin-bottom:16px;
}
.eyebrow-light{ color: rgba(255,255,255,.55); }
.eyebrow-light .grad-text, section.purpose .eyebrow{ color: var(--purple-500); -webkit-text-fill-color: var(--purple-500); background:none; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 15px 26px; border-radius: var(--radius-full);
  font-weight:700; font-size:15px; white-space:nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn .icon{ transition: transform .25s var(--ease); }
.btn:hover{ transform: translateY(-2px); }
.btn:hover .icon{ transform: translateX(3px); }
.btn-sm{ padding:10px 18px; font-size:14px; }

.btn-primary{ background: var(--grad-brand); color:#fff; box-shadow: var(--shadow-purple); }
.btn-primary:hover{ box-shadow: 0 18px 40px rgba(90,58,224,.45); }

.btn-white{ background:#fff; color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn-white:hover{ box-shadow: var(--shadow-md); }

.btn-outline{ border:1.5px solid var(--gray-200); color: var(--ink-900); background:#fff; }
.btn-outline:hover{ border-color: var(--purple-500); color: var(--purple-600); }

.btn-outline-light{ border:1.5px solid rgba(255,255,255,.28); color:#fff; }
.btn-outline-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }

.btn-dark{ background: var(--navy-900); color:#fff; }
.btn-dark:hover{ background: var(--navy-800); }

.card-link{
  display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:14px;
  color: inherit; transition: gap .2s var(--ease), color .2s var(--ease);
}
.card-link .icon{ transition: transform .2s var(--ease); }
.card-link:hover .icon{ transform: translateX(4px); }

/* ============ reveal-on-scroll ============ */
[data-reveal]{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view{ opacity:1; transform:none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(251,247,241,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled{ border-bottom-color: var(--gray-200); box-shadow: 0 4px 20px rgba(18,19,31,.04); }

.header-inner{ display:flex; align-items:center; justify-content:space-between; height:84px; gap: 24px; }

.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-mark{ width:38px; height:38px; display:block; }
.s-logo{ width:100%; height:100%; }
.s-logo .s-shadow{ fill:none; stroke: rgba(30,20,90,.35); stroke-width:20; stroke-linecap:round; }
.s-logo .s-main{ fill:none; stroke:url(#brandGrad); stroke-width:20; stroke-linecap:round; }
.s-logo .s-shine{ fill:none; stroke: rgba(255,255,255,.55); stroke-width:5; stroke-linecap:round; }

.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-family: var(--font-heading); font-weight:800; font-size:19px; letter-spacing:.02em; color: var(--ink-900); }
.brand-sub{ font-size:9.5px; font-weight:700; letter-spacing:.14em; color: var(--ink-500); }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{ font-size:14.5px; font-weight:600; color: var(--ink-700); position:relative; padding:6px 0; transition: color .2s; }
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--grad-brand); border-radius:2px;
  transform: scaleX(0); transform-origin:left; transition: transform .25s var(--ease);
}
.main-nav a:hover{ color: var(--ink-900); }
.main-nav a:hover::after, .main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--purple-600); }

.header-actions{ display:flex; align-items:center; gap:12px; flex-shrink:0; }

.mobile-cta{ display:none; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:34px; height:34px; align-items:center; justify-content:center; }
.nav-toggle span{ width:20px; height:2px; background: var(--ink-900); border-radius:2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  background: linear-gradient(180deg, var(--cream-50) 0%, #FAF5EC 100%);
  padding: 88px 0 60px;
  overflow:hidden;
}
.hero-inner{ display:grid; grid-template-columns: 1.05fr .95fr; gap:40px; align-items:center; }

.hero-copy h1{ font-size: clamp(34px, 4vw, 50px); margin-bottom:22px; }
.hero-desc{ font-size:16.5px; line-height:1.7; color: var(--ink-500); max-width:520px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.underline-swipe{ position:relative; }

.hero-visual{ position:relative; height:520px; display:flex; align-items:center; justify-content:center; }

.hero-ring{
  position:absolute; inset:0; margin:auto; width:380px; height:380px; border-radius:50%;
  background: radial-gradient(circle at 40% 35%, rgba(141,107,255,.18), rgba(255,255,255,0) 70%);
  border:1px dashed rgba(90,58,224,.18);
}

.hero-logo-wrap{ position:relative; width:230px; height:230px; display:flex; align-items:center; justify-content:center; z-index:3; }
.s-logo-hero{ width:190px; height:190px; filter: drop-shadow(0 22px 30px rgba(60,40,150,.35)); animation: floaty 5s ease-in-out infinite; }
.hero-pedestal{
  position:absolute; bottom:-52px; left:50%; transform:translateX(-50%);
  width:210px; height:36px; border-radius:50%;
  background: radial-gradient(ellipse at center, #fff 0%, #f3eee6 55%, rgba(243,238,230,0) 75%);
  box-shadow: 0 18px 30px -10px rgba(60,40,150,.18);
}

@keyframes floaty{ 0%,100%{ transform: translateY(0) rotate(-2deg);} 50%{ transform: translateY(-14px) rotate(2deg);} }

.badge{
  position:absolute; z-index:4; display:flex; align-items:center; gap:10px;
  background:#fff; border-radius: var(--radius-full); padding:10px 18px 10px 10px;
  box-shadow: var(--shadow-md); font-size:13px; font-weight:700; color: var(--ink-700);
  animation: floaty2 6s ease-in-out infinite;
}
.badge-icon{
  width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--grad-brand-soft); color: var(--purple-600); flex-shrink:0;
}
.badge-tl{ top:6%; left:-2%; animation-delay:0s; }
.badge-tr{ top:6%; right:-4%; animation-delay:1.4s; }
.badge-bl{ bottom:10%; left:-4%; animation-delay:.7s; }
.badge-br{ bottom:10%; right:-2%; animation-delay:2.1s; }
@keyframes floaty2{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

.scroll-indicator{
  position:absolute; right:32px; bottom:18px; display:flex; flex-direction:column; align-items:center; gap:8px;
  color: var(--ink-400); font-size:10px; font-weight:700; letter-spacing:.14em;
}
.scroll-indicator .icon{ animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown{ 0%,100%{ transform: translateY(0); opacity:1; } 50%{ transform: translateY(5px); opacity:.5; } }

/* ============================================================
   OUR PURPOSE
   ============================================================ */
.purpose{ background: var(--navy-950); color:#fff; padding:110px 0; position:relative; overflow:hidden; }
.purpose::before{
  content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(90,58,224,.22), transparent 70%);
}
.purpose-inner{ display:grid; grid-template-columns: 1.05fr .95fr; gap:64px; align-items:center; position:relative; z-index:1; }
.purpose h2{ color:#fff; font-size: clamp(28px,3.2vw,40px); margin-bottom:20px; }
.purpose-desc{ color: rgba(255,255,255,.62); font-size:16px; line-height:1.75; max-width:480px; margin-bottom:36px; }

.feature-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px 28px; margin-bottom:40px; }
.feature-item{ display:flex; align-items:center; gap:12px; font-weight:600; font-size:14.5px; color: rgba(255,255,255,.9); }
.feature-item .icon{ color: var(--purple-500); flex-shrink:0; }

.purpose-visual{ display:flex; align-items:center; justify-content:center; }
.purpose-blob{
  position:relative; width:100%; max-width:460px; aspect-ratio:1/.82;
  border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, rgba(141,107,255,.28), rgba(75,60,224,.10) 60%, rgba(245,165,36,.12));
  border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 0 80px rgba(141,107,255,.15);
}
.purpose-sprout{ color: rgba(255,255,255,.85); stroke-width:1.2; opacity:.9; }
.orbit-dot{ position:absolute; border-radius:50%; }
.dot-1{ width:16px; height:16px; background: var(--orange-500); top:12%; right:16%; }
.dot-2{ width:10px; height:10px; background: var(--blue-500); bottom:18%; left:10%; }
.dot-3{ width:22px; height:22px; border:2px solid rgba(255,255,255,.3); top:65%; right:6%; }

/* ============================================================
   WHAT WE CREATE
   ============================================================ */
.create{ background: var(--gray-50); padding:110px 0; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:32px; margin-bottom:52px; }
.section-head h2{ font-size: clamp(26px,3vw,36px); margin:6px 0 14px; max-width:560px; }
.section-desc{ color: var(--ink-500); font-size:15.5px; line-height:1.7; max-width:480px; }

.card-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.init-card{
  border-radius: var(--radius-lg); padding:30px 26px; min-height:290px;
  display:flex; flex-direction:column; position:relative; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.init-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.init-logo{ font-family: var(--font-heading); font-weight:800; font-size:22px; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.init-desc{ font-size:14px; line-height:1.6; opacity:.85; margin-bottom:auto; padding-bottom:24px; }
.init-card .card-link{ margin-top:auto; }

.card-dark{ background: linear-gradient(160deg, #171833 0%, #0D0E22 100%); color:#fff; }
.init-logo-oohooh{ color:#C9B8FF; }
.card-dark .card-link{ color:#fff; }

.card-light{ background:#fff; box-shadow: var(--shadow-sm); color: var(--ink-900); }
.init-logo-enjoyy{ color:#E8752C; font-style:italic; font-family: Georgia, serif; font-weight:700; }
.phone-mock{ position:absolute; right:18px; bottom:70px; width:64px; height:110px; border-radius:14px; background: linear-gradient(160deg,#fff,#FCEFE4); border:1px solid var(--gray-200); box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:6px; padding:10px 8px; }
.phone-mock span{ display:block; height:8px; border-radius:5px; background: var(--gray-100); }
.phone-mock span:nth-child(1){ width:70%; background:#FCE0C4; }
.phone-mock span:nth-child(2){ width:100%; }
.phone-mock span:nth-child(3){ width:55%; }

.card-soon{ background:#fff; box-shadow: var(--shadow-sm); color: var(--ink-900); }
.card-soon .init-logo{ line-height:1.2; }
.pedestal-mock{ position:absolute; right:24px; bottom:56px; display:flex; flex-direction:column; align-items:center; }
.pedestal-cube{ width:42px; height:42px; border-radius:8px; background: var(--grad-brand); transform: rotate(45deg); box-shadow: var(--shadow-purple); margin-bottom:14px; }
.pedestal-base{ width:70px; height:14px; border-radius:50%; background: var(--gray-100); }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background: var(--navy-950); padding:56px 0; }
.stats-inner{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.stat-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; }
.stat-icon{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:4px; color:#fff; }
.stat-icon-1{ background: linear-gradient(135deg,#6D4FEA,#3E2FB0); }
.stat-icon-2{ background: linear-gradient(135deg,#4F6BFF,#2A46D6); }
.stat-icon-3{ background: linear-gradient(135deg,#8E6BFF,#4B3CE0); }
.stat-icon-4{ background: linear-gradient(135deg,#F0609B,#C23E86); }
.stat-num{ font-family: var(--font-heading); font-weight:800; font-size: clamp(28px,3vw,38px); color:#fff; }
.stat-label{ color: rgba(255,255,255,.55); font-size:14px; font-weight:600; }

/* ============================================================
   AREAS OF IMPACT
   ============================================================ */
.areas{ background: var(--gray-50); padding:110px 0; }
.areas-inner{ display:grid; grid-template-columns: 1.5fr .8fr; gap:48px; align-items:center; }
.areas h2{ font-size: clamp(26px,3vw,36px); margin-bottom:38px; }
.areas-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px 20px; }
.area-item{ display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.area-item .icon{ color: var(--purple-600); }
.area-item span{ font-weight:700; font-size:14px; color: var(--ink-700); }

.areas-card{
  background:#fff; border-radius: var(--radius-lg); padding:30px; box-shadow: var(--shadow-md);
}
.areas-thumb{
  width:100%; aspect-ratio:16/10; border-radius: var(--radius-md); margin-bottom:20px;
  background: linear-gradient(135deg, rgba(141,107,255,.9), rgba(75,60,224,.9));
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.areas-card p{ font-size:15px; line-height:1.6; color: var(--ink-700); margin-bottom:16px; }
.areas-card .card-link{ color: var(--purple-600); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta{
  position:relative; overflow:hidden;
  background: linear-gradient(115deg, #241748 0%, #4B2FA6 55%, #6D3FCB 100%);
  padding:80px 0;
}
.cta-silhouettes{ position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center; gap:2px; opacity:.5; }
.cta-silhouettes span{ display:block; width:90px; height:130px; background: rgba(10,6,30,.55); border-radius:45px 45px 0 0; transform: translateY(30px); }
.cta-silhouettes span::before{ content:''; }
.cta-silhouettes span:nth-child(odd){ height:150px; }
.cta-silhouettes span:nth-child(1){ margin-right:-18px; }
.cta-silhouettes span:nth-child(7){ margin-left:-18px; }

.cta-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-inner h2{ color:#fff; font-size: clamp(24px,2.8vw,32px); max-width:560px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy-950); color: rgba(255,255,255,.7); padding:80px 0 0; }
.footer-top{ display:grid; grid-template-columns: 1.6fr repeat(4, .9fr) 1.3fr; gap:32px; padding-bottom:56px; border-bottom:1px solid var(--navy-border); }
.footer-brand p{ font-size:14px; line-height:1.6; margin:18px 0 22px; max-width:260px; color: rgba(255,255,255,.5); }
.footer-brand .brand-name{ color:#fff; }
.footer-brand .brand-sub{ color: rgba(255,255,255,.5); }

.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--navy-border);
  display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,.7);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-row a:hover{ background: var(--grad-brand); border-color: transparent; color:#fff; transform: translateY(-3px); }

.footer-col h4{ color:#fff; font-size:14.5px; margin-bottom:20px; }
.footer-col{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover{ color:#fff; }

.footer-newsletter h4{ color:#fff; font-size:14.5px; margin-bottom:10px; }
.footer-newsletter p{ font-size:14px; color: rgba(255,255,255,.5); margin-bottom:16px; }
.newsletter-form{ display:flex; background: var(--navy-800); border:1px solid var(--navy-border); border-radius: var(--radius-full); padding:5px; }
.newsletter-form input{
  flex:1; min-width:0; background:none; border:none; outline:none; color:#fff; padding:9px 14px; font-size:14px;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.4); }
.newsletter-form button{
  width:38px; height:38px; border-radius:50%; background: var(--grad-brand); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform .2s;
}
.newsletter-form button:hover{ transform: scale(1.08); }
.newsletter-form.sent input{ color: var(--orange-500); }

.footer-bottom{ padding:24px 32px; text-align:center; font-size:13px; color: rgba(255,255,255,.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .footer-top{ grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter{ grid-column: span 3; }
}

@media (max-width: 968px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .btn{ display:none; }
  .header-actions{ gap:0; }

  .main-nav.open{
    display:flex; position:absolute; top:84px; left:0; right:0; flex-direction:column; gap:0;
    background: var(--cream-50); border-bottom:1px solid var(--gray-200); box-shadow: var(--shadow-md);
    padding:8px 32px 24px;
  }
  .main-nav.open a{ padding:14px 0; border-bottom:1px solid var(--gray-100); width:100%; }
  .main-nav.open a::after{ display:none; }
  .main-nav.open .mobile-cta{ display:flex; margin-top:16px; align-self:flex-start; }

  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:420px; order:-1; }
  .hero-ring{ width:320px; height:320px; }
  .hero-copy{ text-align:center; }
  .hero-desc{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }

  .purpose-inner{ grid-template-columns:1fr; }
  .purpose-visual{ order:-1; }
  .purpose-copy{ text-align:center; }
  .purpose-desc{ margin-left:auto; margin-right:auto; }
  .feature-grid{ max-width:420px; margin-left:auto; margin-right:auto; text-align:left; }
  .purpose-copy .btn{ margin:0 auto; }

  .section-head{ flex-direction:column; align-items:flex-start; }
  .card-grid{ grid-template-columns: 1fr; }

  .areas-inner{ grid-template-columns:1fr; }
  .cta-inner{ justify-content:center; text-align:center; }
  .cta-inner > div:first-child{ margin: 0 auto; }
  .cta-actions{ justify-content:center; }

  .footer-top{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: span 2; }
  .footer-newsletter{ grid-column: span 2; }
}

@media (max-width: 640px){
  .container{ padding:0 20px; }
  .header-inner{ height:72px; }
  .brand-sub{ display:none; }

  .hero{ padding:56px 0 40px; }
  .hero-visual{ height:340px; }
  .hero-ring{ width:260px; height:260px; }
  .hero-logo-wrap{ width:170px; height:170px; }
  .s-logo-hero{ width:140px; height:140px; }
  .badge{ font-size:11px; padding:8px 14px 8px 8px; }
  .badge-icon{ width:28px; height:28px; }
  .badge-tl,.badge-tr,.badge-bl,.badge-br{ left:0; right:0; }
  .badge-tl{ top:0; }
  .badge-tr{ top:0; left:auto; }
  .badge-bl{ bottom:0; right:auto; }
  .badge-br{ bottom:0; left:auto; }

  .purpose,.create,.areas{ padding:70px 0; }
  .feature-grid{ grid-template-columns:1fr; }
  .areas-grid{ grid-template-columns: 1fr 1fr; }
  .stats-inner{ grid-template-columns: 1fr 1fr; row-gap:36px; }

  .cta-inner{ flex-direction:column; }
  .footer-top{ grid-template-columns: 1fr; }
  .footer-brand,.footer-newsletter{ grid-column: span 1; }
}
