:root{
    /* ---------- PHOTOFACEFINDER BRAND ---------- */

    --ink:#070A18;
    --charcoal:#0B1024;
    --charcoal-2:#111936;
       --red-dim: #8d2b24;
     --red: #8d2b24;

    --paper:#F4F6FB;
    --paper-dim:#C9D0E3;

    --blue:#246BFF;
    --blue-dim:#1748B8;

    --purple:#6B3DFF;
    --purple-dim:#4525B8;

    --cyan:#19D8FF;
    --cyan-dim:#0B9FC2;

    --line-dark:rgba(201,208,227,.14);
    --line-darker:rgba(201,208,227,.08);

    --line-light:rgba(7,10,24,.14);
    --line-light-2:rgba(7,10,24,.08);

    --font-display:"Big Shoulders Display", sans-serif;
    --font-body:"IBM Plex Sans", sans-serif;
    --font-mono:"IBM Plex Mono", monospace;
}
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
body{
    background:var(--ink);
    color:var(--paper);
    font-family:var(--font-body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
/* keep this one as-is (marble background) */
body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    background-image:url("../assets/photofacefinder/marble-bg.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* change the grain rule from ::before to ::after */
body::after{
    content:"";
    position:fixed; inset:-10%; z-index:998; pointer-events:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity:.035; mix-blend-mode:overlay;
    animation:grain 1s steps(3) infinite;
}

  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  @media (max-width:640px){ .wrap{padding:0 20px;} }

  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:var(--font-mono); font-size:16px; letter-spacing:.14em;
    text-transform:uppercase; color:var(--amber);
    font-weight: 800;
  }
  .eyebrow::before{
    content:""; width:7px; height:7px; border-radius:50%;
    background:var(--red); box-shadow:0 0 0 3px rgba(199,58,34,.25);
  }

  /* ---------- sprocket strip divider (diegetic film motif) ---------- */
  .sprockets{
    display:flex; justify-content:space-between;
    padding:0 6px;
  }
  .sprockets span{
    width:9px; height:6px; border-radius:2px;
    background:var(--ink);
  }
  .sprockets.on-dark span{ background:rgba(238,240,233,.18); }
  .sprockets.on-light span{ background:rgba(21,18,13,.16); }

  .appstore-btn{
  display:inline-flex;
  align-items:center;
}
.appstore-btn img{
  height:56px;
  width:auto;
  display:block;
}

.hero-cta{
  align-items:center;
  flex-wrap:nowrap;
}

.hero-cta .appstore-btn img{
  height:60px;
  width:auto;
  display:block;
}

.hero-cta .btn-ghost{
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  white-space:nowrap;
  box-sizing:border-box;
}
/* Slightly smaller in the header where space is tighter */
.header-cta.appstore-btn img{
  height:52px;
}
  .sprocket-row{ padding:10px 0; }

  .foot-appstore-btn{
  margin-top:16px;
}
.foot-appstore-btn img{
  height:60px;
}

  /* ---------- header ---------- */
header{
    position:sticky;
    top:0;
    z-index:50;
background: radial-gradient(circle at 15% 50%, rgba(36, 107, 255, 0.18), transparent 38%), radial-gradient(circle at 85% 40%, rgba(107, 61, 255, 0.18), transparent 40%), linear-gradient(135deg, rgb(5, 8, 22) 0%, rgb(8, 13, 34) 45%, rgb(7, 20, 42) 100%);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(25,216,255,.12);
    padding: 0 20px;
}
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 0;
  }
  
  .brand{ display:flex; align-items:center; gap:10px; }
  /* .brand-mark{
    width:34px; height:34px; border-radius:6px;
    background:conic-gradient(from 220deg, var(--red), var(--amber) 40%, var(--teal) 75%, var(--red));
    display:flex; align-items:center; justify-content:center;
    box-shadow:inset 0 0 0 3px var(--ink);
  }
  .brand-mark::after{
    content:""; width:9px; height:9px; border-radius:50%; background:var(--ink);
  } */

  .brand-logo { width: 34px;height: 34px;object-fit: contain; display: block;
}
  .brand-name{
    font-family:var(--font-display); font-weight:800; font-size:21px;
    letter-spacing:.01em; text-transform:uppercase;
  }
.brand-name em{
    font-style:normal;
    background:linear-gradient(
        90deg,
        var(--blue),
        var(--purple),
        var(--cyan)
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
  .nav-links{ display:flex; gap:36px; }
  .nav-links a{
    font-size:14px; color:var(--paper-dim); font-weight:500;
    position:relative; padding-bottom:3px;
  }
  .nav-links a:hover{ color:var(--paper); }
.nav-links a::after{
    background:var(--cyan);
    transition:right .25s ease;
    .nav-links a:hover{
    color:#ffffff;
}
}
  .nav-links a:hover::after{ right:0; }
  /* @media (max-width:800px){ .nav-links{display:none;} } */

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:12.5px; font-weight:600;
    letter-spacing:.06em; text-transform:uppercase;
    padding:12px 20px; border-radius:3px; border:1px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn:focus-visible{ outline:2px solid var(--teal); outline-offset:2px; }
.btn-primary{
    background:linear-gradient(
        135deg,
        var(--blue),
        var(--purple)
    );
    color:#fff;

    box-shadow:3px 3px 0 var(--cyan);
}

.btn-primary:hover{
    transform:translate(-2px,-2px);
    box-shadow:5px 5px 0 var(--cyan);
}
.btn-ghost{
    background:rgba(25,216,255,.07);
    color:#DDE5FF;
    border:1px solid rgba(25,216,255,.65);
}

.btn-ghost:hover{
    background:rgba(25,216,255,.12);
    border-color:var(--cyan);
    color:#fff;
    box-shadow:0 0 20px rgba(25,216,255,.15);
}
  .btn-block{ width:100%; justify-content:center; }

/* =========================================================
   HARD STOP AGAINST HORIZONTAL SCROLL
   (body already had overflow-x:hidden, but the <html>
   element didn't — if anything on the page ever runs even
   1px wider than the viewport, html scrolls regardless of
   what body says, and fixed elements like the drawer stay
   pinned to the real screen edge while the page slides
   under them. Locking both, plus capping both to 100%,
   closes that off completely.)
========================================================= */

html{
    overflow-x:hidden;
    max-width:100%;
}

body{
    max-width:100%;
}

/* =========================================================
   MOBILE NAV TOGGLE (hamburger)
========================================================= */

.nav-toggle{
    display:none;
    width:40px;
    height:40px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;

    background:rgba(25,216,255,.06);
    border:1px solid rgba(25,216,255,.35);
    border-radius:7px;

    cursor:pointer;
    flex-shrink:0;
}

.nav-toggle span{
    display:block;
    width:19px;
    height:2px;
    background:var(--paper);
    border-radius:2px;
    transition:transform .25s ease, opacity .2s ease;
}

.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   HEADER — FIXED, always visible on every page
   (overrides the position:sticky rule in style.css; also
   stays on top of everything so it never gets dimmed/
   blurred by the overlay, and the hamburger button stays
   visible + clickable while open)
========================================================= */

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:70;
}

/* header is now removed from normal flow, so push the page
   content down by the header's real height */
body{
    padding-top:var(--header-h, 78px);
}

.nav{
    gap:14px;
}

/* =========================================================
   OVERLAY — starts BELOW the header, not over it
========================================================= */

.nav-overlay{
    display:none;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;                
    z-index:65;           
    background:rgba(5,8,20,.62);
    backdrop-filter:blur(2px);
    opacity:0;
    transition:opacity .25s ease;
}

.nav-overlay.open{
    display:block;
    opacity:1;
}
.nav-links-head{
    display:none;
}
.nav-links-cta{
    display:none;
}

/* =========================================================
   RESPONSIVE — SHOW TOGGLE, TURN NAV-LINKS INTO A DRAWER
   (drawer also starts below the header, so it never
   overlaps or hides the toggle button)
========================================================= */

@media (max-width:800px){

    .nav-toggle{ display:flex; }

    .nav-links{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;

        position:fixed;
        top:0;                 /* was var(--header-h) */
        right:0;
        height:100vh;           /* was calc(100vh - var(--header-h)) */
        width:min(80vw, 300px);

        padding:20px 30px 30px;

        background:linear-gradient(180deg, #0B1024 0%, #070A18 100%);
        border-left:1px solid rgba(25,216,255,.16);
        box-shadow:-20px 0 50px rgba(0,0,0,.35);

        transform:translateX(100%);
        transition:transform .3s ease;
        z-index:80;              /* was 60 — now above header (70) */
        overflow-y:auto;
    }

    .nav-links.open{
        transform:translateX(0);
    }

    .nav-links a{
        width:100%;
        padding:16px 2px;
        font-size:16px;
        border-bottom:1px solid rgba(201,208,227,.08);
    }

    .nav-links a:last-child{
        border-bottom:none;
    }
     .nav-links-head{
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
        padding-bottom:16px;
        margin-bottom:10px;
        border-bottom:1px solid rgba(201,208,227,.14);
    }

    .nav-links-close{
        width:34px;
        height:34px;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
        background:rgba(25,216,255,.06);
        border:1px solid rgba(25,216,255,.35);
        border-radius:7px;
        color:var(--paper);
    }

    .nav-links-close svg{ width:16px; height:16px; }

    .nav .header-cta{
        display:none;
    }

    /* CTA at the end of the drawer — now shown on mobile only */
    .nav-links a.nav-links-cta{
        display:flex;
        width:100%;
        justify-content:center;
        margin-top:24px;
        border-bottom:none;
    }
}

@media (max-width:420px){
    .nav .btn-primary{
        padding:10px 14px;
        font-size:11px;
    }
}




  
  /* ---------- hero ---------- */
.hero{
    position:relative;
    padding:96px 0 80px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(36,107,255,.18),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(107,61,255,.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #050816 0%,
            #080D22 45%,
            #07142A 100%
        );

    overflow:hidden;
}

  .hero-grid{
    display:grid; grid-template-columns:430px 1fr; gap:20px; align-items:center;
  }
 

  .hero-head{
    font-family:var(--font-display); font-weight:800;
    font-size:clamp(40px, 5.6vw, 74px); line-height:.98; letter-spacing:-.01em;
    text-transform:uppercase; margin:20px 0 22px;
  }
  .hero-head .line2{ color:var(--paper-dim); -webkit-text-stroke:1px var(--paper-dim); color:transparent; }
.hero-head .accent{
    background:linear-gradient(
        90deg,
        var(--blue),
        var(--cyan)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
  .hero-sub{
    color:var(--paper-dim); font-size:17px; max-width:46ch; margin-bottom:32px;
  }
  .hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
.hero-note {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--paper-dim);

    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    margin-left: -8px;

    border: 2px solid var(--ink);

    overflow: hidden;

    background: #111a35;

    position: relative;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.avatar-stack img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}
 @media (max-width:960px){ 
    .hero-grid{ grid-template-columns:1fr; } 
    .wrap-hero-center{
        text-align: center;
        margin: 0 auto;
    }

  .hero-head {
  max-width: 500px;
  margin-inline: auto;
  line-height: 47px;
  letter-spacing: 0.9px;
  }

  .hero-head br {
    display: none;
  }

  .hero-cta {
        display: flex;
        align-items: center;
        justify-content: center;

    }
    .hero-note {
       justify-content:center;
    }
    
 
}

  /* ---------- hero scan widget (signature element) ---------- */
  .sw-ring{ position:relative; width:126px; height:126px; margin-bottom:12px; }
.sw-ring-svg{ width:100%; height:100%; overflow:visible; transform:rotate(-90deg); }

.sw-ring-dotted{
    fill:none; stroke:var(--cyan); stroke-width:2;
    stroke-dasharray:1 7; opacity:.55;
    transform-origin:70px 70px;
        /* transform-origin: 84px 70px; */
    animation:sw-tick-spin 16s linear infinite;
}
.sw-ring-dashed{
    fill:none; stroke:var(--purple); stroke-width:1.5;
    stroke-dasharray:7 5; opacity:.5;
    transform-origin:70px 70px;
    /* transform-origin: 54px 76px; */
    animation:sw-tick-spin 11s linear infinite reverse;
}
.sw-ring-solid{
 fill: none;
    stroke: #34eefe;
    stroke-width: 1.5;
    stroke-dasharray: 7 5;
    opacity: .5;
    transform-origin: 70px 70px;
    /* transform-origin: 88px 70px; */
    animation:sw-tick-spin 11s linear infinite reverse;
}
@keyframes sw-tick-spin{ to{ transform:rotate(360deg); } }

.sw-ring .track{ fill:none; stroke:var(--line-dark); stroke-width:8; }
.sw-ring .progress{
    fill:none; stroke:url(#swRingGrad); stroke-width:8; stroke-linecap:round;
    stroke-dasharray:339.3; stroke-dashoffset:339.3;
    filter:drop-shadow(0 0 10px rgba(25,216,255,.85)) drop-shadow(0 0 20px rgba(107,61,255,.4));
    animation:sw-progress 2.2s cubic-bezier(.2,.7,.2,1) .3s forwards;
}
@keyframes sw-progress{ to{ stroke-dashoffset:95; } }

.sw-ring-orbit-g{
    transform-origin:70px 70px;
    animation:sw-tick-spin 4.5s linear infinite;
}
.sw-ring-orbit-dot{
    fill:var(--cyan);
    filter:drop-shadow(0 0 6px rgba(25,216,255,.9));
}

.sw-ring-center{
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:2px;
}
.sw-status{ font-family:var(--font-mono); font-size:9px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--cyan); text-shadow:0 0 10px rgba(25,216,255,.6); }
.sw-pct{ font-family:var(--font-display); font-weight:800; font-size:32px; background:linear-gradient(90deg,var(--blue),var(--purple)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1; text-shadow:0 0 18px rgba(107,61,255,.5); }
.sw-frac{ font-family:var(--font-mono); font-size:8.5px; color:var(--paper-dim); letter-spacing:.03em; }
/* .sw-panel{
    position:relative;
    background:linear-gradient(145deg, rgba(17,25,54,.96), rgba(7,10,24,.98));
    border:1px solid rgba(25,216,255,.22);
    border-radius:14px;
    padding:20px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,.65), 0 0 40px rgba(36,107,255,.08);
} */

.sw-panel {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(54, 202, 255, 0.18);
  border-radius: 16px;
  background: rgba(8, 18, 45, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: visible;
  padding:20px;
}

.sw-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 5;
  background:
    linear-gradient(90deg, #08dfff, transparent) left top / 75px 1px no-repeat,
    linear-gradient(180deg, #08dfff, transparent) left top / 1px 75px no-repeat,
    linear-gradient(270deg, #8b5cff, transparent) right top / 75px 1px no-repeat,
    linear-gradient(180deg, #8b5cff, transparent) right top / 1px 75px no-repeat,
    linear-gradient(90deg, #08dfff, transparent) left bottom / 75px 1px no-repeat,
    linear-gradient(0deg, #08dfff, transparent) left bottom / 1px 75px no-repeat,
    linear-gradient(270deg, #8b5cff, transparent) right bottom / 75px 1px no-repeat,
    linear-gradient(0deg, #8b5cff, transparent) right bottom / 1px 75px no-repeat;
  filter: drop-shadow(0 0 7px rgba(0, 217, 255, 0.65)) drop-shadow(0 0 12px rgba(123, 76, 255, 0.28));
}

.sw-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 22px rgba(0, 204, 255, 0.08), 0 0 30px rgba(112, 74, 255, 0.08);
}
/* .sw-panel>*{position:relative;z-index:2;}
.sw-panel{isolation:isolate;}
.sw-panel .corner-glow{position:absolute;width:90px;height:90px;pointer-events:none;z-index:1;filter:blur(12px);opacity:.9;}
.sw-panel .corner-glow.tl{top:-25px;left:-25px;background:radial-gradient(circle at center,rgba(0,220,255,.7),transparent 68%);}
.sw-panel .corner-glow.tr{top:-25px;right:-25px;background:radial-gradient(circle at center,rgba(105,75,255,.65),transparent 68%);}
.sw-panel .corner-glow.bl{bottom:-25px;left:-25px;background:radial-gradient(circle at center,rgba(0,190,255,.6),transparent 68%);}
.sw-panel .corner-glow.br{bottom:-25px;right:-25px;background:radial-gradient(circle at center,rgba(145,65,255,.6),transparent 68%);} */
.sw-top{
    display:flex; align-items:center; justify-content:space-between;
    padding-bottom:14px; margin-bottom:16px; border-bottom:1px solid var(--line-darker);
    flex-wrap:wrap; gap:8px;
}
.sw-eyebrow{
    display:flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:11.5px; font-weight:600;
    letter-spacing:.1em; text-transform:uppercase; color:var(--cyan);
}
.sw-eyebrow::before{
    content:""; width:6px; height:6px; border-radius:50%; background:var(--cyan);
    box-shadow:0 0 0 3px rgba(25,216,255,.2);
    animation:sw-blink 1.6s infinite;
}
@keyframes sw-blink{ 50%{ opacity:.25; } }
.sw-meta{
    font-family:var(--font-mono); font-size:10.5px; letter-spacing:.06em;
    text-transform:uppercase; color:var(--paper-dim);
}

.sw-grid{
    display:grid; grid-template-columns:1fr .92fr 1fr; gap:12px; align-items:stretch;
}
@media (max-width:640px){
    .sw-grid{
        grid-template-columns: 1fr;
        gap:12px;
    }

    /* ---- smaller square photo, centered, not full width ---- */
    .sw-photo{
        max-width:160px;
        margin:0 auto 10px;
    }

    .sw-face-label{
        justify-content:center;
    }

    .sw-name{ text-align:center; }
    .sw-meta-row{ justify-content:center; gap:4px 14px; }
    .sw-thumbs{ max-width:200px; margin:0 auto 10px; }

    /* ---- gauge card: ring + hologram side by side ---- */
    .sw-gauge{
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        align-items:flex-start;
        gap:6px 16px;
        padding:14px 10px;
    }

    .sw-gauge-label{
        width:100%;
        text-align:center;
        margin-bottom:4px;
    }

    .sw-ring{
        width:100px;
        height:100px;
        margin-bottom:0;
    }
    .sw-pct{ font-size:24px; }
    .sw-status{ font-size:8px; }
    .sw-frac{ font-size:7px; }

    .sw-toggle{ display:none; } /* skip the arrow toggle, no room needed */

    .sw-hologram{
        max-width:100px;
        margin:0;
    }
    .sw-analyzing-text{
        width:100%;
        text-align:center;
        font-size:9px;
        margin-top:4px;
    }
}

/* face cards */
.sw-face{
    background:var(--charcoal-2);
    border:1px solid var(--line-darker);
    border-radius:10px; padding:12px;
    display:flex; flex-direction:column;
}
.sw-face-label{
    display:flex; align-items:center; gap:6px;
    font-family:var(--font-mono); font-size:10px; font-weight:600;
    letter-spacing:.08em; text-transform:uppercase; color:var(--cyan);
    margin-bottom:10px;
}
.sw-face-label svg{ width:13px; height:13px; flex-shrink:0; }
.sw-photo{
    position:relative; aspect-ratio:1/1; border-radius:6px; overflow:hidden;
    border:1px solid rgba(25,216,255,.35);
    box-shadow:0 0 18px -4px rgba(25,216,255,.35);
    margin-bottom:10px;
}
.sw-photo img{ width:100%; height:100%; object-fit:cover; display:block; filter:contrast(1.05) saturate(.9); }
.sw-photo .corner{ position:absolute; width:14px; height:14px; border-color:var(--cyan); opacity:.85; }
.sw-photo .tl{ top:6px; left:6px; border-top:2px solid; border-left:2px solid; }
.sw-photo .tr{ top:6px; right:6px; border-top:2px solid; border-right:2px solid; }
.sw-photo .bl{ bottom:6px; left:6px; border-bottom:2px solid; border-left:2px solid; }
.sw-photo .br{ bottom:6px; right:6px; border-bottom:2px solid; border-right:2px solid; }
.sw-photo .scanline{
    position:absolute; left:0; right:0; height:2px;
    background:linear-gradient(90deg,transparent,var(--cyan),transparent);
    box-shadow:0 0 10px 1px rgba(25,216,255,.7);
    animation:sw-scan 2.6s ease-in-out infinite;
}
@keyframes sw-scan{ 0%,100%{ top:8%; } 50%{ top:88%; } }
.sw-name{
    font-family:var(--font-display); font-weight:800; font-size:22px;
    text-transform:uppercase; line-height:1; margin-bottom:6px;
}
.sw-meta-row{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:4px 10px;
    font-family:var(--font-mono); font-size:10px; letter-spacing:.03em;
    color:var(--paper-dim); text-transform:uppercase; margin-bottom:10px;
}
.sw-meta-row b{ color:var(--paper); font-weight:600; }
.sw-meta-row .acc b{ color:var(--cyan); }
.sw-thumbs{ display:flex; gap:5px; margin-bottom:10px; }
.sw-thumb{ width:100%; aspect-ratio:1/1; border-radius:4px; overflow:hidden; border:1px solid var(--line-darker); }
.sw-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.sw-thumb-more{
    width:100%; aspect-ratio:1/1; border-radius:4px; background:rgba(25,216,255,.08);
    border:1px solid var(--line-darker); display:flex; align-items:center; justify-content:center;
    color:var(--paper-dim); font-family:var(--font-mono); font-size:12px;
}
.sw-btn{
    margin-top:auto;
    display:flex; align-items:center; justify-content:center; gap:6px;
    background:rgba(25,216,255,.07); border:1px solid rgba(25,216,255,.4);
    color:#DDE5FF; border-radius:5px; padding:9px 10px;
    font-family:var(--font-mono); font-size:10px; font-weight:600;
    letter-spacing:.05em; text-transform:uppercase;
    transition:background .15s ease, border-color .15s ease;
    cursor:pointer;
}
.sw-btn:hover{ background:rgba(25,216,255,.14); border-color:var(--cyan); }
.sw-btn svg{ width:12px; height:12px; flex-shrink:0; }

/* center gauge */
.sw-gauge{
    background:var(--charcoal-2);
    border:1px solid var(--line-darker);
    border-radius:10px; padding:14px 12px;
    display:flex; flex-direction:column; align-items:center; text-align:center;
}
.sw-gauge-label{
    font-family:var(--font-mono); font-size:10px; font-weight:600;
    letter-spacing:.08em; text-transform:uppercase; color:var(--paper-dim);
    margin-bottom:12px;
}
.sw-ring{ position:relative; width:126px; height:126px; margin-bottom:12px; }
.sw-ring svg{ width:100%; height:100%; transform:rotate(-90deg); }
.sw-ring .track{ fill:none; stroke:var(--line-dark); stroke-width:8; }
.sw-ring .progress{
    fill:none; stroke:var(--cyan); stroke-width:8; stroke-linecap:round;
    stroke-dasharray:339.3; stroke-dashoffset:339.3;
    filter:drop-shadow(0 0 6px rgba(25,216,255,.6));
    animation:sw-progress 2.2s cubic-bezier(.2,.7,.2,1) .3s forwards;
}

.sw-ring-particles{
    position:absolute; inset:-14px; z-index:0;
    animation:sw-tick-spin 9s linear infinite reverse;
}
.sw-ring-particles span{
    position:absolute; top:50%; left:50%; width:5px; height:5px;
    margin:-2.5px; border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 6px 2px rgba(25,216,255,.7);
    transform-origin:0 0;
}
.sw-ring-particles span:nth-child(1){ transform:rotate(0deg) translate(77px); }
.sw-ring-particles span:nth-child(2){ transform:rotate(45deg) translate(77px); opacity:.6; }
.sw-ring-particles span:nth-child(3){ transform:rotate(90deg) translate(77px); }
.sw-ring-particles span:nth-child(4){ transform:rotate(135deg) translate(77px); opacity:.6; }
.sw-ring-particles span:nth-child(5){ transform:rotate(180deg) translate(77px); }
.sw-ring-particles span:nth-child(6){ transform:rotate(225deg) translate(77px); opacity:.6; }
.sw-ring-particles span:nth-child(7){ transform:rotate(270deg) translate(77px); }
.sw-ring-particles span:nth-child(8){ transform:rotate(315deg) translate(77px); opacity:.6; }

.sw-ring .progress{
    filter:drop-shadow(0 0 10px rgba(25,216,255,.85)) drop-shadow(0 0 20px rgba(107,61,255,.4));
}
.sw-pct{
    text-shadow:0 0 18px rgba(107,61,255,.5);
}
.sw-status{
    text-shadow:0 0 10px rgba(25,216,255,.6);
}
@keyframes sw-progress{ to{ stroke-dashoffset:95; } }
.sw-ring-center{
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:2px;
}
.sw-status{
    font-family:var(--font-mono); font-size:9px; font-weight:600;
    letter-spacing:.1em; text-transform:uppercase; color:var(--cyan);
}
.sw-pct{
    font-family:var(--font-display); font-weight:800; font-size:32px;
    background:linear-gradient(90deg,var(--blue),var(--purple));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1;
}
.sw-frac{ font-family:var(--font-mono); font-size:8.5px; color:var(--paper-dim); letter-spacing:.03em; }
.sw-gauge-label{
    font-family:var(--font-mono); font-size:11px; font-weight:600;
    letter-spacing:.1em; text-transform:uppercase; color:var(--cyan);
    margin-bottom:14px;
}

.sw-ring .track{ stroke:rgba(25,216,255,.15); }

.sw-toggle{
    width:32px; height:32px; border-radius:50%;
    background:rgba(107,61,255,.15);
    border:1px solid rgba(107,61,255,.5);
    display:flex; align-items:center; justify-content:center;
    color:var(--purple);
    margin:2px 0 12px;
    cursor:pointer;
    transition:background .15s ease, border-color .15s ease;
}
.sw-toggle:hover{ background:rgba(107,61,255,.28); border-color:var(--purple); }
.sw-toggle svg{ width:15px; height:15px; }

.sw-hologram{
    position:relative;
    width:100%;
    max-width:180px;
    margin:0 auto 10px;
    display:flex; align-items:center; justify-content:center;
}
.sw-hologram{
    position:relative;
    width:100%;
    max-width:180px;
    margin:0 auto 10px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
}

.sw-holo-scanline{
    position:absolute; left:6%; right:6%; height:2px;
    background:linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow:0 0 10px 2px rgba(25,216,255,.8);
    animation:sw-holo-sweep 3.2s ease-in-out infinite;
}
@keyframes sw-holo-sweep{
    0%{ top:8%; opacity:0; }
    10%{ opacity:.9; }
    90%{ opacity:.9; }
    100%{ top:92%; opacity:0; }
}

.sw-hologram::after{
    content:"";
    position:absolute; inset:0; z-index:1; pointer-events:none;
    background:radial-gradient(ellipse 40% 70% at 50% 50%, rgba(255,255,255,.35), transparent 70%);
    mix-blend-mode:screen;
    animation:sw-holo-sheen 5s ease-in-out infinite;
}
.sw-holo-img{
    width:100%; height:auto; display:block;
    transform-origin:50% 55%;
    box-shadow: rgb(11 17 41) 0px 20px 30px -10px;
    animation:sw-holo-turn 5s ease-in-out infinite;
}
@keyframes sw-holo-turn{
    0%,100%{
        transform:scaleX(.8) skewY(-3deg) translateX(-6px);
        filter:brightness(.9) drop-shadow(0 0 14px rgba(25,216,255,.4));
    }
    25%{
        transform:scaleX(1) skewY(0deg) translateX(0);
        filter:brightness(1.15) drop-shadow(0 0 18px rgba(25,216,255,.55));
    }
    50%{
        transform:scaleX(.8) skewY(3deg) translateX(6px);
        filter:brightness(.9) drop-shadow(0 0 14px rgba(25,216,255,.4));
    }
    75%{
        transform:scaleX(1) skewY(0deg) translateX(0);
        filter:brightness(1.15) drop-shadow(0 0 18px rgba(25,216,255,.55));
    }
}
@keyframes sw-holo-sheen{
    0%,100%{ transform:translateX(-20px); opacity:.3; }
    25%{ transform:translateX(0); opacity:.6; }
    50%{ transform:translateX(20px); opacity:.3; }
    75%{ transform:translateX(0); opacity:.6; }
}

.sw-analyzing-text{
    font-family:var(--font-body); font-size:11.5px; font-weight:500;
    color:var(--cyan); opacity:.85;
}

/* bottom stats bar */
.sw-stats{
    display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:14px;
}
.sw-stats {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.sw-stats-fade {
  opacity: 0;
  transform: translateY(5px);
}
@media (max-width:480px){ .sw-stats{ grid-template-columns:repeat(2,1fr); } }
.sw-stat{
    background:var(--charcoal-2); border:1px solid var(--line-darker);
    border-radius:8px; padding:12px 6px; text-align:center;
    display:flex; flex-direction:column; align-items:center; gap:4px;
}
.sw-stat svg{ width:16px; height:16px; color:var(--cyan); margin-bottom:2px; }
.sw-stat b{ font-family:var(--font-display); font-weight:800; font-size:19px; line-height:1; }
.sw-stat span{ font-family:var(--font-mono); font-size:8.5px; color:var(--paper-dim); text-transform:uppercase; letter-spacing:.05em; }

.sw-face-content{
    transition: opacity .35s ease;
}
.sw-face-content.sw-fade-out{
    opacity: 0;
}


  /* ---------- section shells ---------- */
  section {
  position: relative;
  padding: 96px 0;
}

section#key-features-container {
  padding-block: 0;
}
 .on-paper{
    /* background:
        radial-gradient(
            circle at 10% 20%,
            rgba(36,107,255,.06),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(107,61,255,.06),
            transparent 32%
        ),
        var(--paper); */
    color:var(--ink);
}
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-title{
    font-family:var(--font-display); font-weight:800; text-transform:uppercase;
    font-size:clamp(32px,4vw,48px); line-height:1.02; margin-top:14px;
   
  }
  .feature-tittle{
    color: #000;
  }
  .on-paper .eyebrow{ color:var(--red-dim); }
  .section-desc{ margin-top:16px; color:var(--paper-dim); font-size:16px; max-width:56ch; }
  .on-paper .section-desc{ color:#4a473d; }
  .section-head.center .section-desc{ margin-left:auto; margin-right:auto; }

  /* Per-section text color — matched to each section's ACTUAL visual background,
     not just the .on-paper class name, since a couple of sections (features, FAQ)
     use a background-image that doesn't match their class. */
  #features .eyebrow{ color:var(--amber); }
  #features .section-desc{ color:#2a2b28; }
  #faq .section-title{ color:var(--ink); }
  #faq .eyebrow{ color:var(--red-dim); }
  #contact .section-title{ color:var(--ink); }

  /* reveal on scroll */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:none; }

#faq{
    position:relative;
    padding:96px 0 80px;

    /* background:
        radial-gradient(
            600px 380px at 90% -10%,
            rgba(36,107,255,.08),
            transparent 60%
        ),
        radial-gradient(
            560px 420px at 6% 108%,
            rgba(107,61,255,.07),
            transparent 60%
        ),
        linear-gradient(
            160deg,
            #F8FAFF 0%,
            #EEF2FA 100%
        ); */

    overflow:hidden;
}
  #faq::before{
    content:"";
    position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image:
      linear-gradient(rgba(21,18,13,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21,18,13,.045) 1px, transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image:radial-gradient(circle at 50% 20%, #000 0%, transparent 78%);
    mask-image:radial-gradient(circle at 50% 20%, #000 0%, transparent 78%);
  }
  #faq .wrap{ position:relative; z-index:1; }

  /* ---------- floating detection boxes (decorative, face-finder motif) ---------- */
  .detect-float{
    position:absolute; pointer-events:none; z-index:0;
    width:64px; height:64px; border-radius:6px;
    opacity:0; animation:detect-drift 9s ease-in-out infinite;
  }
  .detect-float .dcorner{ position:absolute; width:12px; height:12px; border-color:var(--cyan); opacity:.65; }
  .detect-float .dcorner.tl{ top:0; left:0; border-top:2px solid; border-left:2px solid; }
  .detect-float .dcorner.tr{ top:0; right:0; border-top:2px solid; border-right:2px solid; }
  .detect-float .dcorner.bl{ bottom:0; left:0; border-bottom:2px solid; border-left:2px solid; }
  .detect-float .dcorner.br{ bottom:0; right:0; border-bottom:2px solid; border-right:2px solid; }
  .detect-float .dtag{
    position:absolute; left:0; top:calc(100% + 5px);
    font-family:var(--font-mono); font-size:9px; letter-spacing:.04em;
    color:var(--cyan); white-space:nowrap; opacity:0;
  }
  .detect-float.red .dcorner{ border-color:var(--red); }
  .detect-float.red .dtag{ color:var(--red-dim); }
  .detect-float.amber .dcorner{ border-color:var(--amber); }
  .detect-float.amber .dtag{ color:var(--amber); }
  .detect-float.on-light .dtag{ color:var(--teal-dim); }
  .detect-float.on-light.red .dtag{ color:var(--red-dim); }

  @keyframes detect-drift{
    0%{ opacity:0; transform:translate(0,14px) scale(.85); }
    8%{ opacity:.85; }
    14%{ opacity:.85; }
    22%{ opacity:0; }
    100%{ opacity:0; transform:translate(0,14px) scale(.85); }
  }
  .detect-float .dtag{ animation:detect-tag 9s ease-in-out infinite; animation-delay:inherit; }
  @keyframes detect-tag{
    0%,10%{ opacity:0; }
    14%,20%{ opacity:1; }
    24%,100%{ opacity:0; }
  }
  @media (prefers-reduced-motion: reduce){
    .detect-float{ animation:none; opacity:.5; }
    .detect-float .dtag{ animation:none; opacity:1; }
  }
  @media (max-width: 600px) {
    .detect-float { display: none; }
}
/* =========================================================
   PRICING SECTION
   LIGHT / PHOTOFACEFINDER BRAND MATCHED
   ========================================================= */

#pricing {
    position: relative;
    width: 100%;
    padding: 120px 0 110px;

    overflow: hidden;

    color: var(--ink);

    /* background-image:
        url("../assets/photofacefinder/marble-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

    z-index: 0;
}


/* =========================================================
   SUBTLE GRID
   ========================================================= */

#pricing::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(36, 107, 255, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 107, 255, .035) 1px,
            transparent 1px
        );

    background-size: 44px 44px;

    mask-image:
        radial-gradient(
            circle at 50% 20%,
            #000 0%,
            transparent 82%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at 50% 20%,
            #000 0%,
            transparent 82%
        );

    z-index: 0;
}


/* =========================================================
   SOFT BRAND GLOW
   ========================================================= */

#pricing::after {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    left: 50%;
    bottom: -320px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(107, 61, 255, .08),
            transparent 70%
        );

    filter: blur(30px);

    pointer-events: none;

    z-index: 0;
}


#pricing .wrap {
    position: relative;
    z-index: 1;
}

#pricing .section-title {
    color: var(--ink);
}

#pricing .section-desc {
    color: #4a4f66;
}

#pricing .eyebrow {
    color: var(--blue-dim);
}

#pricing .eyebrow::before {
    background: var(--blue);

    box-shadow:
        0 0 0 3px rgba(36, 107, 255, .25);
}


/* =========================================================
   PRICING TABLE OUTER CARD
   ========================================================= */

.pricing-table-outer {
    position: relative;

    z-index: 2;

    background: #fdfdff;

    /* border-radius: 20px; */

    border: 1px solid var(--line-light-2);

    box-shadow:
        0 40px 90px -40px rgba(36, 107, 255, .28);

    /*
       IMPORTANT:
       Must be visible because Recommended and
       Unlimited callout extend outside the card.
    */
    overflow: visible;
}


/* =========================================================
   TABLE SCROLL
   ========================================================= */

.pricing-table-scroll {
    overflow: visible;
    border-radius: 20px;
}
@media (max-width: 900px) {
    .pricing-table-scroll {
        overflow-x: auto;
        padding-top: 26px; 
    }

    .pt-recommended {
        top: 6px;
    }
}

@media (max-width: 700px) {
    .pt-recommended {
        top: 6px; 
    }
}

/* =========================================================
   GRID
   ========================================================= */

.pt-grid {
    min-width: 680px;
}


/* =========================================================
   ROW
   ========================================================= */

.pt-row {
    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr;

    align-items: center;

    border-bottom:
        1px solid var(--line-light-2);

    position: relative;
}

.pt-row:last-child {
    border-bottom: none;
}


/* =========================================================
   CELLS
   ========================================================= */

.pt-cell {
    padding: 17px 22px;

    font-family: var(--font-body);

    font-size: 14px;

    color: #4a4f66;

    display: flex;

    align-items: center;

    gap: 9px;
}


.pt-cell.pt-label {
    font-weight: 600;

    color: var(--ink);

    display: flex;

    align-items: center;

    gap: 12px;
}


.pt-cell.pt-muted {
    color: #9a9fb2;
}


/* =========================================================
   CHECK / CROSS ICON
   ========================================================= */

.pt-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    font-size: 12px;

    font-weight: 700;

    flex-shrink: 0;
}

.pt-icon.pt-yes {
    color: var(--blue);
}

.pt-icon.pt-no {
    color: #c3c6d6;
}


/* =========================================================
   PREMIUM COLUMN
   ========================================================= */

.pt-col-premium {
    background:
        rgba(36, 107, 255, .045);

    border-left:
        1px solid rgba(36, 107, 255, .14);
}


/* =========================================================
   HEADER ROW
   ========================================================= */

.pt-row-head {
    position: relative;

    border-bottom: none;

    z-index: 3;
}


.pt-row-head .pt-cell {
    display: block;

    padding:
        26px 22px 24px;

    text-align: center;
}


.pt-row-head .pt-label {
    padding: 0;
}


/* =========================================================
   FREE SCAN HEADER
   ========================================================= */

.pt-plan-free {
    background: transparent;

    position: relative;

    z-index: 2;
}


.pt-plan-label {
    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: #9a9fb2;
}


.pt-plan-price {
    font-family: var(--font-display);

    font-weight: 800;

    font-size: 32px;

    color: var(--ink);

    margin-top: 6px;
}


.pt-plan-price span {
    font-family: var(--font-mono);

    font-size: 12px;

    font-weight: 400;

    color: #9a9fb2;
}


.pt-plan-sub {
    margin-top: 8px;

    font-family: var(--font-body);

    font-size: 12px;

    color: #9a9fb2;
}


/* =========================================================
   FREE SCAN FACE ART
   ========================================================= */

.pt-freescan-art {
    width: 40px;
    height: 40px;

    color:
        rgba(36, 107, 255, .35);
}


/* =========================================================
   PREMIUM HEADER
   INTERNAL CHEVRON / CUT
   ========================================================= */

.pt-plan-premium {
    position: relative;

    isolation: isolate;

    /*
       IMPORTANT:
       No negative margin.
       The cell stays inside the grid.
    */
    margin-left: 0;

    padding-top: 56px !important;

    padding-left: 44px !important;

    background: transparent;

    overflow: visible;

    z-index: 4;
}


/*
   Gradient shape is placed on pseudo-element.

   This allows the content and Recommended badge
   to remain outside the clipping area.
*/

.pt-plan-premium::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            var(--blue) 0%,
            var(--purple) 58%,
            var(--cyan) 100%
        );

    /*
       INTERNAL CUT

       The left point cuts INTO the Premium
       header instead of pushing it outside.
    */

    clip-path:
        polygon(
            7% 0,
            100% 0,
            100% 100%,
            7% 100%,
            0 50%
        );

    -webkit-clip-path:
        polygon(
            7% 0,
            100% 0,
            100% 100%,
            7% 100%,
            0 50%
        );

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   PREMIUM TEXT
   ========================================================= */

.pt-plan-premium .pt-plan-label,
.pt-plan-premium .pt-plan-price,
.pt-plan-premium .pt-benefit-chip {
    position: relative;

    z-index: 3;
}


.pt-plan-premium .pt-plan-label {
    color:
        rgba(255, 255, 255, .82);
}


.pt-plan-premium .pt-plan-price {
    color: #fff;
}


.pt-plan-premium .pt-plan-price span {
    color:
        rgba(255, 255, 255, .78);
}


/* =========================================================
   RECOMMENDED BADGE
   FLOATS ABOVE PREMIUM HEADER
   ========================================================= */

.pt-recommended {
    position: absolute;

    top: -17px;

    left: 50%;

    transform:
        translateX(-50%);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    background: #E2A13A;

    color: #3a2a08;

    font-family: var(--font-mono);

    font-size: 10.5px;

    font-weight: 700;

    padding: 6px 13px;

    border-radius: 20px;

    letter-spacing: .02em;

    white-space: nowrap;

    box-shadow:
        0 7px 18px
        rgba(226, 161, 58, .35),

        0 0 0 3px
        rgba(255, 255, 255, .65);

    z-index: 30;
}


/* =========================================================
   PREMIUM SCAN LINE
   ========================================================= */

.pt-plan-premium::after {
    content: "";

    position: absolute;

    left: 12%;
    right: 8%;

    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .9),
            transparent
        );

    animation:
        pt-scan 3.2s ease-in-out infinite;

    pointer-events: none;

    z-index: 5;
}


