:root{
  --bg:#0f1115;    /* main dark */
--bg2:#0b0d12;  /* deeper edge */
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --soft:rgba(255,255,255,.55);
  --accent:#7c3aed;
  --accent2:#22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r:18px;
  --hero-x-offset: 70px;
  --hero-logo-x-offset: -48px;

}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: #000;   /* solid black, no gradients */
}


a{color:inherit}
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:16px;top:16px;width:auto;height:auto;z-index:999;background:#111827;padding:10px 12px;border-radius:10px}

.container{max-width:1200px;margin:0 auto;padding:0 20px}

.topbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:999;
  background: rgba(7,10,18,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;        /* allow flex to size naturally */
}

.brand__logo{
  height:34px;
  width:auto;
  display:block;
  flex-shrink:0;      /* DO NOT allow it to collapse */
}

:root{ --topbar-h: 72px; } /* adjust if your header height differs */



.brand__name{font-weight:700;letter-spacing:.2px}
.brand__tag{font-size:12px;color:var(--muted)}

.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.nav a{font-size:14px;color:var(--muted);text-decoration:none;padding:8px 10px;border-radius:12px}
.nav a:hover{background:var(--panel);color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(124,58,237,.65));
  border:1px solid rgba(124,58,237,.55);
  text-decoration:none;font-weight:600;
  box-shadow: 0 12px 30px rgba(124,58,237,.22);
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{background:transparent;border:1px solid var(--line);box-shadow:none;color:var(--text)}
.btn--ghost:hover{background:var(--panel)}
.btn--sm{padding:9px 12px;border-radius:12px;font-size:13px}

.hero{padding:14px 0 24px}




/* HERO LAYOUT (DESKTOP) */
.hero-layout{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
align-items: center;
  gap: 18px;
  min-height: calc(100vh - var(--topbar-h)); 
}
/* Desktop: give more space to headline */
@media (min-width: 1200px){
  .hero-layout{
    grid-template-columns: 1.4fr 0.6fr;
  }
}

.hero-left{
  position: relative;
  transform: translateX(var(--hero-x-offset));
}



.hero-right{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


.hero-logo-anim{
  width: 320px;
  max-width: 100%;
  height: auto;
  opacity: 0.78;
}
#heroLogo{
  position: relative;
  left: var(--hero-logo-x-offset);
  top: 29px;   /* moves logo DOWN */
}


.eyebrow{margin:0 0 10px;color:var(--muted);font-size:13px;letter-spacing:.14em;text-transform:uppercase}
.hero h1{margin:0 0 12px 0;font-size:44px;line-height:1.08}
.lead{margin:0 0 18px;color:var(--soft);font-size:17px;line-height:1.7}
.cta{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 14px}
.trust{display:flex;gap:10px;flex-wrap:wrap}
.pill{font-size:12px;color:var(--muted);border:1px solid var(--line);background:rgba(255,255,255,.03);padding:8px 10px;border-radius:999px}


.hero__panel{
  border-radius: var(--r);
  border:1px solid var(--line);
  background:
    radial-gradient(500px 250px at 25% 20%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(500px 250px at 80% 70%, rgba(34,197,94,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero__panel::before{
  content:"";
  position:absolute;inset:-2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 34px),
              repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 34px);
  opacity:.55;
}

.section{padding:58px 0}
.section--alt{background:rgba(255,255,255,.02);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px;flex-wrap:wrap}
.section__head h2{margin:0;font-size:30px}
.section__head p{margin:0;color:var(--muted);max-width:720px}

.section--belowfold{
  padding-top: 90px;   /* adjust: 80–180px */
}


.cards{display:grid;gap:14px}
.cards--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.cards--3{grid-template-columns:repeat(3, minmax(0,1fr))}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:18px;
}
.card h3{margin:0 0 8px;font-size:18px}
.muted{color:var(--muted)}
.small{font-size:12px}

.list{margin:10px 0 0;padding-left:18px;color:var(--soft);line-height:1.7}
.list--compact{line-height:1.55}

.grid{display:grid;gap:12px}
.grid--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3, minmax(0,1fr))}
.k{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em;margin-bottom:6px}
.v{color:var(--soft);line-height:1.6}

.strip{
  margin-top:14px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding:18px;
  border-radius: var(--r);
  border:1px solid rgba(124,58,237,.35);
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.08));
}

