/* ============================================================
   MAVIXA — design tokens
   ============================================================ */
:root{
  --blue: #3c2bff;
  --blue-deep: #150e8f;
  --green: #bbff2c;
  --black: #0a0a0a;
  --white: #ffffff;
  --ease-premium: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
}





*{ margin:0; padding:0; box-sizing:border-box; }

html, body{
  height:100%;
  background:var(--black);
  font-family:var(--font);
  overflow-x:hidden;
}

body{
  overscroll-behavior:none;
}




.blog-grid img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding-bottom: 21px !important;
    border-radius: 11px !important;
}

.article-hero-img img {
    width: 100% !important;
     padding-bottom: 21px !important;
    border-radius: 11px !important;
}


a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:var(--font); border:none; background:none; cursor:pointer; }

::selection{ background:var(--green); color:var(--black); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader{
  position:fixed; inset:0;
  background:var(--blue);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
}

.preloader-mark{
  font-size:clamp(2.5rem, 8vw, 6rem);
  font-weight:800;
  letter-spacing:0.02em;
  color:var(--green);
}

.preloader-track{
  position:absolute;
  left:0; right:0;
  bottom:50px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 40px;
}

.preloader-line{
  height:2px;
  width:0%;
  background:var(--green);
  transform-origin:left;
}

.preloader-percent{
  font-size:0.85rem;
  font-weight:600;
  color:var(--green);
  min-width:3.2em;
  text-align:right;
  font-variant-numeric:tabular-nums;
}

/* ============================================================
   CURTAIN
   ============================================================ */
#curtain{
  position:fixed; inset:0;
  width:100%; height:100%;
  z-index:9998;
  display:block;
  transform:translateY(0%);
}

/* ============================================================
   HEADER
   ============================================================ */
#siteHeader{
  position:fixed;
  top:0; left:0; right:0;
  z-index:500;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:32px 40px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.6s var(--ease-out);
}

#siteHeader.visible{ opacity:1; pointer-events:auto; }

.logo{ display:flex; align-items:center; }
.logo img{ height:34px; display:block; }
.logo-fallback{
  display:none;
  font-weight:800;
  font-size:1.4rem;
  letter-spacing:0.02em;
  color:var(--green);
}

.btn-consult{
  position:relative;
  overflow:hidden;
  border:1.5px solid rgba(255,255,255,0.35);
  color:var(--white);
  padding:11px 22px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:600;
  letter-spacing:0.01em;
  transition:background 0.35s var(--ease-out), color 0.35s var(--ease-out),
             border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out),
             box-shadow 0.35s var(--ease-out);
  backdrop-filter:blur(6px);
}
.btn-consult::before{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform:skewX(-20deg);
  transition:left 0.65s var(--ease-out);
  pointer-events:none;
}
.btn-consult:hover{
  background:var(--green);
  border-color:var(--green);
  color:var(--black);
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(187,255,44,0.35);
}
.btn-consult:hover::before{ left:130%; }

/* ============================================================
   GLASS NAV
   ============================================================ */
#glassNav{
  position:fixed;
  left:50%; bottom:28px;
  transform:translateX(-50%);
  z-index:500;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.6s var(--ease-out) 0.1s;
}
#glassNav.visible{ opacity:1; pointer-events:auto; }

#glassNav ul{
  position:relative;
  display:flex;
  align-items:center;
  gap:4px;
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.35);
}

#glassNav li{ position:relative; z-index:2; }

#glassNav a{
  display:block;
  padding:10px 18px;
  font-size:0.82rem;
  font-weight:600;
  color:rgba(255,255,255,0.75);
  white-space:nowrap;
  border-radius:999px;
  transition:color 0.35s var(--ease-out);
}

#glassNav a.nav-cta{
  position:relative;
  overflow:hidden;
  color:var(--black);
  background:var(--white);
  transition:color 0.35s var(--ease-out), background 0.35s var(--ease-out),
             transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
