:root {
    --bg: #06120D;
    --bg-soft: #53ce99;
    --ink: #EAF4EE;
    --ink-soft: rgba(234, 244, 238, 0.66);
    --ink-softer: rgba(234, 244, 238, 0.5);
    --ink-faint: rgba(234, 244, 238, 0.42);
    --line: rgba(165, 223, 195, 0.14);
    --line-strong: rgba(165, 223, 195, 0.24);
     /* HULU */
    /* --accent: #5de672;  */
    --accent: #39d651;
    --dark-accent: #156b33;
    --secondary: rgb(225, 195, 24);
    /* --secondary: rgb(0, 174, 232); */
    --dark-secondary:orange;


}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}

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

html {
    scroll-behavior: smooth;
}

#pageWrap {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

body {
    /* font-family: "Helvetica Neue", Helvetica, Arial, -apple-system, sans-serif; */
    /* font-family: "Zalando Sans SemiExpanded","Helvetica Neue", Helvetica, Arial, -apple-system, sans-serif; */
    /* font-family: "Nunito Sans","Helvetica Neue", Helvetica, Arial, -apple-system, sans-serif; */
    font-family: "HelveticaNowProDisplayRegular", sans-serif;
    color: var(--ink);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 100;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 12px;
    z-index: 1000;
    background: var(--accent);
    color: var(--bg);
    font-family: "HelveticaNowProDisplayMedium", sans-serif;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 12px;
}

h1,
h2,
h3 {
    font-family: "HelveticaNowProDisplayLight", sans-serif;
    font-weight: 100;
    letter-spacing: 0em;
}

h2 {
    font-size: clamp(35px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 22px;
}
.accent {
    color: var(--accent);
    font-weight: 900;
    font-family: "HelveticaNowProDisplayBold", sans-serif;
}
strong {
    font-family: "HelveticaNowProDisplayBold", sans-serif;
    font-weight: 900;
    color: white;
}

#what-we-do,
#how-we-do-it,
#pricing,
#faq,
#contact-form {
    scroll-margin-top: 92px;
}

.px {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0f1513eb;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex;
    align-items: center;
    color: var(--ink);
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.logo .mktg {
    font-weight: 600;
    opacity: 0.55;
    margin-left: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 34px;
    font-size: 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta .short-label {
    display: none;
}

@media (max-width: 860px) {
    nav {
        padding: 16px 22px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(8, 26, 18, 0.97);
        backdrop-filter: blur(10px);
        padding: 6px 22px 22px;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-cta {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    .nav-cta .full-label {
        display: none;
    }

    .nav-cta .short-label {
        display: inline;
    }
}

.btn-primary {
    background: var(--dark-accent);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    gap: 8px;
    transition: color 0.3s ease 0s, padding 0.3s ease 0s, background 0.3s ease 0s;
    font-weight: 700;
    position: relative;
    box-sizing: border-box;
    border-radius: 2px 2px 15px 2px;
    corner-shape: round round bevel round; 
    /* Define the size of your chamfer */
    --chamfer: 15px; 
    /* Creates points clockwise from top-left to cut only the bottom-right */
    clip-path: polygon(
        0% 0%,                           /* Top-left */
        100% 0%,                         /* Top-right */
        100% calc(100% - var(--chamfer)),/* Start of chamfer on right edge */
        calc(100% - var(--chamfer)) 100%,/* End of chamfer on bottom edge */
        0% 100%                          /* Bottom-left */
    );
}


/* Left Bracket */
/* .btn-primary::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -1px;
  width: 4px;     
  height: 100%;     
  border-left: 1px solid var(--accent); 
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  border-radius: 4px 0px 0px 4px;
} */

/* Right Bracket */
/* .btn-primary::after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 4px;
  height: 100%;
  border-right: 1px solid var(--accent);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  border-radius: 0px 4px 4px 0px;
} */

.btn-primary:hover {
    color: var(--bg);
    padding: 10px 45px;
    background: var(--accent);
}

.eyebrow {
    align-self: flex-start;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    padding: 3px 20px; /* Space inside the brackets */

}
/* Left Bracket */
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;      /* Width of the bracket line */
  height: 100%;     /* Match element height */
  border-left: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  border-radius: 4px 0px 0px 4px;
}

/* Right Bracket */
.eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-right: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  border-radius: 0px 4px 4px 0px;
}

.bracket-icon{
    color: var(--secondary);
    position: absolute;
    left: -12px;
    margin-top:2px;
    padding:0px 6px;
}

/* Left Bracket */
.bracket-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;      /* Width of the bracket line */
  height: 100%;     /* Match element height */
  border-left: 1px solid var(--secondary); /* Color of the bracket line */
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  border-radius: 4px 0px 0px 4px;
}

/* Right Bracket */
.bracket-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-right: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  border-radius: 0px 4px 4px 0px;
}



