/* =========================================================
   Studio Pixel — Redesigned stylesheet (v2)
   Dark experimental + huge Plus Jakarta typography + purple.
   ========================================================= */

:root{
  --sp-bg:#0a0a0a;
  --sp-bg-2:#0d0d10;
  --sp-bg-3:#111114;
  --sp-card:rgba(22,22,28,0.65);
  --sp-card-solid:#141418;
  --sp-input:rgba(12,12,16,0.6);
  --sp-line:rgba(255,255,255,0.08);
  --sp-line-strong:rgba(255,255,255,0.14);
  --sp-white:#ffffff;
  --sp-text:#e6e6ec;
  --sp-muted:#a1a1a8;
  --sp-dim:#5e5e66;
  --sp-purple:#A855F7;
  --sp-purple-2:#B879F9;
  --sp-purple-3:#C084FC;
  --sp-purple-soft:rgba(168,85,247,0.15);
  --sp-purple-glow:rgba(168,85,247,0.45);
  --sp-radius:12px;
  --sp-radius-sm:8px;
  --sp-container:1080px;
  --sp-header-h:80px;
  --sp-ease:cubic-bezier(.2,.7,.2,1);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--sp-bg);color:var(--sp-text);}
html{scroll-behavior:smooth;}
body{
  font-family:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight:400;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  background:
    radial-gradient(1000px 600px at 90% -5%, rgba(168,85,247,0.12), transparent 55%),
    radial-gradient(800px 500px at -5% 8%, rgba(168,85,247,0.10), transparent 55%),
    radial-gradient(900px 500px at 50% 100%, rgba(168,85,247,0.05), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #08080a 100%);
  min-height:100vh;
}

a{color:var(--sp-purple-2);text-decoration:none;transition:color .25s var(--sp-ease);}
a:hover{color:var(--sp-purple-3);}
img{max-width:100%;display:block;}
button{font-family:inherit;}
::selection{background:var(--sp-purple);color:#fff;}

.container{max-width:var(--sp-container);margin:0 auto;padding:0 32px;position:relative;z-index:2;}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5{margin:0 0 .5em; color:var(--sp-white); font-weight:800; letter-spacing:-0.03em; line-height:1.05;}
h1{font-size:clamp(2.75rem, 7.5vw, 6rem);}
h2{font-size:clamp(1.9rem, 4.5vw, 3.5rem);}
h3{font-size:clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing:-0.02em;}
h4{font-size:1rem; letter-spacing:0;}
p{margin:0 0 1em; color:var(--sp-text);}
.eyebrow{
  display:inline-block; font-size:.7rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--sp-purple-2); font-weight:700; margin-bottom:20px;
}
.muted{color:var(--sp-muted);}
.small{font-size:.9rem;}

/* ---------- Header (CYCLE-style pill/island) ---------- */
.sp-header{
  position:fixed; top:16px; left:0; right:0; z-index:60;
  height:auto;
  background:transparent;
  backdrop-filter:none;
  border:none;
}
.sp-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  max-width:var(--sp-container); margin:0 auto; padding:0 32px;
}
.brand{
  display:flex; align-items:center; gap:.7rem; color:#fff;
  background:rgba(10,10,12,0.72);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid var(--sp-line);
  border-radius:999px;
  padding:12px 22px;
}
.brand-mark{
  width:12px; height:12px; display:inline-block;
  background:var(--sp-purple);
  border-radius:3px;
  transition:transform .5s var(--sp-ease), box-shadow .5s var(--sp-ease), border-radius .5s var(--sp-ease);
  flex-shrink:0;
}
.brand:hover .brand-mark{
  transform:rotate(45deg) scale(1.15);
  box-shadow:0 0 24px var(--sp-purple-glow);
  border-radius:50%;
}
.brand-name{font-weight:700; letter-spacing:-0.02em; font-size:1.02rem;}