#glassNav a.nav-cta::before{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  transform:skewX(-20deg);
  transition:left 0.65s var(--ease-out);
  pointer-events:none;
}
#glassNav a.nav-cta:hover{
  background:var(--green);
  color:var(--black);
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(187,255,44,0.4);
}
#glassNav a.nav-cta:hover::before{ left:130%; }

#glassNav a:hover{ color:var(--white); }
#glassNav a.active{ color:var(--black); }

.nav-indicator{
  position:absolute;
  top:6px; left:6px;
  height:calc(100% - 12px);
  width:0;
  border-radius:999px;
  background:var(--green);
  z-index:1;
  transition:transform 0.5s var(--ease-premium), width 0.5s var(--ease-premium), opacity 0.3s;
  opacity:0;
}

/* ============================================================
   PAGES — shared
   ============================================================ */
#app{ position:relative; }

/* ---------- HOME ---------- */
#page-home{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:center;
  justify-content:center;
  padding:0 8vw;
  text-align:center;
  position:relative;
}

.home-inner{ position:relative; z-index:1; max-width:1100px; }

#page-home h1{
  font-size:clamp(2rem, 5.2vw, 4.3rem);
  font-weight:800;
  line-height:1.12;
  letter-spacing:-0.01em;
  color:var(--white);
}

#page-home h1 .accent{ color:var(--green); }

/* ---------- WHO WE ARE ---------- */
#page-who-we-are{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:center;
  padding:160px 0 180px;
}

.wwa-inner{
  max-width:1300px;
  padding-left:8vw;
  padding-right:8vw;
}

.wwa-text{
  font-size:clamp(1.7rem, 4.2vw, 3.6rem);
  font-weight:700;
  line-height:1.28;
  color:var(--white);
  text-align:left;
}

.wwa-text .hl{
  background:var(--green);
  color:var(--blue-deep);
  padding:0.02em 0.18em;
  border-radius:0.12em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

.wwa-vm{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:900px;
  margin-top:52px;
}

.wwa-vm-item{
  border-top:1px solid rgba(255,255,255,0.18);
  padding-top:18px;
}

.wwa-vm-label{
  display:block;
  font-size:0.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--green);
  margin-bottom:10px;
}

.wwa-vm-item p{
  font-size:1.05rem;
  font-weight:500;
  line-height:1.5;
  color:rgba(255,255,255,0.85);
}

/* ---------- SHARED SECTION HEADINGS ---------- */
.section-eyebrow{
  display:inline-block;
  font-size:0.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--green);
  margin-bottom:14px;
}

.section-title{
  font-size:clamp(2rem, 4.6vw, 3.6rem);
  font-weight:800;
  line-height:1.14;
  letter-spacing:-0.01em;
  color:var(--white);
  margin-bottom:16px;
}

.section-title .accent{ color:var(--green); }

.section-lead{
  font-size:clamp(1rem, 1.6vw, 1.2rem);
  color:rgba(255,255,255,0.65);
  max-width:560px;
  margin-bottom:56px;
}

/* ---------- COMING SOON PAGES ---------- */
.page-soon{
  background:var(--blue);
  align-items:center;
  justify-content:center;
}
.page-soon h2{
  font-size:clamp(2.6rem, 9vw, 7rem);
  font-weight:800;
  color:var(--green);
  letter-spacing:-0.01em;
}

/* ---------- OUR TEAM ---------- */
#page-our-team{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:flex-start;
  padding:160px 8vw 140px;
}

.team-inner{ max-width:1300px; width:100%; }

.team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.team-card{
  position:relative;
  padding:28px 24px 26px;
  border-radius:20px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
  transition:transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.team-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.24);
}

.team-photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:18px;
  background:rgba(255,255,255,0.08);
}
.team-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.team-photo-fallback{
  display:none;
  width:100%; height:100%;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  font-weight:800;
  color:var(--green);
  background:linear-gradient(135deg, rgba(187,255,44,0.14), rgba(255,255,255,0.04));
}

.team-name{
  font-size:1.15rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:4px;
}