@keyframes pt-scan {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    50% {
        top: calc(100% - 2px);
        opacity: .9;
    }
}


/* =========================================================
   PREMIUM BENEFIT CHIP
   ========================================================= */

.pt-benefit-chip {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 14px;

    background:
        rgba(255, 255, 255, .16);

    border:
        1px solid
        rgba(255, 255, 255, .35);

    color: #fff;

    font-family: var(--font-mono);

    font-size: 10.5px;

    letter-spacing: .02em;

    padding: 6px 12px;

    border-radius: 20px;

    animation:
        pt-chip-bob 3s ease-in-out infinite;
}


.pt-benefit-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #19D8FF;

    box-shadow:
        0 0 0 3px
        rgba(25, 216, 255, .3);

    flex-shrink: 0;

    animation:
        blink 1.6s infinite;
}


@keyframes pt-chip-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* =========================================================
   FEATURE ROW ICONS
   ========================================================= */

.pt-row-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        rgba(36, 107, 255, .1);

    color: var(--blue);

    display: flex;

    align-items: center;
    justify-content: center;
}


.pt-row-icon svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   BUTTON FOOTER ROW
   ========================================================= */

.pt-row-foot .pt-cell {
    display: block;

    padding: 22px;
}


.pt-row-foot .pt-col-premium {
    background:
        rgba(36, 107, 255, .045);
}