/* HERO */
.hero {
    padding: clamp(60px, 9vh, 110px) 20% clamp(70px, 10vh, 120px) 20%;
    margin: 0 auto;
    background-image: url('images/swoosh.jpg');
    background-size: cover;
    background-origin: border-box;
    background-position: 30%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;

}

@media (width <= 768px){
    .hero {
        padding: 50px 32px 80px 32px !important;
        background-image: url('images/swoosh-sm.jpg');
        background-position: 60% 8%;
        /* background-position-y: 100px; */
    }

    .hero .btn-primary {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.hero h1 {
    font-size: clamp(42px, 6.2vw, 84px);
    line-height: 1.02;
    margin-bottom: 22px;
    max-width: 14ch;
}

.hero h1 .line1 {
    white-space: nowrap;
    display: block;
}

.hero h1 .accent {
    display: block;
    margin-top: 6px;s
    font-size: 1.06em;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 32px;
}

.cta-br {
    display: none;
}

@media (max-width: 600px) {
    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero h1 .line1 {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .cta-br {
        display: inline;
    }
}

/* LOGO WALL / MARQUEE */
.logo-wall {
    background: rgb(26, 26, 26);
    padding: 30px 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.logo-wall .label {
    font-size: 12px;
    font-family: "HelveticaNowProDisplayLightItalic", sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 22px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 120s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.logo-row {
    display: flex;
    gap: 56px;
    font-size: 20px;
    color: var(--accent);
    opacity: 1;
    padding-right: 56px;
    white-space: nowrap;
    font-family: "HelveticaNowProDisplayLight", sans-serif;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes vglow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .8;
    }

    100% {
        transform: translate(-4%, 3%) scale(1.12);
        opacity: 1;
    }
}

.bg-wash {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:black;
    background:
        radial-gradient(46% 38% at 18% 12%, rgba(165, 223, 195, 0.05), transparent 62%),
        radial-gradient(50% 44% at 88% 80%, rgba(62, 128, 109, 0.10), transparent 60%),
        var(--bg);
}

.vglow {
    position: fixed;
    width: 120vw;
    height: 180vw;
    max-width: 820px;
    max-height: 820px;
    right: -10%;
    top: -8%;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
    background: radial-gradient(circle, rgba(165, 223, 195, 0.1), rgba(165, 223, 195, 0.05) 44%, transparent 70%);
    animation: vglow 16s cubic-bezier(.22, 1, .36, 1) infinite alternate;
}

.logo-wall .sub {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 200;
    color: white;
    padding: 0 40px;
}

/* WHAT WE DO + THE PROBLEM (shared two-col layout) */
.split {
    padding: clamp(70px, 11vh, 130px) 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1240px;
    margin: 0 auto;
}

#what-we-do-wrap {
    /* background: radial-gradient(120% 120% at 80% 0%, rgba(165, 223, 195, 0.10), transparent 55%), var(--accent); */
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split>div:first-child p {
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 420px;
    line-height: 1.6;
}

.split-footer {
    margin-top: 34px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--accent);
}

.no-wrap-line {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .no-wrap-line {
        white-space: normal;
    }
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 0px solid var(--line);
    padding: 30px 40px;
    margin-bottom: 10px;
    border-radius: 2px 2px 40px 2px;
    corner-shape: round round bevel round; 
    /* Define the size of your chamfer */
    --chamfer: 40px; 
    /* Creates points clockwise from top-left to cut only the bottom-right */
    clip-path: polygon(
        -20% 0%,                           /* Top-left */
        100% 0%,                         /* Top-right */
        100% calc(100% - var(--chamfer)),/* Start of chamfer on right edge */
        calc(100% - var(--chamfer)) 100%,/* End of chamfer on bottom edge */
        0% 100%                          /* Bottom-left */
    );
    
}
@media (width <= 768px) {
    .card{
        margin-left:15px;
    }
}

.card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--ink);
}

.card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        padding: 56px 22px;
        gap: 36px;
    }
}