.feat{
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--r);
  background:rgba(255,255,255,.03);
}
.feat__icon{
  width:34px;height:34px;border-radius:12px;margin-bottom:10px;
  background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,197,94,.85));
  box-shadow: var(--shadow);
}
.feat h3{margin:0 0 6px;font-size:16px}
.feat p{margin:0;color:var(--muted);line-height:1.6}

.note{margin-top:14px;padding:14px 16px;border-radius: var(--r);border:1px dashed var(--line);background:rgba(255,255,255,.02)}

.contact{
  display:grid;grid-template-columns:1.1fr .9fr;gap:16px;align-items:start
}
.form{background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius: var(--r);padding:16px}
label{display:block;margin-bottom:10px}
label span{display:block;font-size:12px;color:var(--muted);margin-bottom:6px}
input,textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(124,58,237,.65);box-shadow:0 0 0 3px rgba(124,58,237,.18)}
.form__row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
button.btn{cursor:not-allowed;opacity:.55}

.footer{margin-top:18px;border-top:1px solid var(--line);padding-top:14px}
.footer__inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}

/* WordPress body snippet styles (prefixed ng-*) */
.ng-container{max-width:1200px;margin:0 auto;padding:0 20px}
.ng-section{padding:58px 0}
.ng-section--alt{background:rgba(255,255,255,.02);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.ng-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px;flex-wrap:wrap}
.ng-head h2{margin:0;font-size:30px}
.ng-head p{margin:0;color:var(--muted);max-width:720px}

.ng-hero{padding:70px 0 34px}
.ng-hero__grid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:stretch}
.ng-eyebrow{margin:0 0 10px;color:var(--muted);font-size:13px;letter-spacing:.14em;text-transform:uppercase}
.ng-lead{margin:0 0 18px;color:var(--soft);font-size:17px;line-height:1.7}
.ng-cta{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 14px}
.ng-trust{display:flex;gap:10px;flex-wrap:wrap}
.ng-pill{font-size:12px;color:var(--muted);border:1px solid var(--line);background:rgba(255,255,255,.03);padding:8px 10px;border-radius:999px}
.ng-hero__panel{border-radius: var(--r);border:1px solid var(--line);background: radial-gradient(500px 250px at 25% 20%, rgba(124,58,237,.35), transparent 60%), radial-gradient(500px 250px at 80% 70%, rgba(34,197,94,.20), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow); position:relative; overflow:hidden; min-height:260px}
.ng-hero__panel::before{content:"";position:absolute;inset:-2px;background: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 34px), repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 34px);opacity:.55}

.ng-cards{display:grid;gap:14px}
.ng-cards--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.ng-cards--3{grid-template-columns:repeat(3, minmax(0,1fr))}
.ng-card{background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));border:1px solid var(--line);border-radius: var(--r);padding:18px}
.ng-card--outline{background:rgba(255,255,255,.02)}
.ng-list{margin:10px 0 0;padding-left:18px;color:var(--soft);line-height:1.7}
.ng-list--compact{line-height:1.55}
.ng-grid{display:grid;gap:12px}
.ng-grid--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.ng-grid--3{grid-template-columns:repeat(3, minmax(0,1fr))}
.ng-k{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em;margin-bottom:6px}
.ng-v{color:var(--soft);line-height:1.6}
.ng-muted{color:var(--muted)}
.ng-small{font-size:12px}
.ng-strip{margin-top:14px;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;padding:18px;border-radius: var(--r);border:1px solid rgba(124,58,237,.35);background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.08))}
.ng-feat{padding:16px;border:1px solid var(--line);border-radius: var(--r);background:rgba(255,255,255,.03)}
.ng-feat__icon{width:34px;height:34px;border-radius:12px;margin-bottom:10px;background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,197,94,.85));box-shadow: var(--shadow)}
.ng-feat h3{margin:0 0 6px;font-size:16px}
.ng-feat p{margin:0;color:var(--muted);line-height:1.6}
.ng-note{margin-top:14px;padding:14px 16px;border-radius: var(--r);border:1px dashed var(--line);background:rgba(255,255,255,.02)}
.ng-contact{display:grid;grid-template-columns:1.1fr .9fr;gap:16px;align-items:start}