/* =========================================================
   FREE BUTTON
   ========================================================= */

.pt-btn-ghost-light {
    background: #fff;

    color: var(--blue);

    border:
        1.5px solid
        var(--blue);
}


.pt-btn-ghost-light:hover {
    background:
        rgba(36, 107, 255, .06);

    border-color:
        var(--purple);

    color:
        var(--purple);
}


.pt-btn-ghost-light,
.pt-row-foot .btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}


/* =========================================================
   ROW HOVER
   ========================================================= */

.pt-row:not(.pt-row-head):not(.pt-row-foot):hover {
    background: #fafbff;
}


.pt-row:not(.pt-row-head):not(.pt-row-foot):hover
.pt-col-premium {
    background:
        rgba(36, 107, 255, .09);
}


/* =========================================================
   CORNER ART
   ========================================================= */

.pt-corner-art {
    position: absolute;

    width: 260px;
    height: 220px;

    background-image:
        url("../assets/photofacefinder/pricing-bg-new.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 1;

    pointer-events: none;

    opacity: .65;
}


/* =========================================================
   TOP-LEFT CORNER
   ========================================================= */

.pt-corner-tl {
    top: 0;
    left: 0;

    clip-path:
        polygon(
            0 0,
            100% 0,
            0 100%
        );

    -webkit-clip-path:
        polygon(
            0 0,
            100% 0,
            0 100%
        );
}


/* =========================================================
   BOTTOM-RIGHT CORNER
   ========================================================= */

.pt-corner-br {
    bottom: 0;
    right: 0;

    transform: rotate(180deg);

    clip-path:
        polygon(
            0 0,
            100% 0,
            0 100%
        );

    -webkit-clip-path:
        polygon(
            0 0,
            100% 0,
            0 100%
        );
}


/* =========================================================
   UNLIMITED CALLOUT
   FLOATING ABOVE TOP-LEFT OF TABLE
   ========================================================= */

.pt-callout {
    position: absolute;
    top: -28px;
    left: 22px;

    z-index: 50;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background:
        rgba(255, 255, 255, .97);

    border:
        1px solid
        rgba(36, 107, 255, .24);

    border-radius: 40px;

    padding:
        10px 18px
        10px 14px;

    font-family: var(--font-body);

    font-size: 12px;

    line-height: 1.25;

    color: #4a4f66;

    box-shadow:
        0 18px 34px -16px
        rgba(36, 107, 255, .32);

    animation:
        pt-callout-float 4.5s ease-in-out infinite;
}


.pt-callout b {
    display: block;

    color: var(--blue);

    font-family: var(--font-display);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .03em;
}


.pt-callout-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--blue);

    flex-shrink: 0;

    box-shadow:
        0 0 0 4px
        rgba(36, 107, 255, .14);
}