.team-role{
  font-size:0.88rem;
  font-weight:500;
  color:rgba(255,255,255,0.6);
  margin-bottom:14px;
}

.team-linkedin{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:0.8rem;
  font-weight:600;
  color:var(--green);
  transition:color 0.3s var(--ease-out);
}
.team-linkedin:hover{ color:var(--white); }

/* ---------- OUR PROCESS ---------- */
#page-our-process{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:flex-start;
  padding:160px 8vw 140px;
}

.process-inner{ max-width:900px; width:100%; }

.process-timeline{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:0;
}

.process-step{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:28px;
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,0.14);
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.process-step:last-child{ border-bottom:1px solid rgba(255,255,255,0.14); }
.process-step.in-view{ opacity:1; transform:translateY(0); }

.process-num{
  font-size:1.6rem;
  font-weight:800;
  color:var(--green);
  line-height:1;
}

.process-body h3{
  font-size:1.4rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:10px;
}

.process-body p{
  font-size:1rem;
  line-height:1.6;
  color:rgba(255,255,255,0.68);
  max-width:600px;
}

/* ---------- FAQS ---------- */
#page-faqs{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:flex-start;
  padding:160px 8vw 140px;
}

.faq-inner{ max-width:820px; width:100%; }

.faq-list{ display:flex; flex-direction:column; }

.faq-item{ border-top:1px solid rgba(255,255,255,0.16); }
.faq-item:last-child{ border-bottom:1px solid rgba(255,255,255,0.16); }

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 4px;
  text-align:left;
  font-size:1.08rem;
  font-weight:600;
  color:var(--white);
}

.faq-icon{
  flex-shrink:0;
  width:28px; height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  font-size:1.1rem;
  font-weight:500;
  color:var(--green);
  transition:transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.faq-item.open .faq-icon{ transform:rotate(45deg); background:var(--green); color:var(--blue-deep); }

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s var(--ease-out);
}

.faq-answer p{
  padding:0 4px 24px;
  font-size:0.98rem;
  line-height:1.6;
  color:rgba(255,255,255,0.65);
  max-width:640px;
}

/* ---------- CONTACT ---------- */
#page-contact{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:center;
  justify-content:center;
  padding:160px 8vw 140px;
}

.contact-inner{ max-width:1000px; width:100%; }

.contact-inner h2{
  font-size:clamp(2.2rem, 5vw, 3.6rem);
  font-weight:800;
  color:var(--white);
  margin-bottom:48px;
}

.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.3fr;
  gap:64px;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:32px;
  border-top:1px solid rgba(255,255,255,0.14);
  padding-top:28px;
}

.info-row{ display:flex; flex-direction:column; gap:6px; }
.info-label{
  font-size:0.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.45);
}
.info-value{
  font-size:1.3rem;
  font-weight:700;
  color:var(--green);
  transition:color 0.3s var(--ease-out);
}
a.info-value:hover{ color:var(--white); }

.social-row{ display:flex; gap:18px; }
.social-row a{
  font-size:0.95rem;
  font-weight:700;
  color:rgba(255,255,255,0.85);
  transition:color 0.3s var(--ease-out);
}
.social-row a:hover{ color:var(--green); }

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-form label span{
  font-size:0.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.45);
}

.contact-form input,
.contact-form textarea{
  font-family:var(--font);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.22);
  border-radius:12px;
  padding:14px 16px;
  color:var(--white);
  font-size:1rem;
  resize:vertical;
  transition:border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--green);
  background:rgba(255,255,255,0.12);
}

.btn-submit{
  position:relative;
  overflow:hidden;
  margin-top:6px;
  align-self:flex-start;
  padding:14px 30px;
  border-radius:999px;
  background:var(--green);
  color:var(--black);
  font-weight:700;
  font-size:0.9rem;
  transition:transform 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.btn-submit::before{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
  transform:skewX(-20deg);
  transition:left 0.65s var(--ease-out);
  pointer-events:none;
}
.btn-submit:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(187,255,44,0.4);
}
.btn-submit:hover::before{ left:130%; }
.btn-submit:disabled{ opacity:0.6; cursor:default; transform:none; box-shadow:none; }

