:root{
    --bg-navy:#09032A;
    --purple:#6B4EFF;
    --purple2:#6B4EFF;
    --purple3:#8A6CFF;
    --indigo:#2D1A87;
    --panel-dark:#09032A;
    --panel-dark2:#0A0334;
    --footer-navy:#09032A;
    --ink:#0A0833;
  }

  *{box-sizing:border-box;}

  html{scroll-behavior:smooth;}

  body{
    margin:0;
    overflow-x:hidden;
    background:var(--bg-navy);
    font-family:Arial, Helvetica, sans-serif;
    min-height:100%;
    display:flex;
    flex-direction:column;
    -webkit-font-smoothing:antialiased;
  }

  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  button{font-family:inherit; cursor:pointer; border:none; background:none;}

  /* ===================== NAVBAR ===================== */

  .navbar{
    position:fixed;
    top:28px;
    left:50%;
    transform:translateX(-50%);
    z-index:999;
    width:92%;
    max-width:1400px;
    height:80px;
    border-radius:28px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(40px);
    -webkit-backdrop-filter:blur(40px);
    box-shadow:0 20px 80px rgba(0,0,0,.35);
    padding:0 32px;
    column-gap:12px;
    transition:width .45s ease-out, height .45s ease-out, top .45s ease-out, border-radius .45s ease-out;
  }

  .navbar .logo{ justify-self:start; }
  .navbar nav{ justify-self:center; }
  .navbar .navbar-actions{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:12px;
  }

  @media(max-width:480px){
    .navbar{
      width:94%;
      padding:0 16px;
      column-gap:8px;
    }
    .navbar.small{ width:92%; }
  }

  .navbar.small{
    width:82%;
    height:68px;
    top:16px;
    border-radius:18px;
  }

  .navbar .logo{
    position:relative;
    display:flex;
    align-items:center;
    flex-shrink:0;
  }

  .navbar .logo img{
    height:25px;
    width:auto;
    user-select:none;
    transition:opacity .3s ease;
  }

  .navbar .logo .logo-black{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    opacity:0;
  }

  .navbar .logo .logo-white{
    opacity:1;
  }

  .navbar.on-light .logo-white{ opacity:0; }
  .navbar.on-light .logo-black{ opacity:1; }

  .navbar nav{
    display:none;
    align-items:center;
    gap:48px;
  }

  .navbar nav a{
    position:relative;
    font-size:15px;
    font-weight:500;
    letter-spacing:.02em;
    color:rgba(255,255,255,.65);
    transition:color .3s, transform .3s;
    padding-bottom:8px;
  }

  .navbar nav a:hover{
    color:#fff;
    transform:translateY(-2px);
  }

  .navbar.on-light nav a{
    color:rgba(10,8,51,.65);
  }

  .navbar.on-light nav a:hover{
    color:#000;
  }

  .navbar nav a::after{
    content:"";
    position:absolute;
    bottom:-2px;
    left:50%;
    width:0;
    height:2px;
    background:var(--purple);
    border-radius:9999px;
    transform:translateX(-50%);
    transition:width .3s;
  }

  .navbar nav a:hover::after{ width:100%; }

  .navbar .cta-btn{
    border-radius:9999px;
    background:linear-gradient(to right, var(--purple2), var(--purple3));
    padding:12px 28px;
    font-size:14px;
    font-weight:600;
    color:#fff;
    box-shadow:0 10px 30px rgba(107,78,255,.45);
    transition:box-shadow .3s, transform .2s;
    white-space:nowrap;
    flex-shrink:0;
  }

  .navbar .cta-btn:hover{
    box-shadow:0 20px 40px rgba(107,78,255,.65);
    transform:scale(1.05);
  }

  .navbar .cta-btn:active{ transform:scale(.97); }

  @media(max-width:767px){
    .navbar .cta-btn{
      padding:8px 14px;
      font-size:12px;
    }
  }

  @media(max-width:340px){
    .navbar .cta-btn span.arrow-text{ display:none; }
  }

  .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:9999px;
    background:linear-gradient(to right, var(--purple2), var(--purple3));
    padding:16px 36px;
    font-size:16px;
    font-weight:600;
    color:#fff;
    box-shadow:0 10px 30px rgba(107,78,255,.35);
    transition:box-shadow .3s, transform .2s;
    white-space:nowrap;
  }

  .btn-primary:hover{
    box-shadow:0 20px 40px rgba(107,78,255,.55);
    transform:scale(1.03);
  }

  .btn-primary:active{ transform:scale(.97); }

  .navbar .burger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:32px;
    padding:0;
  }

  .navbar .burger span{
    display:block;
    height:2px;
    width:100%;
    background:#fff;
    border-radius:2px;
    transition:transform .3s, opacity .3s, background .3s;
  }

  .navbar.on-light .burger span{
    background:#0A0833;
  }

  .mobile-menu{
    position:fixed;
    inset:0;
    z-index:998;
    background:rgba(7,0,34,.97);
    backdrop-filter:blur(20px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:36px;
    opacity:0;
    pointer-events:none;
    transition:opacity .35s ease;
  }

  .mobile-menu.open{ opacity:1; pointer-events:auto; }

  .mobile-menu a{
    font-size:28px;
    font-weight:600;
    color:#fff;
    letter-spacing:.02em;
  }

  .mobile-menu .cta-btn{
    border-radius:9999px;
    background:linear-gradient(to right, var(--purple2), var(--purple3));
    padding:14px 32px;
    font-size:16px;
    font-weight:600;
    color:#fff;
    margin-top:12px;
  }

  @media(max-width:767px){
    .navbar{
      display:flex;
      justify-content:space-between;
    }
  }

  @media(min-width:768px){
    .navbar nav{ display:flex; }
    .navbar .burger{ display:none; }
    .navbar .logo img{ height:26px; }
  }

  /* ===================== HERO ===================== */

  .hero{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    background:#0A0420;
  }

  .aurora-wrap{
    position:absolute;
    inset:0;
    overflow:hidden;
  }

  .aurora{
    position:absolute;
    border-radius:9999px;
    filter:blur(120px);
    mix-blend-mode:screen;
    will-change:transform;
  }

  .aurora1{
    width:1300px; height:900px;
    left:10%; bottom:-420px;
    background:radial-gradient(ellipse,#4B2FCC 0%,#2D1A87 40%,transparent 72%);
    opacity:.55;
    animation:auroraOne 20s ease-in-out infinite alternate;
  }
  .aurora2{
    width:520px; height:520px;
    left:-160px; top:-160px;
    background:radial-gradient(circle,#2D1A87 0%,transparent 70%);
    opacity:.3;
    animation:auroraTwo 24s ease-in-out infinite alternate;
  }

  .hero.aurora-paused .aurora{
    animation-play-state:paused;
  }

  @media(max-width:640px){
    .aurora{ filter:blur(70px); }
    .aurora1{ width:900px; height:650px; }
    .aurora2{ width:340px; height:340px; }
  }

  .noise{
    position:absolute; inset:0; opacity:.05;
    background-image:
      radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
      radial-gradient(circle at 80% 60%, white 1px, transparent 1px),
      radial-gradient(circle at 40% 80%, white 1px, transparent 1px);
    background-size:180px 180px;
  }

  @keyframes auroraOne{
    0%{ transform:translate(-120px,0) scale(1); }
    100%{ transform:translate(160px,-40px) scale(1.12); }
  }
  @keyframes auroraTwo{
    0%{ transform:translate(0,0) scale(1); }
    100%{ transform:translate(60px,80px) scale(1.15); }
  }

  .hero-topbar{
    position:absolute;
    left:50%;
    top:140px;
    transform:translateX(-50%);
    z-index:20;
    width:100%;
    padding:0 24px;
  }

  .navbar.small ~ .hero .hero-topbar,
  body.scrolled .hero-topbar{
    top:120px;
  }

  .hero-topbar-inner{
    margin:0 auto;
    max-width:1250px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }

  .hero-topbar p{
    font-size:13px;
    color:rgba(255,255,255,.65);
    white-space:nowrap;
    margin:0;
  }

  .hero-marquee-wrap{
    display:none;
    width:650px;
    max-width:40vw;
    overflow:hidden;
  }

  .hero-marquee-track{
    display:flex;
    white-space:nowrap;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    color:rgba(255,255,255,.4);
  }

  @media(min-width:768px){
    .hero-marquee-wrap{ display:block; }
  }

  .hero-content{
    position:relative;
    z-index:20;
    display:flex;
    min-height:100svh;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:140px 20px 40px;
    text-align:center;
  }

  .hero-content img{
    width:100%;
    max-width:1250px;
    height:auto;
    user-select:none;
  }

  .hero-content .tagline{
    margin:0;
    font-size:clamp(24px, 4.4vw, 42px);
    font-weight:600;
    letter-spacing:-.01em;
    color:#fff;
  }

  .hero-content .tagline-bottom{
    margin-top:36px;
  }

  .hero-available{
    margin-top:20px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:18px;
    color:rgba(255,255,255,.8);
  }

  .hero-available .dot{
    width:12px; height:12px; border-radius:50%;
    background:#31ff68;
    box-shadow:0 0 18px #31ff68;
    animation:blinkDot 1.6s ease-in-out infinite;
  }

  @keyframes blinkDot{
    0%, 100%{ opacity:1; box-shadow:0 0 18px #31ff68; }
    50%{ opacity:.25; box-shadow:0 0 4px #31ff68; }
  }

  /* ===================== VIDEO SECTION ===================== */

  .video-section{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
  }

  .video-section video{
    height:100%;
    width:100%;
    object-fit:cover;
  }

  /* ===================== MARQUEE SECTION (white) ===================== */

  .marquee-section{
    overflow:hidden;
    border-top:1px solid #d9d9d9;
    border-bottom:1px solid #d9d9d9;
    background:#fff;
    padding:24px 0;
  }

  .marquee-section .animate-marquee{
    font-size:clamp(32px, 9vw, 110px);
    font-weight:900;
    line-height:1;
    letter-spacing:-.02em;
    color:var(--ink);
  }

  .animate-marquee{
    display:inline-block;
    min-width:200%;
    white-space:nowrap;
    animation:marquee 18s linear infinite;
  }

  @keyframes marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-33.333%); }
  }

  /* ===================== ABOUT ===================== */

  .about-hero-section{
    background:#fff;
    padding:120px 0 88px;
  }

  .about-hero-inner{
    margin:0 auto;
    max-width:1300px;
    padding:0 24px;
  }

  .about-hero-inner > h1{
    margin:0 auto;
    text-align:center;
    font-size:clamp(40px, 11vw, 150px);
    font-weight:300;
    line-height:1;
    letter-spacing:-.06em;
    color:#000;
  }

  .about-hero-inner > p.intro{
    margin:24px auto 40px;
    max-width:900px;
    text-align:center;
    font-size:clamp(18px, 2.4vw, 30px);
    line-height:1.6;
    color:var(--ink);
  }

  .about-cta{
    display:flex;
    justify-content:center;
    margin-bottom:64px;
  }

  .about-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }

  .about-box{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    min-height:280px;
    display:flex;
    align-items:flex-end;
    padding:28px;
  }

  .about-box.gradient-blue,
  .about-box.gradient-dark{
    background-size:cover;
    background-position:center;
  }

  .about-box.gradient-blue img,
  .about-box.gradient-dark img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
  }

  .about-box.gradient-blue::after,
  .about-box.gradient-dark::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(to top, rgba(6,2,20,.85) 0%, rgba(6,2,20,.35) 45%, rgba(6,2,20,0) 75%);
  }

  .about-box p{
    position:relative;
    z-index:2;
    margin:0;
    max-width:260px;
    font-size:19px;
    font-weight:600;
    line-height:1.35;
    color:#fff;
  }

  .about-box.stat-box{
    background:#F2F1FA;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    padding:32px;
  }

  .about-box.stat-box .stat-number{
    display:flex;
    align-items:baseline;
    gap:10px;
  }

  .about-box.stat-box .stat-number strong{
    font-size:clamp(38px, 5vw, 52px);
    font-weight:700;
    color:var(--purple2);
    letter-spacing:-.02em;
  }

  .about-box.stat-box .stat-number span{
    font-size:14px;
    font-weight:600;
    color:var(--ink);
  }

  .about-box.stat-box .stat-bottom{
    margin-top:auto;
    padding-top:24px;
    border-top:1px solid rgba(10,8,51,.1);
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .about-box.stat-box .stat-bottom span{
    font-size:16px;
    font-weight:600;
    color:var(--ink);
  }

  .about-box.stat-box .avatars{
    display:flex;
  }

  .about-box.stat-box .avatars span{
    width:34px;
    height:34px;
    border-radius:50%;
    border:2px solid #F2F1FA;
    margin-left:-10px;
    display:block;
  }

  .about-box.stat-box .avatars span:first-child{ margin-left:0; }
  .about-box.stat-box .avatars span:nth-child(1){ background:linear-gradient(135deg,#FFB199,#FF6B6B); }
  .about-box.stat-box .avatars span:nth-child(2){ background:linear-gradient(135deg,#8A6CFF,#6B4EFF); }
  .about-box.stat-box .avatars span:nth-child(3){ background:linear-gradient(135deg,#6BD4FF,#4E9EFF); }

  @media(min-width:820px){
    .about-grid{
      grid-template-columns:1fr 1fr 1.1fr;
    }
    .about-box{ min-height:340px; }
  }

  /* ===================== SERVICES — PHOTO + ACCORDION ===================== */

  .services-section{
    background:#fff;
    padding:120px 0;
  }

  .services-heading{
    margin:0 auto 64px;
    width:100%;
    max-width:1500px;
    padding:0 24px;
  }

  .services-heading .intro{
    margin:0 auto;
    max-width:900px;
    text-align:center;
    font-size:clamp(18px, 2.4vw, 30px);
    line-height:1.6;
    color:var(--ink);
  }

  .services-heading h1{
    margin-top:80px;
    text-align:center;
    font-size:clamp(40px, 11vw, 150px);
    font-weight:300;
    line-height:1;
    letter-spacing:-.06em;
    color:#000;
  }

  .services-heading .sub{
    margin-top:24px;
    text-align:center;
    font-size:clamp(15px, 1.6vw, 20px);
    color:#737373;
  }

  .services-layout{
    margin:0 auto;
    max-width:1300px;
    padding:0 24px;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }

  .services-photo{
    border-radius:20px;
    overflow:hidden;
    min-height:260px;
  }

  .services-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .accordion-list{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .accordion-item{
    border-radius:16px;
    background:#F2F1FA;
    overflow:hidden;
  }

  .accordion-item .accordion-head{
    display:flex;
    align-items:center;
    gap:20px;
    width:100%;
    padding:22px 24px;
    text-align:left;
  }

  .accordion-item .accordion-index{
    font-size:15px;
    font-weight:600;
    color:#8a86a8;
    flex-shrink:0;
  }

  .accordion-item .accordion-title{
    flex:1;
    font-size:clamp(17px, 2vw, 21px);
    font-weight:600;
    color:var(--ink);
  }

  .accordion-item .accordion-toggle{
    flex-shrink:0;
    width:36px;
    height:36px;
    border-radius:50%;
    border:1.5px solid var(--purple2);
    color:var(--purple2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:transform .35s ease, background .3s ease, color .3s ease;
  }

  .accordion-item.open .accordion-toggle{
    transform:rotate(180deg);
    background:var(--purple2);
    color:#fff;
  }

  .accordion-item .accordion-body{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
  }

  .accordion-item.open .accordion-body{
    max-height:520px;
  }

  .accordion-body-inner{
    display:flex;
    flex-direction:column-reverse;
    gap:20px;
    padding:0 24px 26px;
  }

  .accordion-body-inner .accordion-text{
    flex:1;
  }

  .accordion-body-inner p{
    margin:0 0 16px;
    font-size:15px;
    line-height:1.75;
    color:#4b4863;
  }

  .accordion-body-inner .tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }

  .accordion-body-inner .tags span{
    border-radius:6px;
    background:rgba(107,78,255,.1);
    color:var(--purple2);
    padding:6px 12px;
    font-size:13px;
    font-weight:600;
  }

  .accordion-body-inner .accordion-thumb{
    flex-shrink:0;
    width:100%;
    max-width:372px;
    aspect-ratio:1/1;
    border-radius:14px;
    overflow:hidden;
  }

  .accordion-body-inner .accordion-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  @media(min-width:640px){
    .accordion-body-inner{
      flex-direction:row;
    }
    .accordion-body-inner .accordion-thumb{
      width:38%;
    }
  }

  @media(min-width:900px){
    .services-layout{
      grid-template-columns:1fr 1.3fr;
      gap:48px;
      align-items:start;
    }
    .services-photo{
      position:sticky;
      top:110px;
      height:640px;
    }
  }

  /* ===================== WORK (scrolling gallery) ===================== */

  .work-section{
    background:#fff;
    padding:80px 0 96px;
    overflow:hidden;
  }

  .work-inner{
    margin:0 auto;
    max-width:1500px;
    padding:0 24px;
  }

  .work-inner > h2{
    margin:0 0 56px;
    text-align:center;
    font-size:clamp(36px, 9vw, 110px);
    font-weight:300;
    line-height:1;
    letter-spacing:-.06em;
    color:var(--ink);
  }

  .work-marquee{
    overflow:hidden;
    width:100%;
  }

  .work-track{
    display:flex;
    width:max-content;
    gap:24px;
    animation:workScroll 32s linear infinite;
  }

  .work-track .work-slide{
    flex-shrink:0;
    width:min(78vw, 420px);
    aspect-ratio:1/1;
    border-radius:20px;
    overflow:hidden;
  }

  .work-track .work-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  @keyframes workScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }

  @media(min-width:768px){
    .work-track .work-slide{ width:400px; }
  }

  /* ===================== PROCESS ===================== */

  .process-section{
    background:#fff;
    padding:80px 0 120px;
  }

  .process-inner{
    margin:0 auto;
    max-width:900px;
    padding:0 24px;
  }

  .process-inner > h2{
    text-align:center;
    font-size:clamp(36px, 8vw, 90px);
    font-weight:300;
    line-height:1;
    letter-spacing:-.05em;
    color:var(--ink);
    margin:0 0 16px;
  }

  .process-inner > p.sub{
    text-align:center;
    max-width:640px;
    margin:0 auto 88px;
    font-size:clamp(15px, 1.6vw, 19px);
    color:#737373;
  }

  .process-timeline{
    position:relative;
    padding-left:56px;
  }

  .process-line{
    position:absolute;
    left:19px;
    top:6px;
    bottom:6px;
    width:2px;
    background:#e6e6e6;
  }

  .process-line-fill{
    position:absolute;
    left:19px;
    top:6px;
    width:2px;
    height:0%;
    background:linear-gradient(to bottom, var(--purple2), var(--purple3));
    transition:height .4s ease, width .4s ease;
  }

  @media(min-width:1024px){
    .process-line-fill{
      background:linear-gradient(to right, var(--purple2), var(--purple3));
    }
  }

  .process-step{
    position:relative;
    padding-bottom:64px;
    opacity:1;
    transform:none;
  }

  .process-step.js-fade{
    opacity:0;
    transform:translateX(-24px) scale(.92);
    transition:opacity .55s cubic-bezier(.34,1.56,.64,1), transform .55s cubic-bezier(.34,1.56,.64,1);
  }

  .process-step:last-child{ padding-bottom:0; }

  .process-step.js-fade.in-view{
    opacity:1;
    transform:translateX(0) scale(1);
  }

  .process-step .step-dot{
    position:absolute;
    left:-56px;
    top:0;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    border:2px solid #d9d9d9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    color:#999;
    transition:border-color .4s ease, color .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  }

  .process-step.in-view .step-dot{
    border-color:var(--purple2);
    color:var(--purple2);
    transform:scale(1.08);
    animation:dotPulse 1.8s ease-out .5s 2;
  }

  @keyframes dotPulse{
    0%{ box-shadow:0 0 0 0 rgba(107,78,255,.35); }
    70%{ box-shadow:0 0 0 14px rgba(107,78,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(107,78,255,0); }
  }

  .process-step h3{
    margin:0 0 10px;
    font-size:clamp(20px, 3vw, 28px);
    font-weight:600;
    color:#000;
  }

  .process-step p{
    margin:0;
    max-width:520px;
    font-size:16px;
    line-height:1.7;
    color:#737373;
  }

  @media(min-width:1024px){
    .process-inner{ max-width:1500px; }

    .process-timeline{
      display:flex;
      align-items:flex-start;
      padding-left:0;
      padding-top:60px;
      gap:8px;
    }

    .process-line{
      left:6%;
      right:6%;
      top:19px;
      bottom:auto;
      height:2px;
      width:auto;
    }

    .process-line-fill{
      left:6%;
      top:19px;
      height:2px;
      width:0%;
    }

    .process-step{
      flex:1;
      padding-bottom:0;
      text-align:center;
    }

    .process-step.js-fade{
      transform:translateY(24px) scale(.92);
    }

    .process-step.js-fade.in-view{
      transform:translateY(0) scale(1);
    }

    .process-step .step-dot{
      position:relative;
      left:auto;
      top:auto;
      margin:0 auto 24px;
    }

    .process-step h3{
      font-size:clamp(16px, 1.3vw, 20px);
    }

    .process-step p{
      max-width:none;
      font-size:14px;
      padding:0 12px;
    }
  }

  /* ===================== FOOTER ===================== */

  .site-footer{
    background:#fff;
    padding:96px 0 0;
  }

  .footer-card{
    position:relative;
    overflow:hidden;
    border-radius:0;
    background:var(--footer-navy);
    opacity:1;
    transform:none;
  }

  .footer-card.js-fade{
    opacity:0;
    transform:translateY(80px);
    transition:opacity 1s ease, transform 1s ease;
  }

  .footer-card.js-fade.in-view{
    opacity:1;
    transform:translateY(0);
  }

  .starfield{
    position:absolute;
    inset:0;
    overflow:hidden;
  }

  .star{
    position:absolute;
    border-radius:50%;
    background:#fff;
  }

  .shooting-star{
    position:absolute;
    height:2px;
    width:110px;
    border-radius:9999px;
    background:linear-gradient(to right, #fff, rgba(255,255,255,.9), transparent);
    box-shadow:0 0 6px rgba(255,255,255,.6);
  }

  .footer-content{
    position:relative;
    z-index:10;
    display:flex;
    min-height:560px;
    flex-direction:column;
    justify-content:space-between;
    padding:56px 24px;
  }

  @media(min-width:768px){
    .footer-content{ padding:64px; min-height:760px; }
  }

  .footer-logo{
    display:flex;
    justify-content:center;
    padding-top:24px;
  }

  .footer-logo img{
    width:80%;
    max-width:1100px;
    height:auto;
  }

  .footer-bottom{
    margin-top:64px;
    display:grid;
    grid-template-columns:1fr;
    gap:48px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:48px;
  }

  @media(min-width:640px){
    .footer-bottom{ grid-template-columns:repeat(2, 1fr); }
  }

  @media(min-width:1024px){
    .footer-bottom{ grid-template-columns:repeat(4, 1fr); }
  }

  .footer-bottom .col-label{
    margin:0;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.35em;
    color:rgba(255,255,255,.4);
  }

  .footer-bottom .studio-text{
    margin-top:24px;
    max-width:340px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.7);
  }

  .footer-address{
    margin-top:20px;
    font-size:15px;
    line-height:1.7;
    color:rgba(255,255,255,.55);
  }

  .footer-address a{
    display:inline-block;
    margin-top:10px;
    font-size:14px;
    font-weight:600;
    color:var(--purple3);
    transition:color .3s;
  }
  .footer-address a:hover{ color:#fff; }

  .footer-links{
    margin-top:24px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .footer-links a{
    font-size:18px;
    color:rgba(255,255,255,.8);
    transition:color .3s;
  }

  .footer-links a:hover{ color:#fff; }

  .footer-copyright{
    margin-top:64px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:32px;
    text-align:center;
  }

  .footer-copyright p{
    margin:0;
    font-size:13px;
    letter-spacing:.15em;
    color:rgba(255,255,255,.4);
  }