.ng-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 14px;border-radius:14px;background: linear-gradient(135deg, rgba(124,58,237,1), rgba(124,58,237,.65));border:1px solid rgba(124,58,237,.55);text-decoration:none;font-weight:600;box-shadow: 0 12px 30px rgba(124,58,237,.22)}
.ng-btn:hover{filter:brightness(1.05)}
.ng-btn--ghost{background:transparent;border:1px solid var(--line);box-shadow:none;color:var(--text)}
.ng-btn--ghost:hover{background:var(--panel)}

@media (max-width: 980px){

  /* Existing responsive stacking */
  .hero__grid{ grid-template-columns: 1fr; }
  .cards--3{ grid-template-columns: 1fr; }
  .cards--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .ng-hero__grid{ grid-template-columns: 1fr; }
  .ng-cards--3{ grid-template-columns: 1fr; }
  .ng-cards--2{ grid-template-columns: 1fr; }
  .ng-grid--3{ grid-template-columns: 1fr; }
  .ng-contact{ grid-template-columns: 1fr; }

  /* ===== MOBILE HEADER FIX ===== */
  .topbar__inner{
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }
/* Desktop: keep hero headline on one line */
{
  .hero h1{
    
  }
}

  .brand__logo{ height: 26px; }

  .brand__name{
    font-size: 14px;
    line-height: 1.2;
  }

  .brand__tag{
    font-size: 11px;
    line-height: 1.2;
  }

  /* Clean nav row (no ugly wrapping) */
  .nav{
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
  }

  .nav a{
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 10px;
  }

  /* ===== MOBILE HERO FIX ===== */
  .hero{
    padding: 34px 0 20px;
  }

  .hero-layout{
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .hero-right{
    order: -1;          /* logo on top */
    margin: 0 0 10px 0;
  }

  
  

  .hero-logo-anim{
  width: 160px;
  max-width: 160px;
  height: auto;
  transform: none;
  filter: none;
}



/* Base hero title styling */
.hero h1,
.hero-title{
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* DESKTOP: force single line */
{
  .hero h1,
  .hero-title{
    white-space: nowrap;
  }
}

/* BELOW desktop: allow wrapping */
{
  .hero h1,
  .hero-title{
    white-space: normal;
  }
}


  .hero h1{
    font-size: 34px;
    line-height: 1.1;
  }
  
  
  @media (min-width: 1200px){
  .hero-title{
    white-space: nowrap;
  }
}

  
  /* FORCE HERO TITLE ONE LINE ON DESKTOP */
{
  .hero h1{
    white-space: nowrap;
  }
}


  .eyebrow{
  margin: 10px 0 14px;
  font-size: 14px;
  letter-spacing: .12em;     /* keep premium feel */
  
  color: rgba(255,255,255,.78);  /* clearer than var(--muted) */
}



  /* Optional: topbar height compensation if spacing feels off */
  :root{ --topbar-h: 104px; }
}



/* ===== CONTACT ICON ACTIONS – HARD FIX ===== */

.contact-actions{
  display: flex !important;
  gap: 14px;
  margin-top: 18px;
}

.icon-btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  width: 44px !important;
  height: 44px !important;

  border-radius: 14px;
 border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);

  color: var(--text);
  text-decoration: none;

  flex: 0 0 auto;   /* PREVENT STRETCHING */
}

.icon-btn svg{
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
  display: block;
}