/* HOW WE DO IT */
.process {
    /* background: radial-gradient(120% 120% at 80% 0%, rgba(165, 223, 195, 0.10), transparent 55%), var(--accent); */
    padding: clamp(40px, 11vh, 80px) 40px;
}


.process .cap-list,
.process .cap-item {
    border-color: rgba(255, 255, 255, 0.16);
}

.process-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.process .eyebrow{
    /* align-self: center; */
}

.process .scoreboard {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 700;
    font-family: "HelveticaNowProDisplayBold", sans-serif;
    line-height: 1.2;
    max-width: 42ch;
    background: var(--accent);
    padding:20px 40px;
    color: black;
    border-radius: 2px 2px 40px 2px;
    corner-shape: round round bevel round; 
    /* Define the size of your chamfer */
    --chamfer: 40px; 
    /* Creates points clockwise from top-left to cut only the bottom-right */
    clip-path: polygon(
        -20% 0%,                           /* Top-left */
        100% 0%,                         /* Top-right */
        100% calc(100% - var(--chamfer)),/* Start of chamfer on right edge */
        calc(100% - var(--chamfer)) 100%,/* End of chamfer on bottom edge */
        0% 100%                          /* Bottom-left */
    );
  
}

.why-cols {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.why-card {
    display: flex;
    flex: 1 1 370px;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 0px;
    padding: 65px 48px;
    box-sizing: border-box;
    border-radius: 2px;
    corner-shape: round round bevel round; 
    
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.1);
    background: rgba(186, 186, 186, 0.16);
    transition: border-radius 0.3s ease 0s, background 0.3s ease 0s;
    cursor: pointer;
    text-decoration: none;
}

.why-card:hover{
    border-radius: 2px 2px 40px 2px;
    background: rgba(186, 186, 186, 0.3);
    
    /* Define the size of your chamfer */
    --chamfer: 40px; 
    /* Creates points clockwise from top-left to cut only the bottom-right */
    clip-path: polygon(
        0% 0%,                           /* Top-left */
        100% 0%,                         /* Top-right */
        100% calc(100% - var(--chamfer)),/* Start of chamfer on right edge */
        calc(100% - var(--chamfer)) 100%,/* End of chamfer on bottom edge */
        0% 100%                          /* Bottom-left */
    );
}

.why-card h3 {
    font-size: clamp(30px, 3vw, 30px);
    line-height: 1.25;
    margin-bottom: 14px;
}
.why-card h3 strong{
    color: var(--accent);
}

@media (max-width: 480px) {
    .why-card h3 {
        white-space: normal;
    }
}

.why-card.with-you h3,
.why-card.with-you p {
    color: var(--ink);
}

.why-card.with-you p {
    color: var(--ink-soft);
}

.why-card.for-you h3,
.why-card.for-you p {
    color: #F4FAF6;
}

.why-card.for-you p {
    color: rgba(244, 250, 246, 0.84);
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
}

@media (width < 1070px) {
    .why-cols {
        /* grid-template-columns: 1fr; */
    }
}

.cap-list {
    border-top: 1px solid var(--line);
    margin-top: 48px;
}

.cap-item {
    border-bottom: 1px solid var(--line);
}

.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    cursor: pointer;
    user-select: none;
}

.cap-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cap-num {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--accent);
    min-width: 26px;
}

.cap-title {
    font-size: 21px;
    transition: color 0.15s;
}

.cap-header:hover .cap-title {
    color: var(--accent);
}

.cap-toggle {
    font-size: 22px;
    color: var(--ink-faint);
    transition: transform 0.25s ease;
    line-height: 1;
}

.cap-item.open .cap-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.cap-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 0 0 50px;
}

.cap-item.open .cap-body {
    max-height: 200px;
    padding: 0 0 26px 50px;
}

.cap-body p {
    font-size: 15.5px;
    color: var(--ink-soft);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .process {
        padding: 56px 22px;
    }

    .cap-body {
        padding-left: 0;
    }

    .cap-item.open .cap-body {
        padding-left: 0;
    }
}