/* The pill-island containing nav + CTA */
.nav-island{
  display:flex; align-items:center; gap:6px;
  background:rgba(10,10,12,0.72);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid var(--sp-line);
  border-radius:999px;
  padding:6px 6px 6px 18px;
}
.sp-nav{display:flex; align-items:center; gap:1.6rem; padding:0 6px;}
.sp-nav .nav-link{
  color:#c8c8ce; font-size:.9rem; font-weight:500; letter-spacing:.01em;
  position:relative; padding:.4rem 0;
}
.sp-nav .nav-link:hover, .sp-nav .nav-link.is-active{color:#fff;}
.sp-nav .nav-link.is-active{font-weight:700;}
.sp-nav .nav-link::after{
  content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0;
  background:var(--sp-purple); transition:width .3s var(--sp-ease);
}
.sp-nav .nav-link:hover::after, .sp-nav .nav-link.is-active::after{width:100%;}

/* Outline home icon at start of the island (where CYCLE has search) */
.nav-home{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  color:#c8c8ce; margin-right:6px;
  border-radius:50%;
  transition:color .25s var(--sp-ease), background .25s var(--sp-ease);
}
.nav-home svg{width:20px; height:20px;}
.nav-home:hover, .nav-home.is-active{color:#fff; background:rgba(255,255,255,0.06);}

.sp-actions{display:flex; align-items:center;}
.cta{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.72rem 1.25rem;
  background:var(--sp-purple); color:#fff;
  font-weight:600; font-size:.9rem; letter-spacing:.01em;
  border:1px solid var(--sp-purple);
  border-radius:999px;
  transition:background .25s var(--sp-ease), box-shadow .3s var(--sp-ease), transform .25s var(--sp-ease), color .25s var(--sp-ease);
  cursor:pointer;
  line-height:1;
}
.cta:hover{background:var(--sp-purple-2); box-shadow:0 10px 30px var(--sp-purple-glow); transform:translateY(-2px); color:#fff;}
.cta.ghost{background:transparent; color:#fff; border-color:var(--sp-line-strong);}
.cta.ghost:hover{border-color:var(--sp-purple); background:var(--sp-purple-soft); box-shadow:none; color:#fff;}
.cta.large{padding:.95rem 1.6rem; font-size:.95rem;}
.cta.block{width:100%; justify-content:center;}
.cta-inside{padding:.6rem 1.1rem; font-size:.85rem;}

/* Mobile menu */
.menu-toggle{
  display:none; background:rgba(10,10,12,0.72);
  backdrop-filter:blur(20px);
  border:1px solid var(--sp-line);
  color:#fff; cursor:pointer;
  width:44px; height:44px; border-radius:50%;
  align-items:center; justify-content:center;
}
@media (max-width: 960px){
  :root{--sp-header-h:72px;}
  .nav-island{
    position:fixed;
    top:76px; left:16px; right:16px;
    display:none;
    flex-direction:column; align-items:stretch;
    gap:0;
    background:rgba(10,10,12,0.98);
    backdrop-filter:blur(18px);
    border:1px solid var(--sp-line);
    border-radius:20px;
    padding:14px 22px 20px;
    z-index:70;
  }
  .nav-island.open{display:flex;}
  .sp-nav{flex-direction:column; align-items:stretch; padding:0; gap:0;}
  .sp-nav .nav-link{
    width:100%; padding:1rem 0;
    border-bottom:1px solid var(--sp-line);
    font-size:1.05rem;
  }
  .sp-nav .nav-link::after{display:none;}
  .nav-home{
    width:100%; height:auto; margin:0;
    padding:1rem 0; gap:.75rem;
    border-radius:0; border-bottom:1px solid var(--sp-line);
    justify-content:flex-start;
    color:#c8c8ce; font-weight:500; font-size:1.05rem;
  }
  .nav-home::after{content:"Home";}
  .nav-home svg{width:22px; height:22px;}
  .cta-inside{margin-top:16px; width:100%; justify-content:center; padding:.85rem 1.2rem;}
  .menu-toggle{display:inline-flex;}
  .container{padding:0 20px;}
  .sp-header .wrap{padding:0 16px;}
}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative; min-height:auto; padding-top:calc(var(--sp-header-h) + 16px);
  display:flex; align-items:center; overflow:hidden;
}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-bg img{width:100%; height:100%; object-fit:cover; opacity:.4; filter:contrast(1.05) saturate(1.15);}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.55) 40%, #0a0a0a 100%),
    radial-gradient(60% 60% at 80% 20%, rgba(168,85,247,.20), transparent 60%);
}
.hero .container{padding-top:60px; padding-bottom:100px; position:relative; z-index:2;}
.hero-title{
  font-size:clamp(2.25rem, 5.6vw, 4.8rem);
  font-weight:800; line-height:1.05; letter-spacing:-0.035em; margin:0 0 1.1rem;
  color:#fff;
}
.hero-title .accent{
  background:linear-gradient(135deg, #E9D5FF 0%, var(--sp-purple-3) 25%, var(--sp-purple) 60%, #7C3AED 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  display:inline-block;
  line-height:1.15;
  padding:0 .04em .06em;
}
.hero-sub{
  max-width:560px; margin:0 0 1.4rem; color:#b3b3ba;
  font-size:clamp(.95rem, 1.1vw, 1.02rem); line-height:1.55;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}

/* Hero floating decorative icons */
.hero-decor{position:absolute; inset:0; pointer-events:none; z-index:1;}
.hero-decor .d{
  position:absolute; width:44px; height:44px;
  background:var(--sp-card);
  border:1px solid var(--sp-line);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--sp-purple-2);
  animation:floatY 6s ease-in-out infinite;
  backdrop-filter:blur(6px);
}
.hero-decor .d1{top:22%; left:2%; animation-delay:0s;}
.hero-decor .d2{top:6%; right:20%; animation-delay:.9s;}
.hero-decor .d3{top:48%; right:6%; width:52px; height:52px; animation-delay:1.6s;}
.hero-decor .d4{bottom:22%; left:44%; animation-delay:2.3s;}
@keyframes floatY{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-14px) rotate(6deg);}
}