@keyframes pt-callout-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* =========================================================
   TABLE REVEAL
   ========================================================= */

.pricing-table-outer .pt-row {
    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity .5s ease,
        transform .5s ease;
}


.pricing-table-outer.in .pt-row {
    opacity: 1;

    transform: none;
}


.pricing-table-outer.in
.pt-row:nth-child(1) {
    transition-delay: 0s;
}

.pricing-table-outer.in
.pt-row:nth-child(2) {
    transition-delay: .05s;
}

.pricing-table-outer.in
.pt-row:nth-child(3) {
    transition-delay: .1s;
}

.pricing-table-outer.in
.pt-row:nth-child(4) {
    transition-delay: .15s;
}

.pricing-table-outer.in
.pt-row:nth-child(5) {
    transition-delay: .2s;
}

.pricing-table-outer.in
.pt-row:nth-child(6) {
    transition-delay: .25s;
}

.pricing-table-outer.in
.pt-row:nth-child(7) {
    transition-delay: .3s;
}

.pricing-table-outer.in
.pt-row:nth-child(8) {
    transition-delay: .35s;
}

.pricing-table-outer.in
.pt-row:nth-child(9) {
    transition-delay: .4s;
}

.pricing-table-outer.in
.pt-row:nth-child(10) {
    transition-delay: .45s;
}