.form-status{
  font-size:0.85rem;
  font-weight:600;
  color:var(--green);
  min-height:1.2em;
}
.form-status.error{ color:#ff6b6b; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor{
  position:fixed;
  top:0; left:0;
  width:10px; height:10px;
  margin:-5px 0 0 -5px;
  border-radius:50%;
  background:var(--green);
  z-index:9997;
  pointer-events:none;
  opacity:0;
  transition:opacity 0.3s ease;
}
.custom-cursor.visible{ opacity:1; }

@media (hover: hover) and (pointer: fine){
  body{ cursor:none; }
  a, button, .team-card{ cursor:none; }
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
html.has-custom-scrollbar{ scrollbar-width:none; }
html.has-custom-scrollbar::-webkit-scrollbar{ display:none; }
body.has-custom-scrollbar::-webkit-scrollbar{ display:none; }

.custom-scrollbar{
  position:fixed;
  top:0; right:6px;
  bottom:0;
  width:5px;
  z-index:600;
  border-radius:999px;
}

.custom-scrollbar-thumb{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:80px;
  border-radius:999px;
  background:var(--blue-deep);
  background:linear-gradient(180deg, #5548ff, var(--blue-deep));
  box-shadow:0 0 12px rgba(60,43,255,0.6);
}

@media (max-width: 860px){
  .custom-scrollbar{ display:none; }
  body{ cursor:auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px){
  #siteHeader{ padding:22px 20px; }
  .logo img{ height:26px; }
  /* the bottom pill nav horizontally-scrolled on small screens —
     replaced below with a hamburger + slide-up menu instead */
  #glassNav{ display:none; }
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
  #page-who-we-are{ padding:140px 0 160px; }
  .wwa-vm{ grid-template-columns:1fr; gap:32px; }
  .team-grid{ grid-template-columns:repeat(2, 1fr); }
  #page-our-team, #page-our-process, #page-faqs{ padding:130px 6vw 100px; }
  .process-step{ grid-template-columns:56px 1fr; gap:18px; }
}

@media (max-width: 560px){
  .team-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   MOBILE NAV — hamburger + slide-up menu (replaces the
   horizontally-scrolling pill nav below 860px)
   ============================================================ */
.mobile-menu-toggle{
  display:none;
  position:fixed;
  right:20px; bottom:20px;
  z-index:700;
  width:52px; height:52px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.5s var(--ease-out);
}
.mobile-menu-toggle.visible{ opacity:1; pointer-events:auto; }

.mobile-menu-toggle span{
  display:block;
  width:20px; height:2px;
  border-radius:2px;
  background:var(--white);
  transition:transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.mobile-menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2){ opacity:0; }
.mobile-menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:650;
  display:flex;
  align-items:flex-end;
  background:rgba(11,10,26,0.6);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.4s var(--ease-out);
}
.mobile-menu.open{ opacity:1; pointer-events:auto; }

.mobile-menu ul{
  width:100%;
  background:rgba(24,20,54,0.92);
  border-top:1px solid rgba(255,255,255,0.14);
  border-radius:28px 28px 0 0;
  padding:14px 8px 34px;
  transform:translateY(100%);
  transition:transform 0.45s var(--ease-premium);
}
.mobile-menu.open ul{ transform:translateY(0); }

.mobile-menu li + li{ margin-top:2px; }

.mobile-menu a{
  display:block;
  padding:16px 22px;
  border-radius:14px;
  font-size:1.05rem;
  font-weight:600;
  color:rgba(255,255,255,0.82);
  transition:background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.mobile-menu a.active{ background:var(--green); color:var(--black); }

.mobile-menu a.mobile-menu-cta{
  margin-top:10px;
  text-align:center;
  background:var(--white);
  color:var(--black);
}

@media (max-width: 860px){
  .mobile-menu-toggle{ display:flex; }
}

/* ============================================================
   PORTFOLIO (site-wide, generic work samples)
   ============================================================ */
#page-portfolio{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:flex-start;
  padding:160px 8vw 140px;
}

.portfolio-inner{ max-width:1300px; width:100%; }

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.portfolio-card{
  padding:24px;
  border-radius:20px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
  transition:transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.portfolio-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.1); }

.portfolio-media{
  width:100%;
  aspect-ratio:4/3;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:18px;
  background:rgba(255,255,255,0.08);
  position:relative;
}
.portfolio-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.portfolio-media-fallback{
  display:none;
  position:absolute; inset:0;
  align-items:center; justify-content:center;
  text-align:center;
  padding:16px;
  font-size:0.85rem;
  font-weight:600;
  color:rgba(255,255,255,0.5);
  background:linear-gradient(135deg, rgba(187,255,44,0.1), rgba(255,255,255,0.03));
}

.portfolio-title{ font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:8px; }
.portfolio-desc{ font-size:0.92rem; line-height:1.5; color:rgba(255,255,255,0.65); }

.portfolio-card-cta{
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:rgba(187,255,44,0.08);
  border-color:rgba(187,255,44,0.3);
}
.portfolio-cta-link{
  display:inline-block;
  margin-top:16px;
  font-weight:700;
  color:var(--green);
  transition:opacity 0.3s var(--ease-out);
}
.portfolio-cta-link:hover{ opacity:0.75; }

@media (max-width: 980px){
  .portfolio-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 640px){
  .portfolio-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   ADELAIDE LANDING PAGE (adelaide.html)
   ============================================================ */
.ad-hero{
  background:var(--blue);
  padding:170px 8vw 90px;
}
.ad-hero-inner{ max-width:1100px; }
.ad-hero-inner h1{
  font-size:clamp(2rem, 5vw, 3.8rem);
  font-weight:800;
  line-height:1.14;
  letter-spacing:-0.01em;
  color:var(--white);
  margin-bottom:24px;
}
.ad-hero-inner h1 .accent{ color:var(--green); }
.ad-hero-lead{
  font-size:clamp(1.05rem, 1.8vw, 1.25rem);
  color:rgba(255,255,255,0.75);
  max-width:680px;
  line-height:1.6;
  margin-bottom:32px;
}
.ad-hero-cta{
  display:inline-block;
  padding:16px 28px;
  border-radius:100px;
  background:var(--green);
  color:var(--black);
  font-weight:700;
  transition:transform 0.3s var(--ease-out);
}
.ad-hero-cta:hover{ transform:translateY(-2px); }

.ad-section{ background:var(--blue); padding:40px 8vw 140px; }
.ad-section-inner{ max-width:1300px; margin:0 auto; }

.ad-video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:28px;
  margin-top:40px;
  max-width:760px;
}
.ad-video-card{
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
}
.ad-video-card video{ width:100%; display:block; aspect-ratio:9/16; background:#000; object-fit:cover; }
.ad-video-caption{ padding:18px 20px; }
.ad-video-caption h3{ font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:6px; }
.ad-video-caption p{ font-size:0.9rem; color:rgba(255,255,255,0.6); line-height:1.5; }

.ad-body-text{
  max-width:820px;
  font-size:clamp(1.05rem, 1.6vw, 1.2rem);
  line-height:1.7;
  color:rgba(255,255,255,0.82);
  margin-top:36px;
}
.ad-body-text .hl{
  background:var(--green);
  color:var(--blue-deep);
  padding:0.02em 0.18em;
  border-radius:0.12em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.ad-inline-link{ color:var(--green); font-weight:700; transition:opacity 0.3s var(--ease-out); }
.ad-inline-link:hover{ opacity:0.75; }

@media (max-width: 560px){
  .ad-video-grid{ grid-template-columns:1fr; max-width:340px; }
}

/* ---------- HOME QUICK LINKS ---------- */
.home-quicklinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:40px;
}
.home-quicklinks a{
  padding:12px 22px;
  border-radius:100px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:var(--white);
  font-weight:600;
  font-size:0.95rem;
  transition:background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.home-quicklinks a:hover{ background:var(--green); color:var(--blue-deep); }

/* Current-page indicator for real (non-SPA) nav links */
.nav-current{ color:var(--green) !important; }

/* ============================================================
   ADDITIONAL SEO CONTENT SECTIONS (added across pages)
   ============================================================ */
#page-home-about,
#page-home-location,
#page-wwa-why,
#page-wwa-work,
#page-team-cta,
#page-process-included,
#page-portfolio-approach,
#page-contact-areas{
  background:var(--blue);
  padding:90px 8vw;
  border-top:1px solid rgba(255,255,255,0.08);
}

.home-sub{
  margin-top:18px;
  font-size:clamp(1rem, 1.6vw, 1.2rem);
  color:rgba(255,255,255,0.7);
}

.home-about-inner{ max-width:820px; margin:0 auto; text-align:center; }
.home-about-inner .section-lead{ margin-left:auto; margin-right:auto; max-width:680px; }
.home-about-inner .section-eyebrow,
.home-about-inner .section-title{ text-align:center; width:100%; }

#page-wwa-why .section-lead,
#page-wwa-work .section-lead{ max-width:900px; }

.process-checklist{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:720px;
  margin-top:8px;
}
.process-checklist li{
  position:relative;
  padding-left:30px;
  font-size:1.02rem;
  line-height:1.5;
  color:rgba(255,255,255,0.85);
}
.process-checklist li::before{
  content:"";
  position:absolute;
  left:0; top:7px;
  width:16px; height:16px;
  border-radius:4px;
  background:var(--green);
}

.suburb-list{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}
.suburb-list li{
  padding:9px 18px;
  border-radius:100px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  color:rgba(255,255,255,0.85);
  font-size:0.9rem;
  font-weight:600;
}

@media (max-width: 640px){
  #page-home-about, #page-home-location, #page-wwa-why, #page-wwa-work,
  #page-team-cta, #page-process-included, #page-portfolio-approach, #page-contact-areas{
    padding:64px 6vw;
  }
}

/* ============================================================
   PRICING TIERS (pricing page)
   ============================================================ */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:40px;
  max-width:1300px;
}
.pricing-card{
  padding:32px 26px;
  border-radius:20px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
  transition:transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
  display:flex;
  flex-direction:column;
}
.pricing-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.1); }
.pricing-card-featured{
  background:rgba(187,255,44,0.08);
  border-color:rgba(187,255,44,0.35);
}
.pricing-tier-name{ font-size:0.85rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--green); margin-bottom:6px; }
.pricing-tier-title{ font-size:1.3rem; font-weight:800; color:var(--white); margin-bottom:18px; }
.pricing-amount{ font-size:1.6rem; font-weight:800; color:var(--white); line-height:1.3; }
.pricing-amount span{ display:block; font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:0.04em; margin-top:2px; }
.pricing-amount-monthly{ font-size:1.05rem; font-weight:700; color:rgba(255,255,255,0.85); margin-top:10px; margin-bottom:20px; }
.pricing-amount-monthly span{ display:block; font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:0.04em; margin-top:2px; }
.pricing-features{ list-style:none; display:flex; flex-direction:column; gap:10px; margin:0 0 26px; flex:1; }
.pricing-features li{ position:relative; padding-left:24px; font-size:0.92rem; line-height:1.5; color:rgba(255,255,255,0.75); }
.pricing-features li::before{
  content:"";
  position:absolute; left:0; top:6px;
  width:13px; height:13px;
  border-radius:4px;
  background:var(--green);
}
.pricing-cta{
  display:inline-block;
  text-align:center;
  padding:14px 20px;
  border-radius:100px;
  background:var(--green);
  color:var(--black);
  font-weight:700;
  font-size:0.95rem;
  transition:transform 0.3s var(--ease-out);
}
.pricing-cta:hover{ transform:translateY(-2px); }
.pricing-note{
  max-width:820px;
  margin-top:32px;
  font-size:0.92rem;
  line-height:1.6;
  color:rgba(255,255,255,0.55);
  font-style:italic;
}