/* ---------- Marquee (categories) ---------- */
.marquee{
  border-top:1px solid var(--sp-line); border-bottom:1px solid var(--sp-line);
  overflow:hidden; padding:22px 0; background:rgba(255,255,255,0.01);
  position:relative;
}
.marquee-track{
  display:flex; gap:44px; animation:marquee 32s linear infinite;
  white-space:nowrap; width:max-content;
}
.marquee-item{
  display:inline-flex; align-items:center; gap:44px;
  color:#e6e6ec; font-weight:600; font-size:1.05rem; letter-spacing:-0.01em;
}
.marquee-item .dot{
  width:10px; height:10px; background:var(--sp-purple); border-radius:2px; transform:rotate(45deg);
  display:inline-block;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ---------- Stats ---------- */
.stats{padding:72px 0; border-bottom:1px solid var(--sp-line);}
.stats-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:32px;}
.stat .num{
  font-size:clamp(2.4rem, 5vw, 3.5rem);
  font-weight:800; color:#fff; letter-spacing:-0.04em; line-height:1; margin-bottom:8px;
}
.stat .label{color:var(--sp-muted); font-size:.9rem;}
@media (max-width:768px){.stats-grid{grid-template-columns:repeat(2, 1fr); gap:28px;}}

/* ---------- Sections ---------- */
section{position:relative; z-index:2;}
.section{padding:100px 0;}
.section-tight{padding:72px 0;}
.section-head{margin-bottom:56px; max-width:640px;}
.section-head h2, .section-head-row h2{font-size:28px; font-weight:700; letter-spacing:-0.02em; margin:0;}
.section-head-row{display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:48px; flex-wrap:wrap;}
.see-all{display:inline-flex; align-items:center; gap:.6rem; color:#c8c8ce; font-size:.92rem; font-weight:500; transition:color .25s var(--sp-ease);}
.see-all:hover{color:#fff;}
.see-all .arrow-ic{width:22px; height:22px; color:var(--sp-purple-2); transition:transform .3s var(--sp-ease);}
.see-all:hover .arrow-ic{transform:translateX(3px);}
@media (max-width:960px){.section{padding:72px 0;}}

/* Service cards */
.services-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:20px;}
.service-card{
  padding:32px; background:var(--sp-card);
  border:1px solid var(--sp-line); border-radius:var(--sp-radius);
  position:relative; overflow:hidden;
  transition:transform .35s var(--sp-ease), border-color .35s var(--sp-ease), background .35s var(--sp-ease);
}
.service-card:hover{transform:translateY(-4px); border-color:var(--sp-purple); background:rgba(30,20,40,0.6);}
.service-card .icon-box{
  width:44px; height:44px; border-radius:10px;
  background:var(--sp-purple-soft);
  border:1px solid rgba(168,85,247,0.28);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--sp-purple-3); font-size:1.15rem;
  margin-bottom:24px;
  transition:transform .5s var(--sp-ease), background .3s var(--sp-ease);
}
.service-card:hover .icon-box{transform:rotate(-6deg) scale(1.08); background:rgba(168,85,247,0.28);}
.service-card h3{margin:0 0 10px; color:#fff;}
.service-card p{color:var(--sp-muted); font-size:.94rem; margin:0; line-height:1.6;}
@media (max-width:768px){.services-grid{grid-template-columns:1fr;}}

/* ---------- Portfolio (home featured — 3 cards) ---------- */
.pf-featured{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;}
.pf-card{
  position:relative; overflow:hidden;
  border:1px solid var(--sp-line); border-radius:var(--sp-radius);
  background:var(--sp-card-solid);
  aspect-ratio:4/5;
  transition:border-color .3s var(--sp-ease), transform .35s var(--sp-ease);
}
.pf-card img{width:100%; height:100%; object-fit:cover; opacity:.85; transition:transform .8s var(--sp-ease), opacity .5s var(--sp-ease);}
.pf-card:hover{border-color:var(--sp-purple); transform:translateY(-4px);}
.pf-card:hover img{transform:scale(1.06); opacity:1;}
.pf-card .meta{
  position:absolute; left:0; right:0; bottom:0; padding:22px 24px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  z-index:2;
}
.pf-card .meta .tag{
  display:inline-block; font-size:.68rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--sp-purple-3); font-weight:700; margin-bottom:6px;
}
.pf-card .meta h4{font-size:1.15rem; color:#fff; margin:0; letter-spacing:-0.02em;}
.pf-card .arrow{display:none;}
@media (max-width:960px){.pf-featured{grid-template-columns:1fr;}}

/* ---------- Portfolio page — staggered grid ---------- */
.pf-list{display:grid; grid-template-columns:repeat(2, 1fr); gap:24px;}
.pf-list .pf-cell{
  position:relative; overflow:hidden;
  border:1px solid var(--sp-line); border-radius:var(--sp-radius);
  background:var(--sp-card-solid);
  aspect-ratio:16/11;
  transition:border-color .3s var(--sp-ease), transform .35s var(--sp-ease);
}
.pf-list .pf-cell.full{grid-column:1 / -1; aspect-ratio:16/6;}
.pf-list .pf-cell img{width:100%; height:100%; object-fit:cover; opacity:.85; transition:transform .8s var(--sp-ease), opacity .5s var(--sp-ease);}
.pf-list .pf-cell:hover{border-color:var(--sp-purple); transform:translateY(-4px);}
.pf-list .pf-cell:hover img{transform:scale(1.04); opacity:1;}
.pf-list .pf-cell .meta{
  position:absolute; left:0; right:0; bottom:0; padding:22px 26px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
  z-index:2;
}
.pf-list .pf-cell .meta .tag{
  font-size:.66rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--sp-purple-3); font-weight:700; margin-bottom:6px; display:inline-block;
}
.pf-list .pf-cell .meta h4{font-size:1.15rem; color:#fff; margin:0; letter-spacing:-0.02em;}
.pf-list .pf-cell .arrow{display:none;}
@media (max-width:768px){
  .pf-list{grid-template-columns:1fr;}
  .pf-list .pf-cell, .pf-list .pf-cell.full{aspect-ratio:16/11;}
}

/* ---------- Big CTA / centered banner ---------- */
.cta-band{padding:110px 0; text-align:center; background:linear-gradient(180deg, transparent 0%, rgba(168,85,247,0.08) 50%, transparent 100%); border-top:1px solid var(--sp-line); border-bottom:1px solid var(--sp-line);}
.cta-band h2{margin:0 auto 18px; max-width:20ch; font-size:35px; line-height:1.15;}
.cta-band p{color:var(--sp-muted); max-width:560px; margin:0 auto 28px;}

/* ---------- About / Quem Somos ---------- */
.about-split{display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center;}
.about-split .col-img img{width:100%; border-radius:var(--sp-radius); border:1px solid var(--sp-line); aspect-ratio:5/4; object-fit:cover;}
.about-split h1{font-size:clamp(2.2rem, 4.5vw, 3.4rem); margin:0 0 24px;}
.about-split p{color:var(--sp-muted); font-size:1.02rem; line-height:1.7;}
@media (max-width:960px){.about-split{grid-template-columns:1fr; gap:40px;}}

/* Method steps 2x2 */
.method-title{font-size:clamp(1.8rem, 3.5vw, 2.6rem); margin:0 0 40px;}
.steps-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:20px;}
.step-card{
  position:relative; overflow:hidden;
  padding:32px 32px 34px;
  background:var(--sp-card); border:1px solid var(--sp-line); border-radius:var(--sp-radius);
  transition:border-color .3s var(--sp-ease), transform .35s var(--sp-ease);
}
.step-card:hover{border-color:var(--sp-purple); transform:translateY(-4px);}
.step-card .icon-box{
  width:44px; height:44px; border-radius:10px;
  background:var(--sp-purple-soft); border:1px solid rgba(168,85,247,0.28);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--sp-purple-3); font-size:1.15rem; margin-bottom:26px;
}
.step-card .big-num{
  position:absolute; top:22px; right:26px;
  font-size:3.2rem; font-weight:800; color:rgba(255,255,255,0.05); letter-spacing:-0.05em;
  line-height:1; pointer-events:none;
}
.step-card h3{margin:0 0 10px; color:#fff;}
.step-card p{color:var(--sp-muted); font-size:.95rem; margin:0; line-height:1.65;}
@media (max-width:768px){.steps-grid{grid-template-columns:1fr;}}

/* FAQ */
.faq-wrap{max-width:820px; margin:0 auto;}
.faq-wrap h2{text-align:center; margin-bottom:40px;}
.faq-item{
  border:1px solid var(--sp-line);
  background:var(--sp-card);
  border-radius:var(--sp-radius);
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color .25s var(--sp-ease);
}
.faq-item[open]{border-color:var(--sp-purple);}
.faq-item summary{
  list-style:none; cursor:pointer;
  padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px;
  color:#fff; font-weight:600; font-size:1rem;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .chev{
  width:22px; height:22px; color:var(--sp-purple-2); flex-shrink:0;
  transition:transform .3s var(--sp-ease);
}
.faq-item[open] summary .chev{transform:rotate(180deg);}
.faq-item .body{padding:0 24px 22px; color:var(--sp-muted); font-size:.96rem; line-height:1.7;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1.05fr; gap:64px; align-items:flex-start;}
.contact-grid h1{font-size:clamp(2.2rem, 5vw, 3.4rem); margin:0 0 18px;}
.contact-grid p.lead{color:var(--sp-muted); margin:0 0 40px; font-size:1.02rem; line-height:1.65;}
.contact-info{display:flex; flex-direction:column; gap:20px;}
.contact-info .row{
  display:flex; align-items:center; gap:16px;
  color:#e6e6ec; font-size:1rem;
}
.contact-info .row .ic{
  width:44px; height:44px; border-radius:10px;
  background:var(--sp-purple-soft); border:1px solid rgba(168,85,247,0.28);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--sp-purple-3); font-size:1.05rem; flex-shrink:0;
}