.pricing-table-outer.in
.pt-row:nth-child(11) {
    transition-delay: .5s;
}

.pricing-table-outer.in
.pt-row:nth-child(12) {
    transition-delay: .55s;
}
.pt-scroll-hint {
    display: none;
    cursor: pointer; /* NEW */
}

@media (max-width: 900px) {
    .pt-scroll-hint {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px; height: 30px;
        align-items: center; justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.92);
        border: 1px solid var(--line-light-2);
        box-shadow: 0 6px 16px rgba(36,107,255,.18);
        color: var(--blue);
        z-index: 40;
        /* pointer-events: none;  <-- REMOVE this line, it was blocking clicks */
        animation: pt-hint-bob 1.6s ease-in-out infinite;
    }
    .pt-scroll-hint.left  { left: 4px; }
    .pt-scroll-hint.right { right: 4px; animation-direction: reverse; }
}


/* =========================================================
   RESPONSIVE — 1500+
   ========================================================= */

@media (min-width: 1501px) {

    .pt-callout {
        left: 22px;
    }

}


/* =========================================================
   RESPONSIVE — 900px
   ========================================================= */

@media (max-width: 900px) {

    .pt-corner-art {
        display: none;
    }

    .pt-callout {
        left: 14px;
    }

}


/* =========================================================
   RESPONSIVE — 700px
   ========================================================= */