/* Brand color accents */
.icon-btn.whatsapp{ color:#22c55e; }
.icon-btn.email{ color:#7c3aed; }
.icon-btn.map{ color:#38bdf8; }

/* Hover (subtle, not ugly) */
.icon-btn:hover{
  background: rgba(255,255,255,.10);
}


/* ===== CONTACT CARD (POLISHED v2) ===== */
.contact-card{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(800px 300px at 15% 10%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(700px 260px at 85% 85%, rgba(34,197,94,.08), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:
    0 18px 55px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.contact-card h3{
  margin: 0 0 6px;
  font-size: 20px;
}

.contact-card > .muted{
  margin: 0 0 14px;
}

/* Contact rows */
.contact-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06); /* softer */
}

.contact-item:first-of-type{ border-top: 0; }

.contact-item .label{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
  opacity: .85;
}

.contact-item a,
.contact-item span{
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
  font-weight: 600;
  letter-spacing: .01em;
}

.contact-item a:hover{ text-decoration: underline; }

/* Actions area */
.contact-actions{
  display: flex;                 /* ensure row */
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Icon buttons: refined interaction */
.icon-btn{
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.icon-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22) !important;
}

.icon-btn:active{
  transform: translateY(0px) scale(.98);
}

/* HERO TITLE – GRACEFUL HIERARCHY */
.hero-title{
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-title .hero-sub{
  display: block;
  margin-top: 10px;
  font-size: 0.72em;
  font-weight: 500;
  opacity: 0.85;
}

/* ===== Slow hero reveal timeline ===== */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1800ms cubic-bezier(.2,.9,.2,1),
    transform 1800ms cubic-bezier(.2,.9,.2,1);
}

.reveal--logo{
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 2000ms cubic-bezier(.2,.9,.2,1),
    transform 2000ms cubic-bezier(.2,.9,.2,1);
}

.reveal--in{
  opacity: 1;
  transform: translateY(0);
}

.reveal--in.reveal--logo{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* timing */
.r1{ transition-delay: 200ms; }
.r2{ transition-delay: 1400ms; }
.r3{ transition-delay: 2200ms; }


/* Force reveal to actually hide subtitle/eyebrow initially (higher specificity) */
.hero-sub.reveal{ opacity: 0 !important; }
.eyebrow.reveal{ opacity: 0 !important; }
.hero-sub.reveal.reveal--in{ opacity: 0.85 !important; }
.eyebrow.reveal.reveal--in{ opacity: 0.75 !important; }



/* ===== HERO ANIMATION DEFINITIONS (NO TRIGGER YET) ===== */

/* Title */
#heroTitle{
  display: inline-block;
  opacity: 0;
  transform: translate(0, 0) scale(1.18);
  transform-origin: left center;
}



/* Logo */
#heroLogo{
  opacity: 0;
}


@keyframes fadeInOnly{
  from{ opacity: 0; }
  to{ opacity: 1; }
}


.hero.play #heroLogo{
  animation: fadeInOnly 5900ms ease-out forwards;
  animation-delay: 5400ms;
}


#heroEyebrow{
  margin: 0 0 2px 8px;   /* ← moves RIGHT */
  padding: 0;
}


#heroSub{
  display: block;
  margin: 0 0 20px;
  margin-left: 7px;
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.9);
}



#heroTitle{
  opacity: 0;
}


.hero.play #heroTitle{
  animation: fadeInOnly 700ms ease-out forwards;
  animation-delay: 100ms;
}




/* CTA buttons */
#heroCta{
  opacity: 0;
  transform: translateY(10px);
}


/* ===== HERO TIMELINE (TRIGGERED BY .hero.play) ===== */

/* When playing: title anim */
.hero{
  position: relative; /* ensure centering math is stable */
}

.



/* When playing: logo anim (graceful) */
.hero.play #heroLogo{
  animation: ngLogoIn 1700ms cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: 400ms;
}


.hero.play #heroEyebrow{
  animation: fadeInOnly 700ms ease-out forwards;
  animation-delay: 600ms;
}



#heroEyebrow{
  opacity: 0;   /* hidden before animation */
}




@keyframes fadeInOnly{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}




/* Word spans (we will create these via JS) */
.ng-word{
  display:inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(0.25px);
}



/* Subtitle words start after title/logo */
.hero.play #heroSub .ng-word{
  animation: ngWordIn 2400ms cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: calc(var(--i) * 520ms + 1200ms);
  margin-right: 0.6ch;   /* ← spacing control */
}





/* CTA appears last */
.hero.play #heroCta{
  animation: ngFadeUp 900ms cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: 9200ms;
}

.hero.play #heroCta .btn:not(.secondary){
  animation: ctaDimPulse 2.8s ease-in-out infinite;
  animation-delay: 1s;
}



/* Keyframes */
@keyframes ngFadeUp{
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ngWordIn{
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes ngLogoIn{
  0% { opacity: 0; transform: translateY(12px) scale(0.95); filter: blur(0.8px); }
  70% { opacity: 1; filter: blur(0.3px);
 }
  100% { opacity: 0.78; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes heroFlyIn{
  to{
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}





@keyframes ctaDimPulse{
  0%   { filter: brightness(0.78); opacity: 0.92; }
  50%  { filter: brightness(1);    opacity: 1; }
  100% { filter: brightness(0.78); opacity: 0.92; }
}


.hero-right{
  justify-content: flex-start !important;
}


/* ===== ABOUT: polish only (no hero impact) ===== */
#about .section__head{
  margin-bottom: 26px;
}

#about .section__head h2{
  font-size: 32px;
  letter-spacing: -0.02em;
}

#about .section__head p{
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

#about .card h3{
  font-size: 19px;
}

#about .grid.grid--2{
  gap: 16px;
}

#about .v{
  color: rgba(255,255,255,.78);
}
/* ===== ABOUT refinements (safe overrides) ===== */