/* Form card */
.form-card{
  padding:38px;
  background:var(--sp-card); border:1px solid var(--sp-line); border-radius:16px;
  backdrop-filter:blur(6px);
}
.form-card h2{font-size:clamp(1.4rem, 2.4vw, 1.8rem); margin:0 0 26px;}
.form{display:flex; flex-direction:column; gap:20px;}
.field{display:flex; flex-direction:column; gap:8px;}
.field label{
  font-size:.85rem; color:#dcdce2; font-weight:500;
}
.field input, .field textarea{
  width:100%;
  background:var(--sp-input);
  color:#fff;
  border:1px solid var(--sp-line-strong);
  border-radius:10px;
  padding:14px 16px;
  font-family:inherit; font-size:.97rem;
  outline:none;
  transition:border-color .25s var(--sp-ease), background .25s var(--sp-ease);
}
.field input::placeholder, .field textarea::placeholder{color:#5c5c66;}
.field input:focus, .field textarea:focus{
  border-color:var(--sp-purple);
  background:rgba(20,15,28,0.7);
}
.field textarea{min-height:120px; resize:vertical;}
.form .cta{margin-top:6px;}
.form-note{color:var(--sp-dim); font-size:.82rem; margin:0;}
.form-status{
  margin-top:2px; padding:14px 16px; border:1px solid var(--sp-line); border-radius:10px;
  display:none; font-size:.9rem;
}
.form-status.success{display:block; border-color:rgba(120,220,120,.35); background:rgba(120,220,120,.06); color:#bff0bf;}
.form-status.error{display:block; border-color:rgba(255,110,110,.35); background:rgba(255,110,110,.06); color:#ffc7c7;}
@media (max-width:960px){.contact-grid{grid-template-columns:1fr; gap:40px;}.form-card{padding:28px 22px;}}

/* ---------- Inner page hero (portfolio / sobre / contato) ---------- */
.page-intro{padding:calc(var(--sp-header-h) + 70px) 0 30px; position:relative;}
.page-intro h1{margin:0;}
.page-intro .lead{color:var(--sp-muted); max-width:640px; margin-top:16px; font-size:1.02rem; line-height:1.65;}
.page-intro .socials-top{
  position:absolute; top:calc(var(--sp-header-h) + 68px); right:32px;
  display:flex; gap:14px;
}
.page-intro .socials-top a{
  width:38px; height:38px; border-radius:50%;
  background:var(--sp-card); border:1px solid var(--sp-line);
  display:flex; align-items:center; justify-content:center; color:#c8c8ce;
  transition:background .25s var(--sp-ease), color .25s var(--sp-ease), border-color .25s var(--sp-ease);
}
.page-intro .socials-top a:hover{background:var(--sp-purple); border-color:var(--sp-purple); color:#fff;}
@media (max-width:720px){.page-intro .socials-top{position:static; margin-top:20px;}}

/* ---------- Footer ---------- */
.sp-footer{
  border-top:1px solid var(--sp-line);
  padding:90px 0 36px; margin-top:0;
}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1.1fr; gap:56px;}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr; gap:36px;}}
.footer-brand{display:flex; align-items:center; gap:.7rem; color:#fff; margin-bottom:20px;}
.footer-brand .brand-mark{width:12px; height:12px; background:var(--sp-purple); border-radius:3px;}
.footer-brand span{font-size:1.15rem; font-weight:700;}
.footer-col h4{
  font-size:.72rem; letter-spacing:.24em; text-transform:uppercase; color:var(--sp-dim);
  margin-bottom:22px; font-weight:700;
}
.footer-col p{color:var(--sp-muted); font-size:.94rem; margin:0; line-height:1.6;}
.footer-links{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;}
.footer-links a{color:#dcdce2; font-size:.98rem;}
.footer-links a:hover{color:var(--sp-purple-2);}
.contact-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; color:#dcdce2; font-size:.96rem;}
.contact-list li{display:flex; align-items:center; gap:12px;}
.contact-list a{color:#dcdce2;}
.contact-list a:hover{color:var(--sp-purple-2);}
.socials{display:flex; gap:12px; margin-top:22px;}
.socials a{
  width:36px; height:36px; border-radius:50%;
  background:transparent; border:1px solid var(--sp-line-strong);
  display:inline-flex; align-items:center; justify-content:center; color:#c8c8ce;
  transition:background .25s var(--sp-ease), transform .25s var(--sp-ease), border-color .25s var(--sp-ease), color .25s var(--sp-ease);
}
.socials a:hover{background:var(--sp-purple); border-color:var(--sp-purple); color:#fff; transform:translateY(-2px);}
.footer-bottom{
  border-top:1px solid var(--sp-line); margin-top:56px; padding-top:24px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  color:var(--sp-dim); font-size:.82rem;
}

/* Reveal on scroll */
[data-reveal]{
  opacity:0; transform:translateY(20px);
  transition:opacity .8s var(--sp-ease), transform .8s var(--sp-ease);
}
[data-reveal].is-visible{opacity:1; transform:translateY(0);}