@media (max-width: 700px) {

    .pt-cell {
        padding: 14px 16px;

        font-size: 13px;
    }

    .pt-plan-price {
        font-size: 26px;
    }

    .pt-benefit-chip {
        font-size: 9.5px;

        padding:
            5px 10px;
    }

    /*
       Remove the chevron on mobile because
       the table becomes horizontally constrained.
    */

    .pt-plan-premium {
        clip-path: none;

        margin-left: 0;

        padding-left: 22px !important;
    }

    .pt-plan-premium::before {
        clip-path: none;

        -webkit-clip-path: none;

        border-radius: 0;
    }

    .pt-recommended {
        top: -12px;

        font-size: 9px;

        padding:
            5px 10px;
    }

    .pt-row-icon {
        width: 28px;
        height: 28px;
    }

    .pt-row-icon svg {
        width: 14px;
        height: 14px;
    }

    .pt-callout {
        top: -22px;

        left: 12px;

        font-size: 11px;

        padding:
            8px 14px
            8px 11px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .pt-plan-premium::after {
        animation: none;
    }

    .pt-benefit-chip {
        animation: none;
    }

    .pt-benefit-dot {
        animation: none;
    }

    .pt-callout {
        animation: none;
    }

}

  /* ---------- testimonials ---------- */
  .testi-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
  }
  @media (max-width:600px){ .testi-grid{ grid-template-columns:1fr; } }
  .testi-card{
    background:var(--paper-dim); border-radius:4px; padding:22px 22px 18px;
    position:relative; transform:rotate(var(--r,0deg));
    box-shadow:0 18px 30px -18px rgba(0,0,0,.35);
  }
  .testi-card:nth-child(1){ --r:-1.2deg; }
  .testi-card:nth-child(2){ --r:0.8deg; }
  .testi-card:nth-child(3){ --r:-0.6deg; }
  .testi-stars{ color:var(--amber); font-size:13px; letter-spacing:2px; margin-bottom:10px; }
  .testi-quote{ color:#332f24; font-size:14.5px; margin-bottom:18px; }
  .testi-who{ display:flex; align-items:center; gap:10px; }
.testi-avatar{
  width:36px; height:36px; border-radius:50%;
  object-fit:cover; flex-shrink:0;
}
  .testi-name{ font-weight:700; font-size:14px; }
  .testi-role{ font-family:var(--font-mono); font-size:11px; color:#6b6656; }
  .testimonials-tittle{
    color: #000;
  }
  
.on-paper .testimonials-desc{
     color: #4a473d;
}

  /* ---------- FAQ ---------- */
.faq-list{
    border-top:1px solid rgba(36,107,255,.25);
}

.faq-item{
    border-bottom:1px solid rgba(36,107,255,.25);
}
  .faq-q{
    width:100%; background:none; border:none; color:#000;
    display:flex; align-items:center; gap:18px; padding:22px 4px;
    text-align:left; font-size:16px; font-weight:600;
  }
  .faq-q .fq-num{ font-family:var(--font-mono); font-size:12px; color:var(--red); flex-shrink:0; }
  .faq-q .fq-icon{
    margin-left:auto; width:22px; height:22px; position:relative; flex-shrink:0;
  }
  
  .faq-q .fq-icon::before, .faq-q .fq-icon::after{
    content:""; position:absolute;  background:var(--blue);
    top:50%; left:50%; transform:translate(-50%,-50%);
  }
  .faq-q .fq-icon::before{ width:14px; height:2px; }
  .faq-q .fq-icon::after{ width:2px; height:14px; transition:transform .2s ease; }
  .faq-item.open .fq-icon::after{ transform:translate(-50%,-50%) rotate(90deg) scale(0); }
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .faq-a p{ padding:0 4px 22px 40px; color:#4a473d; font-size:14.5px; max-width:64ch; }

 /* =========================================================
   CONTACT SECTION
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 62px;
    align-items: center;
}


/* =========================================================
   LEFT CONTACT INFORMATION
========================================================= */

.contact-info {
    max-width: 560px;
}

.contact-info .eyebrow {
    color: #5d35ff;
}

.contact-info .eyebrow::before {
    background: #5d35ff;
}

.contact-tittle {
    margin-top: 14px;
    margin-bottom: 18px;
}

.contact-info .section-desc {
    max-width: 520px;
    line-height: 1.65;
}


/* =========================================================
   CONTACT META
========================================================= */

.contact-meta {
    margin-top: 30px;
}

.contact-meta li {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 16px 0;

    border-top: 1px solid rgba(21, 27, 63, 0.12);
}

.contact-meta li:first-child {
    border-top: none;
}


/* ICON */

.cm-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #643cff;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.9),
            rgba(236,232,255,.8)
        );

    border: 1px solid rgba(104, 67, 255, .22);

    box-shadow:
        0 5px 18px rgba(83, 58, 220, .10),
        inset 0 0 10px rgba(255,255,255,.8);
}

.cm-icon svg {
    width: 20px;
    height: 20px;
}


/* TEXT */

.cm-label {
    display: block;

    font-family: var(--font-mono);

    font-size: 11px;
    letter-spacing: .1em;

    text-transform: uppercase;

    color: #5c35e8;

    margin-bottom: 5px;
}

.cm-text p {
    font-size: 15px;
    color: #20243b;
    line-height: 1.55;
}

.cm-text .cm-sub {
    margin-top: 2px;

    font-size: 13px;

    color: #676b7c;
}


/* =========================================================
   MAIN CONTACT CARD
========================================================= */

.contact-card {
    position: relative;
    color: var(--paper);

    border-radius: 18px;
    padding: 30px 28px;
    overflow: hidden;

    /* DARK NAVY CARD */
    background:
        linear-gradient(
            145deg,
            #0D1430 0%,
            #070A18 100%
        ) padding-box,

        /* GRADIENT BORDER */
        linear-gradient(
            135deg,
            #19D8FF 0%,
            #246BFF 45%,
            #7B3FFF 100%
        ) border-box;

    border: 1px solid transparent;

    box-shadow:
        0 25px 60px rgba(7, 10, 24, 0.20),
        0 0 30px rgba(36, 107, 255, 0.10);
}


/* gradient glowing outer border */

.contact-card::after {

    content: "";

    position: absolute;

    inset: -2px;

    z-index: -1;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #19d8ff,
            #4169ff 45%,
            #7c3cff 75%,
            #19d8ff
        );

    opacity: .95;
}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.card-dots {

    position: absolute;

    top: 10px;
    right: 12px;

    width: 78px;
    height: 70px;

    opacity: .5;

    background-image:
        radial-gradient(
            circle,
            rgba(92, 92, 255, .8) 2px,
            transparent 2.5px
        );

    background-size: 18px 18px;

    mask-image:
        linear-gradient(
            to bottom left,
            #000,
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   DECORATIVE STARS
========================================================= */

.card-star {

    position: absolute;

    color: #8b7cff;

    text-shadow:
        0 0 12px rgba(119, 102, 255, .9);

    pointer-events: none;
}

.star-one {
    top: 45px;
    right: 72px;
    font-size: 26px;
}

.star-two {
    top: 75px;
    right: 45px;
    font-size: 18px;
}


/* =========================================================
   CARD HEADER
========================================================= */

.contact-card-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}


/* icon */

.contact-heading-icon {

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #a083ff;

    background:
        linear-gradient(
            145deg,
            rgba(31, 45, 103, .85),
            rgba(12, 20, 55, .95)
        );

    border: 1px solid rgba(104, 87, 255, .8);

    box-shadow:
        inset 0 0 18px rgba(82, 74, 255, .15),
        0 0 18px rgba(75, 71, 255, .16);
}

.contact-heading-icon svg {
    width: 32px;
    height: 32px;
}


/* heading */

.contact-heading-text h3 {

    margin: 0;

    font-family: var(--font-mono);

    font-size: clamp(25px, 2vw, 34px);

    font-weight: 800;

    letter-spacing: -.04em;

    color: #fff;
}

.contact-heading-text h3 span {
    color: #7b61ff;
}

.contact-heading-text p {

    margin-top: 5px;

    font-size: 15px;

    color: #aeb6d1;
}


/* =========================================================
   NAME + EMAIL ROW
========================================================= */

.contact-fields-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* =========================================================
   FIELDS
========================================================= */

.contact-field {
    display: block;

    margin-bottom: 20px;
}

.contact-field > span {

    display: block;

    margin-bottom: 9px;

    font-family: var(--font-mono);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .09em;

    text-transform: uppercase;

    color: #e9edff;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.input-wrap {
    position: relative;
}

.input-wrap svg {

    position: absolute;

    left: 16px;
    top: 50%;

    width: 21px;
    height: 21px;

    transform: translateY(-50%);

    color: #775cff;

    pointer-events: none;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-card input,
.contact-card textarea {

    width: 100%;

    /* border: 1px solid rgba(126, 145, 205, .35); */

    border-radius: 9px;

      background: #111936;
    border: 1px solid rgba(120, 150, 210, 0.20);
    color: #fff;

    font-family: var(--font-body);

    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-card input {

    height: 56px;

    padding:
        0 16px 0 50px;
}

.contact-card textarea {

    min-height: 145px;

    padding: 17px 50px 17px 17px;

    resize: vertical;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {

    color: rgba(208, 217, 245, .55);
}


/* =========================================================
   FOCUS
========================================================= */

.contact-card input:focus,
.contact-card textarea:focus {

      border-color: #19D8FF;
    box-shadow:
        0 0 0 3px rgba(25, 216, 255, 0.08),
        0 0 15px rgba(25, 216, 255, 0.10);
    outline: none;
    background:
        linear-gradient(
            145deg,
            rgba(22, 42, 92, .98),
            rgba(12, 27, 65, 1)
        );

}


/* =========================================================
   TEXTAREA ICON
========================================================= */

.textarea-wrap {
    position: relative;
}

.textarea-icon {

    position: absolute;

    top: 17px;
    right: 17px;

    width: 21px;
    height: 21px;

    color: #775cff;

    pointer-events: none;
}


/* =========================================================
   SEND BUTTON
========================================================= */

.contact-send-btn {

    width: 100%;

    height: 62px;

    margin-top: 3px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 6px;

    cursor: pointer;

    font-family: var(--font-mono);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .05em;

    color: #fff;

    background: linear-gradient(135deg, var(--blue), var(--purple));

    box-shadow: 3px 3px 0 var(--cyan);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.contact-send-btn svg {

    width: 22px;
    height: 22px;
}

.contact-send-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(76, 65, 255, .35),
        3px 3px 0 #13d9ef;
}

.contact-send-btn:active {
    transform: translateY(0);
}


/* =========================================================
   DIRECT CONTACT DIVIDER
========================================================= */

.direct-contact-divider {

    display: flex;

    align-items: center;

    gap: 14px;

    margin: 27px 0 20px;
}

.direct-contact-divider span {

    height: 1px;

    flex: 1;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(154, 169, 211, .32)
        );
}

.direct-contact-divider span:last-child {

    background:
        linear-gradient(
            to left,
            transparent,
            rgba(154, 169, 211, .32)
        );
}

.direct-contact-divider p {

    flex: 0 0 auto;

    margin: 0;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .08em;

    color: #9da8c8;
}


/* =========================================================
   DIRECT CONTACT BOXES
========================================================= */

.direct-contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.direct-contact-item {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 72px;

    padding: 10px;

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 38, 82, .95),
            rgba(10, 25, 60, .95)
        );

    border: 1px solid rgba(108, 128, 194, .35);

    transition:
        border-color .25s ease,
        transform .25s ease;
}

.direct-contact-item:hover {

    transform: translateY(-2px);

    border-color: rgba(103, 91, 255, .8);
}


/* icon */

.direct-icon {

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #735cff;
}

.direct-icon svg {

    width: 23px;
    height: 23px;
}


/* text */

.direct-contact-item div:last-child {

    min-width: 0;
}

.direct-contact-item strong {

    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 11px;

    color: #fff;
}

.direct-contact-item span {

    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: #8f9abb;
}


/* =========================================================
   NOTE
========================================================= */

.contact-note {

    margin-top: 13px;

    text-align: center;

    font-family: var(--font-mono);

    font-size: 10.5px;

    color: #8994b5;

    transition: color .3s ease;
}

.contact-note.sent {
    color: #19d8ff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-grid {

        grid-template-columns:
            minmax(0, .85fr)
            minmax(0, 1.15fr);

        gap: 38px;
    }

    .contact-card {

        padding: 32px 28px;
    }

    .direct-contact-grid {

      grid-template-columns: repeat(3, 1fr);
    }

    .direct-contact-item {

        min-height: 62px;
    }
}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 860px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info {

        max-width: 100%;
    }

    .contact-card {

        padding: 30px 24px;
    }

    .direct-contact-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-grid {

        gap: 35px;
    }

    .contact-card {

        padding: 26px 18px 24px;

        border-radius: 18px;
    }

    .contact-card::after {

        border-radius: 20px;
    }


    /* header */

    .contact-card-heading {

        gap: 12px;

        margin-bottom: 25px;
    }

    .contact-heading-icon {

        width: 54px;
        height: 54px;

        flex: 0 0 54px;

        border-radius: 13px;
    }

    .contact-heading-icon svg {

        width: 27px;
        height: 27px;
    }

    .contact-heading-text h3 {

        font-size: 24px;
    }

    .contact-heading-text p {

        font-size: 13px;
    }


    /* name + email */

    .contact-fields-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    /* input */

    .contact-card input {

        height: 52px;
    }

    .contact-card textarea {

        min-height: 130px;
    }


    /* button */

    .contact-send-btn {

        height: 56px;
    }


    /* direct boxes */

    .direct-contact-grid {

        grid-template-columns: 1fr;
    }

    .direct-contact-item {

        min-height: 64px;
    }


    /* stars */

    .star-one {

        right: 35px;
        top: 38px;
    }

    .star-two {

        right: 18px;
        top: 62px;
    }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 400px) {

    .contact-card {

        padding: 24px 15px 22px;
    }

    .contact-heading-text h3 {

        font-size: 21px;
    }

    .contact-heading-text p {

        font-size: 12px;
    }

    .direct-contact-divider {

        gap: 8px;
    }

    .direct-contact-divider p {

        font-size: 8px;
    }
}

  /* ---------- CTA ---------- */
 .cta{
    /* background:
        radial-gradient(
            circle at 20% 50%,
            rgba(36,107,255,.35),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(107,61,255,.35),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #07122E,
            #11103A,
            #071A32
        ); */

    padding:88px 0;
    text-align:center;
    color:#fff;
}
  .cta .section-title{ color:#00042b; }

  .cta .eyebrow{ color: rgb(26 216 255); }
  .cta .eyebrow::before{ background:var(--ink); }
  .cta-form{
    display:flex; gap:10px; max-width:440px; margin:30px auto 12px;
    flex-wrap:wrap; justify-content:center;
  }
  .cta-input{
    flex:1; min-width:220px; padding:14px 16px; border-radius:3px; border:1px solid rgba(21,18,13,.3);
    font-family:var(--font-mono); font-size:13.5px; background:#C9D0E3;
    color:var(--ink);
  }
  .cta-input:focus-visible{ outline:2px solid var(--ink); outline-offset:2px; }
 .cta .btn-primary{
    background:linear-gradient(
        135deg,
        var(--blue),
        var(--purple)
    );

    color:#fff;

    box-shadow:
        3px 3px 0 var(--cyan);
}
  .cta-fine{ font-family:var(--font-mono); font-size:12px; color:rgba(21,18,13,.7); }
 @media (max-width:700px){ .cta-tittle br{display: none;}}

  /* ---------- footer ---------- */
footer{
     background-image:url("../assets/photofacefinder/heroblue-bg1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:100px 0 40px;
}



  .foot-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:32px;
  }
  @media (max-width:700px){
  .foot-grid{
    grid-template-columns: 1fr 1fr; 
    gap: 32px 20px;
  }
  .foot-grid > div:first-child{
    grid-column: 1 / -1; 
  }
  .cta-tittle br{ display:none; }
}
 
  .foot-desc{ color:var(--paper-dim); font-size:14px; margin-top:14px; max-width:36ch; }
  .foot-col h4{
    font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em;
    text-transform:uppercase; color:var(--paper-dim); margin-bottom:14px;
  }
  .foot-col li{ margin-bottom:10px; }
  .foot-col a{ color:var(--paper-dim); font-size:14px; }
 .foot-col a:hover{
    color:var(--cyan);
}
  .foot-bottom{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    padding-top:24px; border-top:1px solid var(--line-dark);
    font-family:var(--font-mono); font-size:11.5px; color:var(--paper-dim);
  }


  @keyframes grain{
    0%{ transform:translate(0,0); }
    33%{ transform:translate(-1.5%,1%); }
    66%{ transform:translate(1%,-1.5%); }
    100%{ transform:translate(0,0); }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  }


 