/* START HERE / FRICTION SCAN */
.centered-block {
    padding: 40px 60px 80px 60px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eyebrow.centered {
    font-size: 17px;
    margin-bottom: 28px;
    align-self: center;
}


.centered-block h2 {
    /* font-size: clamp(34px, 4.4vw, 54px); */
    margin-bottom: 22px;
}

.centered-block p {
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.centered-block .what-next {
    margin-bottom: 30px;
}

.centered-block .btn-primary {
    font-size: 18px;
    padding: 18px 36px;
    margin: 20px 10px 10px 40px;
    align-self: center;
}

/* FAQ */
.faq {
    padding: clamp(70px, 11vh, 130px) 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    text-align: center;
    margin-bottom: 46px;
}

.faq-item {
    border-top: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.15s;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
    text-align: left;
}

.faq-q:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(165, 223, 195, 0.85);
    transition: transform 0.25s ease, background 0.2s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #07241A;
    border-radius: 1px;
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-q:hover .faq-toggle {
    background: var(--accent);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    padding-bottom: 24px;
    max-width: 640px;
}

/* CONTACT / BIG CTA */
.big-cta {
    /* background: radial-gradient(120% 120% at 80% 0%, rgba(165, 223, 195, 0.10), transparent 55%), var(--accent); */
    padding: 0 40px;
    border-top: 1px solid var(--line);
}

.big-cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
@media (width > 768px){
    .big-cta-inner{
        gap: 64px;
    }
}

.big-cta h2 {
    font-size: clamp(32px, 4.2vw, 48px);
    margin-bottom: 22px;
    color: var(--accent);
}
@media (width > 768px){
    .big-cta .left{
        margin-top: 80px;
    }
}


.big-cta-list {
    list-style: none;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
}

.big-cta-list li {
    font-size: 15px;
    color: var(--ink-soft);
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.big-cta-list li:first-child {
    border-top: none;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    border: 0px solid var(--line-strong);
    border-radius: 0px 0px 20px 20px;
    padding: 34px 34px 34px 34px;
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
@media (width > 768px){
    .cta-form{
        padding: 80px 34px 34px 34px;
    }
}

.cta-form label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-softer);
    display: block;
    margin-bottom: 7px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 13px 14px;
    color: var(--ink);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.cta-form input::placeholder {
    color: var(--ink-faint);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.28);
}

.cta-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 16px;
    font-size: 15.5px;
}

.cta-form .microcopy {
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-softer);
    margin-top: 16px;
}

.cta-form .lead-error {
    text-align: center;
    font-size: 13px;
    color: #ff8a80;
    margin-top: 12px;
}

@media (max-width: 860px) {
    .big-cta-inner {
        grid-template-columns: 1fr;
    }

    .big-cta {
        padding: 56px 22px;
    }
}

/* FOOTER */
.site-footer {
    background: #050E0A;
    padding: 56px 40px 32px;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
}

.footer-wordmark {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.02em;
}
.footer-wordmark img{
    height: 30px;
    width: auto;
}

.footer-wordmark span {
    color: var(--accent);
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer-brand p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 320px;
    margin-top: 12px;
}

.linkedin-follow {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.linkedin-follow:hover {
    color: var(--ink);
}

.linkedin-follow svg {
    width: 17px;
    height: 17px;
    fill: var(--accent);
}

.footer-col h3 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-softer);
    margin-bottom: 14px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

nav.footer-col[aria-label="Get Started"] {
    justify-content: center;
}

.footer-col a {
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1240px;
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-softer);
}

@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* SCROLL NUDGE */
.scroll-bar {
    position: fixed;
    /* width: 90%; */
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 20px);
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0e2a1fe1;
    border: 0px solid var(--line-strong);
    border-radius: 20px 20px 0px 0px;
    padding: 20px 10px 20px 25px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    
}


.scroll-bar.visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.scroll-bar .msg {
    font-size: 14px;
    color: var(--ink-soft);
    flex: 1;
    min-width:250px;
}

.scroll-bar .msg b {
    color: var(--ink);
}

.scroll-bar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: center;
}

.scroll-bar .btn-primary {
    padding: 10px 18px;
    font-size: 13.5px;
    align-self: center;
    width: 230px;
}

.close-x {
    background: none;
    border: none;
    color: var(--ink-faint);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
}

.close-x:hover {
    color: var(--ink);
}

@media (max-width: 640px) {
    .scroll-bar .btn-primary {
        width: 230px;
    }

    .scroll-bar.visible {
        /* transform: translate(0, 0); */
    }

    .msg {
        display: none;
    }
}