@media (max-width: 980px){
  .pricing-grid{ grid-template-columns:1fr; max-width:520px; }
}

/* ============================================================
   BLOG — index grid + article typography
   ============================================================ */
#page-blog{
  background:var(--blue);
  display:flex;
  min-height:100vh;
  align-items:flex-start;
  padding:160px 8vw 140px;
}
.blog-inner{ max-width:1100px; width:100%; }

.blog-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:40px;
}
.blog-card{
  display:block;
  padding:28px;
  border-radius:20px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
  transition:transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.blog-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.1); }
.blog-card-meta{ font-size:0.78rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.blog-card-title{ font-size:1.25rem; font-weight:800; color:var(--white); margin-bottom:10px; line-height:1.3; }
.blog-card-excerpt{ font-size:0.92rem; line-height:1.6; color:rgba(255,255,255,0.65); }

@media (max-width: 780px){
  .blog-grid{ grid-template-columns:1fr; }
}

/* ---------- Article page ---------- */
#page-blog-article{
  background:var(--blue);
  padding:150px 8vw 60px;
}
.article-inner{ max-width:760px; margin:0 auto; }
.article-meta{ font-size:0.82rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.article-inner h1{
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  font-weight:800;
  line-height:1.2;
  color:var(--white);
  margin-bottom:18px;
}
.article-dek{
  font-size:1.1rem;
  line-height:1.6;
  color:rgba(255,255,255,0.72);
  margin-bottom:36px;
}
.article-body{ font-size:1.05rem; line-height:1.8; color:rgba(255,255,255,0.85); }
.article-body h2{
  font-size:1.5rem;
  font-weight:800;
  color:var(--white);
  margin:44px 0 16px;
}
.article-body h3{
  font-size:1.2rem;
  font-weight:700;
  color:var(--white);
  margin:32px 0 12px;
}
.article-body p{ margin-bottom:20px; }
.article-body ul, .article-body ol{ margin:0 0 20px 22px; }
.article-body li{ margin-bottom:10px; }
.article-body a{ color:var(--green); font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.article-body a:hover{ opacity:0.8; }
.article-body strong{ color:var(--white); }
.article-cta{
  margin-top:48px;
  padding:32px;
  border-radius:20px;
  background:rgba(187,255,44,0.08);
  border:1px solid rgba(187,255,44,0.3);
  text-align:center;
}
.article-cta p{ font-size:1.05rem; color:rgba(255,255,255,0.85); margin-bottom:18px; }
.article-cta a.pricing-cta{ display:inline-block; }
.article-back{ display:inline-block; margin-bottom:24px; color:rgba(255,255,255,0.6); font-weight:600; font-size:0.9rem; }
.article-back:hover{ color:var(--green); }

@media (max-width: 640px){
  #page-blog{ padding:130px 6vw 90px; }
  #page-blog-article{ padding:120px 6vw 50px; }
}

/* ============================================================
   HOME — three-pillar services section
   ============================================================ */
#page-home-services{
  background:var(--black);
  padding:90px 8vw;
  border-top:1px solid rgba(255,255,255,0.08);
}
.services-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.service-card{
  padding:32px 26px;
  border-radius:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  transition:transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.service-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.07); }
.service-num{ font-size:0.85rem; font-weight:700; color:var(--green); letter-spacing:0.05em; }
.service-card h3{ font-size:1.3rem; font-weight:800; color:var(--white); margin:14px 0 12px; }
.service-card p{ font-size:0.95rem; line-height:1.6; color:rgba(255,255,255,0.65); margin-bottom:16px; }

@media (max-width: 900px){
  .services-inner{ grid-template-columns:1fr; max-width:520px; }
}