/* Make the head stack instead of split wide */
#about .section__head{
  display: block;
  margin-bottom: 22px;
}

#about .section__head h2{
  margin: 0 0 8px 0;
}

#about .section__head p{
  margin: 0;
  max-width: 72ch;                 /* readable line length */
  color: rgba(255,255,255,.72);
}


/* Equal height cards and better inner spacing */
#about .cards--2{
  align-items: stretch;
}

#about .card{
  min-height: 300px;               /* prevents the “empty big box” feel */
  padding: 22px;                   /* slightly more premium spacing */
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
}

#about .card h3{
  margin-bottom: 12px;
}
#about .list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}

#about .list li{
  margin: 6px 0;
}
#about .grid.grid--2{
  gap: 18px;
}

#about .k{
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: .14em;
  opacity: .85;
}

#about .v{
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}
#about{
  position: relative;
}

/* ABOUT: stack the two cards for readability */
#about .cards.cards--2{
  grid-template-columns: 1fr;
  gap: 16px;
}
/* ABOUT: tighten the V/M/G/V grid so it doesn't feel like a paragraph wall */
#about .card .grid.grid--2{
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

#about .card .v{
  font-size: 15px;
  line-height: 1.55;
}

/* ABOUT: one-line heading + tagline */
#about .section__head--about{
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

#about .section__head--about p{
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 16px;
}

@media (max-width: 820px){
  #about .section__head--about{
    display: block;
  }
  #about .section__head--about p{
    margin-top: 6px;
  }
}
/* ABOUT: reduce card padding/air */
#about .card{
  padding: 18px;
}

#about .card h3{
  margin: 0 0 10px 0;
}

#about .list{
  margin-top: 10px;
}

#about .list li{
  margin: 4px 0;
}
/* ABOUT: keep title + tagline together (no far-right push) */
#about .section__head--about{
  display: flex;
  justify-content: flex-start;  /* IMPORTANT */
  align-items: baseline;
  gap: 14px;
}

#about .section__head--about p{
  margin: 0;
  max-width: none;
  white-space: nowrap;          /* keeps it on one line */
}
/* ABOUT: reduce card vertical height */
#about .card{
  min-height: unset !important;
  padding: 16px 18px !important;
}

#about .card h3{
  margin: 0 0 8px 0;
}

#about .list li{
  margin: 3px 0;
}
#about .card .v{
  line-height: 1.45;
}
/* ===== ABOUT: VMGV cleanup (step 2) ===== */

/* Tighten About cards slightly */
#about .card{
  padding: 16px 18px !important;
}

/* New VMGV list */
.about-vmgv{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

.about-vmgv__item{
  margin: 0;
}

.about-vmgv dt{
  margin: 0 0 6px 0;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.about-vmgv dd{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.80);
}

/* Stack VMGV on smaller screens */
@media (max-width: 980px){
  .about-vmgv{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* ===== ABOUT: width + density (step 3) ===== */

/* Desktop only: make About section feel tighter and more premium */
@media (min-width: 1024px){
  #about .container{
    max-width: 1040px; /* tighter than 1200px */
  }
}

/* Tighten the "Who we are" bullets further */
#about .list{
  line-height: 1.58;
  margin-top: 8px;
}

#about .list li{
  margin: 2px 0;
}

/* Slightly reduce space under the About heading */
#about .section__head--about{
  margin-bottom: 14px;
}
/* ===== ABOUT: promote VMGV labels (step 4B) ===== */

.about-vmgv dt{
  font-size: 18px;          /* matches card h3 scale */
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;     /* remove tiny-label feel */
  margin-bottom: 6px;
  color: rgba(255,255,255,.92);
}
/* ===== Anchor offset (no black bar) ===== */
html{
  scroll-padding-top: calc(var(--topbar-h) + 22px);
}

/* ===== ABOUT: center and constrain ===== */
#about .container{
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
/* ===== ABOUT: equal top & bottom spacing ===== */
#about{
  padding-top: 72px;
  padding-bottom: 72px;
}
