/* ============================================================
   HUBBLE — style.css
   ============================================================ */

/* ------------------------------------------------------------
   1. ROOT VARIABLES
   ------------------------------------------------------------ */
:root {
    /* Colors */
    --color-black: #080808;
    --color-cream: #f6ffe4;
    --color-green: #aeff7c;
    --color-grey-mid: #454545;
    --color-grey-light: #e3e3e3;
    --color-dark-olive: #15140f;
    --color-red: #d90707;
    --color-green-dark: #2c5811;
    --color-green-dark2: #3ace80;
    --color-white-soft: #fafbfc;
    --color-white-off: #f7f7f7;
    --color-grey-dark: #4b4b4b;
    --color-grey-soft: #a5a5a5;

    /* Border Radius */
    --border-radius-main: 1rem;
    --border-radius-lg: 2rem;
    --border-radius-pill: 999rem;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.3s ease;
    --t-slow: 0.5s ease;
}

/* ------------------------------------------------------------
   2. GLOBAL RESET
   ------------------------------------------------------------ */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

body {
    font-size: 1.8rem;
    line-height: 1.5;
    font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
}

video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--t-fast);
}

ul,
ol {
    list-style: none;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY — Headings with clamp()
   ------------------------------------------------------------ */
h1 {
    font-size: clamp(3rem, 1.8rem + 6vw, 9rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h2 {
    font-size: clamp(3.3rem, 4.5vw, 5.6rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
}

h3 {
    font-size: clamp(2.8rem, 3vw, 3.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h4 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.3;
    letter-spacing: -0.015em;
    font-weight: 600;
}

h5 {
    font-size: clamp(1.6rem, 1.5vw, 2rem);
    line-height: 1.4;
    font-weight: 600;
}

h6 {
    font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    line-height: 1.4;
    font-weight: 600;
}

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

.eyebrow-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

/* Modifier for dark backgrounds */
.eyebrow-text--white {
    color: var(--color-white-soft);
}

/* Green underline highlight — reusable across sections */
.pill__highlight {
    position: relative;
    display: inline-block;
    isolation: isolate;
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
.navbar {
    width: 100%;
    padding: 2.4rem 4rem;
    background: transparent;
}

.navbar__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}

.navbar__logo {
    justify-self: start;
    display: inline-flex;
    align-items: center;
}

.navbar__logo-anim {
    width: auto;
    aspect-ratio: 148 / 40;
}

.navbar__logo-anim svg {
    display: block;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.navbar__nav a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-black);
}

.navbar__nav a:hover {
    color: var(--color-green-dark2);
}

.navbar__cta {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.navbar__button {
    background: var(--color-black);
    color: var(--color-white-soft);
    padding: 1.4rem 2.2rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
        background var(--t-fast),
        color var(--t-fast);
}

.navbar__button:hover {
    background: var(--color-green-dark2);
    color: var(--color-black);
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
    position: relative;
    padding: 4rem 4rem 0;
    overflow: hidden;
    min-height: 100rem;
}

.hero__container {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.6rem;
    background: var(--color-cream);
    border: 1px solid rgba(94, 142, 62, 0.15);
    border-radius: var(--border-radius-pill);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.4rem;
}

.hero__pill img {
    width: 1.8rem;
    height: 2rem;
    flex-shrink: 0;
}

.hero h1 {
    color: var(--color-black);
    font-size: clamp(3rem, 1.8rem + 6vw, 6.8rem);
    max-width: 900px;
    margin: 0 auto 2.4rem;
}

.hero__subtitle {
    max-width: 56rem;
    margin: 0 auto 3.2rem;
    color: var(--color-grey-mid);
    font-size: 1.7rem;
    line-height: 1.5;
}

.hero__checks {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.hero__checks li {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
}

.hero__checks img {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
}

.hero__signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.4rem;
    background: var(--color-green-dark2);
    color: var(--color-black);
    padding: 1.4rem 4rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background var(--t-base),
        color var(--t-base);
}

.hero__signup-btn:hover {
    background: var(--color-black);
    color: var(--color-white-soft);
}

.stop__signup-btn:hover {
    background: var(--color-white-soft);
    color: var(--color-black);
}

.hero__social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    font-size: 1.5rem;
    color: var(--color-grey-mid);
}

.hero__social-proof strong {
    color: var(--color-black);
    font-weight: 700;
}

.hero__avatars {
    height: 3.2rem;
    width: auto;
    display: block;
}

/* ------------------------------------------------------------
   HERO — Background decoration (radial glow + brand boxes)
   ------------------------------------------------------------ */
.hero__radial {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60rem;
    max-width: 80vw;
    z-index: 1;
    pointer-events: none;
}

.hero__radial img {
    width: 100%;
}

.hero__brand {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero__brand img {
    width: 100%;
    border-radius: var(--border-radius-main);
}

.hero__brand--shopify {
    left: -3rem;
    top: 32rem;
}

.hero__brand--tiktok {
    left: 10%;
    top: 42rem;
}

.hero__brand--meta {
    left: 22%;
    top: 52rem;
}

.hero__brand--reddit {
    left: 34%;
    top: 62rem;
}

.hero__brand--verve {
    right: 34%;
    top: 62rem;
}

.hero__brand--summer {
    right: 22%;
    top: 52rem;
}

.hero__brand--ouai {
    right: 10%;
    top: 42rem;
}

.hero__brand--whoop {
    right: -3rem;
    top: 32rem;
}

/* ------------------------------------------------------------
   REALITY — "Most Shopify brands lose..." section
   ------------------------------------------------------------ */
.reality {
    /* 4 carduri × 100vh scroll fiecare + 100vh pentru padding intrare/ieșire */
    height: 500vh;
    position: relative;
}

.reality__pin-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.reality__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10rem;
    align-items: center;
    width: 100%;
}

.reality__title {
    margin-bottom: 3.2rem;
}

.highlight__underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: -1;
}

.reality__body {
    color: var(--color-grey-mid);
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 40rem;
}

/* Right — scroll-driven cards */
.reality__right {
    position: relative;
}

.reality__color-blob {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.reality__cards-wrap {
    position: relative;
    z-index: 1;
    height: 46rem;
    overflow: hidden;
    padding: 0 2rem;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

/* Vertical list — slides up/down so the active card sits centered in the window */
.reality__cards-track {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    transition: transform 0.4s ease;
}

.reality__card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2.4rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    width: 100%;
    opacity: 0.35;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.reality__card--active {
    opacity: 1;
    pointer-events: auto;
}

.reality__card-icon {
    width: 2.8rem;
    height: auto;
    margin-bottom: 1.6rem;
}

.reality__card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.reality__card-body {
    font-size: 1.8rem;
    color: var(--color-grey-mid);
    line-height: 1.5;
}

/* ------------------------------------------------------------
   BRANDS — Logo carousel (Swiper marquee)
   ------------------------------------------------------------ */
.brands {
    padding: 8rem 0 0;
    position: relative;
    overflow: hidden;
}

.brands__heading {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 5rem;
    padding: 0 4rem;
}

.brands__carousel {
    position: relative;
}

/* Fade gradients on left/right — make edge logos fade into background */
.brands__carousel::before,
.brands__carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 2;
    pointer-events: none;
}

.brands__carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands__carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Swiper marquee — continuous linear scroll */
.brands__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brands__swiper .swiper-slide {
    width: auto;
    height: 4rem;
    margin-right: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands__swiper .swiper-slide img {
    height: auto;
    max-height: 100%;
    width: auto;
    user-select: none;
    pointer-events: none;
}

/* ============================================================
   MEET HUBBLE
   ============================================================ */

.meet-hubble {
    background-color: #080808;
    padding: 12rem 0 0;
    overflow: hidden;
    text-align: center;
}

.meet-hubble__title {
    color: var(--color-white-soft);
    max-width: 88rem;
    margin: 0 auto 8rem;
    line-height: 1.1;
}

.meet-hubble__showcase {
    width: 100%;
    margin-bottom: 5rem;
    overflow: hidden;
}

.meet-hubble__swiper {
    width: 100%;
}

.meet-hubble__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.meet-hubble__slide {
    width: 20rem;
    pointer-events: none;
}

.meet-hubble__slide img {
    width: 20rem;
    height: 40rem;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
}

.meet-hubble__desc {
    font-size: 1.7rem;
    color: rgba(250, 251, 252, 0.55);
    line-height: 1.65;
}

/* ============================================================
   SETUP
   ============================================================ */

.setup {
    position: relative;
    padding: 12rem 0;
    background-color: var(--color-black);
    background-image: url("../images/setup-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Header — centered */
.setup__header {
    text-align: center;
    max-width: 68rem;
    margin: 0 auto 6rem;
}

.setup__title {
    color: var(--color-white-soft);
    line-height: 1.1;
    margin: 1.6rem 0 2.4rem;
}

.setup__intro {
    font-size: 1.7rem;
    color: rgba(250, 251, 252, 0.65);
    line-height: 1.65;
}

/* Demo — steps left, swappable image right */
.setup__demo {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.setup__steps {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.setup__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    text-align: left;
    padding: 0 0 0 1.6rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    background: none;
}

.setup__step-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(250, 251, 252, 0.3);
    letter-spacing: 0.01em;
}

.setup__step-title {
    font-size: 2rem;
    font-weight: 500;
    color: rgba(250, 251, 252, 0.35);
    line-height: 1.3;
    transition: color var(--t-fast);
}

.setup__step-desc {
    display: none;
    font-size: 1.8rem;
    color: rgba(250, 251, 252, 0.55);
    line-height: 1.3;
}

.setup__step--active {
    border-left-color: var(--color-green);
}

.setup__step--active .setup__step-num {
    color: var(--color-green);
}

.setup__step--active .setup__step-title {
    color: var(--color-white-soft);
    font-weight: 700;
}

.setup__step--active .setup__step-desc {
    display: block;
}

.setup__demo-image {
    position: relative;
    aspect-ratio: 736 / 480;
}

.setup__demo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.setup__demo-img--active {
    opacity: 1;
}

/* Disclaimer */
.setup__disclaimer {
    font-size: 1.4rem;
    color: rgba(250, 251, 252, 0.4);
    line-height: 1.65;
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.setup__disclaimer strong {
    font-weight: 700;
    color: rgba(250, 251, 252, 0.6);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
    padding: 12rem 0 0;
    overflow: hidden;
}

.how-it-works__header {
    text-align: center;
    max-width: 76rem;
    margin: 0 auto 3rem;
}

.how-it-works__header .eyebrow-text {
    color: var(--color-grey-mid);
}

.how-it-works__title {
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 2.4rem;
}

.how-it-works__desc {
    font-size: 1.7rem;
    color: var(--color-grey-mid);
    line-height: 1.7;
}

/* Full-width diagram image */
.how-it-works__visual {
    margin-bottom: 5rem;
}

.how-it-works__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

/* Stage cards */
.how-it-works__stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.how-it-works__stage {
    border: 1px solid var(--color-grey-light);
    border-radius: var(--border-radius-lg);
    padding: 2.4rem;
}

.how-it-works__stage-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.how-it-works__stage-label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

.how-it-works__stage-num {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--color-green);
    padding: 0.3rem 0.9rem;
    border-radius: var(--border-radius-pill);
    line-height: 1;
    color: var(--color-black);
}

.how-it-works__stage-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.how-it-works__stage-desc {
    font-size: 1.8rem;
    color: var(--color-grey-mid);
    line-height: 1.5;
}

/* ============================================================
   HUBBLE ENGINE
   ============================================================ */

.engine {
    padding: 12rem 0;
}

.engine__header {
    text-align: center;
    max-width: 76rem;
    margin: 0 auto 8rem;
}

.engine__title {
    line-height: 1.1;
    margin-bottom: 2.4rem;
}

.engine__desc {
    font-size: 1.7rem;
    color: var(--color-grey-mid);
    line-height: 1.65;
}

/* Engine box — each engine row */
.engine__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    background-image: url("../images/engine-bg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 1.6rem;
    padding: 8rem;
    margin-bottom: 2.4rem;
    /* Stacking-cards scroll effect (desktop/tablet only — see @media 1024px override) */
    position: sticky;
    top: 4rem;
}

.engine__box:last-child {
    margin-bottom: 0;
}

/* Left col */
.engine__box-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.engine__label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: var(--color-green-dark2);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    line-height: 1;
}

.engine__label-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.engine__box-title {
    color: var(--color-white-soft);
    margin-bottom: 1.6rem;
}

.engine__box-desc {
    color: #a5a5a5;
    margin-bottom: 3.2rem;
}

.engine__list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.engine__list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    color: rgba(250, 251, 252, 0.7);
    line-height: 1.5;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.engine__list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.engine__list li img {
    flex-shrink: 0;
    margin-top: 0.6rem;
}

.engine__list li strong {
    color: var(--color-white-soft);
    font-weight: 600;
}

/* Right col — demo image */
.engine__box-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.engine__demo-img {
    width: 100%;
    max-width: 44rem;
    height: auto;
    display: block;
}

/* ============================================================
   OUTPUT
   ============================================================ */

.output {
    background-color: #fafbfc;
    padding: 12rem 0;
}

.output__header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 7rem;
}

.output__header .eyebrow-text {
    color: var(--color-grey-mid);
}

.output__title {
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 2.4rem;
}

.output__desc {
    font-size: 1.6rem;
    color: var(--color-grey-mid);
    line-height: 1.7;
}

/* 3-col ad cards grid */
.output__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.output__card {
    background: #fff;
    border: 1px solid var(--color-grey-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 1.6rem;
}

.output__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--color-grey-light);
}

.output__card-avatar {
    flex-shrink: 0;
}

.output__card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.output__card-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
}

.output__card-verified {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
}

.output__card-sponsored {
    font-size: 1.4rem;
    color: var(--color-grey-mid);
}

.output__card-dots {
    font-size: 1.8rem;
    color: var(--color-grey-mid);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.output__card-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   HUBBLE COMPARES
   ============================================================ */

.compares {
    padding: 12rem 0;
    background-color: #fff;
}

.compares__header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 6rem;
}

.compares__header .eyebrow-text {
    color: var(--color-grey-mid);
}

.compares__title {
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.compares__desc {
    font-size: 1.6rem;
    color: var(--color-grey-mid);
    line-height: 1.65;
}

/* Animation — replaces the old comparison tables */
.compares__animation {
    width: 100%;
    max-width: 128rem;
    aspect-ratio: 1280 / 700;
    margin: 0 auto;
    border-radius: 2.4rem;
    overflow: hidden;
}

.compares__animation svg {
    display: block;
}

/* ============================================================
   METHOD
   ============================================================ */

.method {
    position: relative;
    padding: 12rem 0;
    background-image: url("../images/method-bg.jpg");
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

/* Header — 2 col */
.method__header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 8rem;
}

.method__title {
    color: var(--color-white-soft);
    line-height: 1.1;
    margin-top: 2rem;
}

.method__intro {
    font-size: 1.7rem;
    color: var(--color-grey-soft);
    line-height: 1.65;
    margin-bottom: 2.4rem;
}

.method__cta-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white-soft);
    line-height: 1.6;
}

/* Stats grid — 4 col */
.method__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.method__stat {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
}

.method__stat-eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-grey-soft);
    margin-bottom: 8rem;
}

.method__stat-value {
    font-size: clamp(5rem, 3vw + 2rem, 7.2rem);
    font-weight: 700;
    color: var(--color-green-dark2);
    line-height: 1;
    margin-bottom: 4rem;
}

.method__stat-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white-soft);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.method__stat-desc {
    color: var(--color-grey-soft);
    line-height: 1.55;
}

.method-img {
    width: 100%;
    margin-top: 6rem;
}

.method__showcase {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    /* Mirrors .container's centering (max-width: 1300px, padding: 0 4rem) so the
       ad-group cards line up with method__stats above at any viewport width. */
    padding-left: calc((100% - min(100%, 1300px)) / 2 + -17rem);
}

.method__ad-group-wrap {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-right: -8rem;
    background: #020101;
    pointer-events: none;
    padding-right: 5rem;
    max-width: 50%;
    width: 100%;
}

.method__ad-group-border {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    pointer-events: none;
}

.method__ad-group-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 14rem;
    background: linear-gradient(to right, var(--color-black) -30%, rgba(8, 8, 8, 0) 50%);
    pointer-events: none;
}

.method__ad-group {
    display: block;
    width: 100%;
    height: auto;
}

.method__carousel {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.method__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.method__slide {
    width: 20rem;
    pointer-events: none;
}

.method__slide img {
    width: 20rem;
    height: 40rem;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   WHO IS FOR
   ============================================================ */
.who-is-for {
    padding: 12rem 0;
    background-color: var(--color-white-off);
}

.who-is-for__header {
    text-align: center;
    max-width: 72rem;
    margin: 0 auto 8rem;
}

.who-is-for__title {
    margin-bottom: 2.4rem;
}

.who-is-for__subtitle {
    color: var(--color-grey-mid);
}

.who-is-for__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.who-is-for__card {
    background-color: var(--color-white-soft);
    border: 1px solid var(--color-grey-light);
    border-radius: var(--border-radius-lg);
    padding: 3.2rem;
}

.who-is-for__card h3 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.who-is-for__card-tag {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 6rem;
}

.who-is-for__tag-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-green-dark2);
    color: var(--color-black);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    padding: 0.4rem 1rem;
    min-width: 3.6rem;
}

.who-is-for__tag-label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

.who-is-for__card-desc {
    color: var(--color-grey-mid);
    margin: 2rem 0 0;
}

.who-is-for__list {
    display: flex;
    flex-direction: column;
    margin-top: 3.2rem;
}

.who-is-for__item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.who-is-for__item:last-child {
    border-bottom: none;
}

.who-is-for__check {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.who-is-for__item span {
    color: var(--color-grey-dark);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: 12rem 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing__header {
    max-width: 72rem;
    margin: 0 auto 8rem;
}

.pricing__title {
    color: var(--color-white-soft);
    margin-bottom: 2.4rem;
    line-height: 1.1;
}

.pricing__subtitle {
    color: var(--color-grey-soft);
    max-width: 60rem;
    margin: 0 auto;
}

.pricing__plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
    text-align: left;
}

.pricing__plan {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 3.2rem;
}

.pricing__plan--featured {
    border-color: var(--color-green-dark2);
}

.pricing__plan-badge {
    position: absolute;
    top: -1.3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-green-dark2);
    color: var(--color-black);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-radius: var(--border-radius-pill);
    white-space: nowrap;
}

.pricing__plan-top {
    margin-bottom: 2.4rem;
}

.pricing__plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white-soft);
    margin-bottom: 1.2rem;
}

.pricing__plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 2.4rem;
}

.pricing__plan-amount {
    font-size: clamp(3rem, 3vw, 3.6rem);
    font-weight: 700;
    color: var(--color-white-soft);
    line-height: 1;
}

.pricing__plan-period {
    font-size: 1.5rem;
    color: var(--color-grey-soft);
}

.pricing__plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-white-soft);
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.4rem;
    border-radius: var(--border-radius-lg);
    transition: background var(--t-fast);
}

.pricing__plan-btn--filled {
    background-color: var(--color-green-dark2);
    color: var(--color-black);
}

.pricing__plan-btn:hover {
    background-color: var(--color-green-dark2);
}

.pricing__plan-btn--filled:hover {
    background-color: var(--color-white-soft);
}

.pricing__plan-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}

.pricing__plan-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing__plan-list li span {
    color: var(--color-grey-soft);
}

.pricing__plan-list li strong {
    color: var(--color-white-soft);
    font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 12rem 0;
    background-color: var(--color-white-off);
}

.faq__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 8rem;
    align-items: start;
}

.faq__title {
    margin-top: 0;
    line-height: 1.15;
}

.faq__right {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.faq__item {
    border-bottom: 1px solid var(--color-grey-light);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.4rem 3.2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
}

.faq__question span:first-child {
    color: var(--color-black);
}

/* + / - icon via CSS */
.faq__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background-color: var(--color-black);
    border-radius: 2px;
    transition:
        transform var(--t-slow),
        opacity var(--t-slow);
}

/* horizontal bar */
.faq__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* vertical bar */
.faq__icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* when open: vertical bar collapses → shows minus */
.faq__item--open .faq__icon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

/* answer panel */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--t-slow);
}

.faq__item--open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__answer p {
    margin: 0;
    padding: 0 3.2rem 2.4rem;
    color: var(--color-grey-mid);
}

/* ============================================================
   STOP / FOOTER CTA
   ============================================================ */
.stop {
    padding: 12rem 0 9rem;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stop__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.stop .container {
    position: relative;
    z-index: 1;
}

.stop__content {
    position: relative;
    z-index: 1;
}

.stop__title {
    font-size: clamp(5rem, 6vw, 9rem);
    color: var(--color-white-soft);
    line-height: 1.1;
    margin-bottom: 2.4rem;
}

.stop__subtitle {
    color: var(--color-grey-soft);
    margin-bottom: 3.2rem;
}

.stop__checks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
    flex-wrap: wrap;
}

.stop__check-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white-soft);
    font-size: 1.4rem;
    font-weight: 500;
}

.stop__check-item img {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.stop__swiper-wrap {
    width: 100%;
    margin-top: 6rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stop__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.stop__slide {
    width: 20rem;
    pointer-events: none;
}

.stop__slide img {
    width: 20rem;
    height: 40rem;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.2rem 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
}

.footer__logo img {
    display: block;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.footer__nav a {
    color: var(--color-grey-soft);
    font-size: 1.6rem;
    transition: color var(--t-fast);
}

.footer__nav a:hover {
    color: var(--color-white-soft);
}

.footer__copy {
    color: var(--color-grey-soft);
    font-size: 1.4rem;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1440px) {
    .hero__brand {
        width: 13rem;
    }
}

@media (max-width: 1366px) {
}

@media (max-width: 1180px) {
    .hero {
        min-height: 100rem;
    }

    .hero__social-proof {
        gap: 1rem;
        flex-direction: column;
    }

    .setup__demo {
        gap: 3.2rem;
    }

    .how-it-works__stages {
        grid-template-columns: repeat(2, 1fr);
    }

    .engine__box {
        gap: 4rem;
        padding: 4rem;
    }

    .method__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* faq */
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero__brand {
        width: 10rem;
    }

    /* navbar — reduce spacing so links don't get cramped */
    .navbar__inner {
        gap: 2rem;
    }

    .navbar__nav {
        gap: 2.4rem;
    }

    .navbar__nav a {
        font-size: 1.4rem;
    }

    .navbar__button {
        font-size: 1.4rem;
        padding: 1.2rem 1.8rem;
    }

    .meet-hubble {
        padding: 9rem 0 0;
    }

    .setup {
        padding: 9rem 0;
    }

    .setup__header {
        margin-bottom: 3rem;
    }

    .setup__demo {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }

    .setup__demo-image {
        order: -1;
    }

    .how-it-works {
        padding: 9rem 0 0;
    }

    .engine {
        padding: 9rem 0;
    }

    .engine__box {
        grid-template-columns: 1fr;
        gap: 4rem;
        /* Below 1024px, drop the sticky stacking effect — boxes just flow normally */
        position: static;
        top: auto;
    }

    .engine__header {
        margin: 0 auto 3rem;
    }

    .engine__box-right {
        justify-content: center;
    }

    /* compares */

    .compares {
        padding: 9rem 0;
    }

    .compares__header {
        margin: 0 auto 3rem;
    }

    .method__header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .output {
        padding: 9rem 0;
    }

    .output__header {
        margin: 0 auto 3rem;
    }

    .method {
        padding: 9rem 0;
    }

    .method__header {
        margin-bottom: 3rem;
    }

    .who-is-for {
        padding: 9rem 0;
    }

    .who-is-for__header {
        margin: 0 auto 3rem;
    }

    .who-is-for__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing {
        padding: 9rem 0;
    }

    .pricing__plans {
        grid-template-columns: 1fr;
        max-width: 44rem;
        margin: 0 auto;
    }

    .faq {
        padding: 9rem 0;
    }

    .stop {
        padding: 9rem 0 6rem;
    }
}

@media (max-width: 932px) {
    /* hide all brand boxes from this breakpoint down */
    .hero__brand {
        display: none;
    }

    .hero {
        min-height: 85rem;
    }

    /* navbar — hide nav links entirely (would need hamburger; for now just hide) */
    .navbar__nav {
        display: none;
    }

    .navbar__inner {
        grid-template-columns: auto 1fr;
    }

    .navbar__cta {
        gap: 1.6rem;
    }

    /* method */
    .method__showcase {
        flex-direction: column;
        padding-left: 0;
    }

    .method__ad-group-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .method__ad-group-wrap::after {
        display: none;
    }

    .method__carousel {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 767px) {
    br {
        display: none;
    }

    /* stop */
    .stop__checks {
        gap: 2rem;
    }
    .stop__swiper-wrap {
        margin-top: 4rem;
    }

    /* footer */
    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.6rem 2.4rem;
    }

    /* faq */
    .faq__question {
        padding: 2rem 2.4rem;
    }
    .faq__answer p {
        padding: 0 2.4rem 2rem;
    }

    /* hide radial too — without other decorations it clashes with content */
    .hero__radial {
        display: none;
    }

    /* reduce hero min-height */
    .hero {
        min-height: auto;
        padding: 3rem 2rem 4rem;
    }

    /* navbar — smaller paddings */
    .navbar {
        padding: 2rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .hero__checks {
        gap: 1.6rem 2.4rem;
    }

    /* brands — reduce padding on mobile */
    .brands {
        padding: 6rem 0 4rem;
    }

    .brands__heading {
        margin-bottom: 4rem;
    }

    /* meet hubble */

    .meet-hubble__title {
        margin-bottom: 5rem;
    }

    .meet-hubble__showcase {
        margin-bottom: 5rem;
    }

    /* setup */

    .setup__steps {
        gap: 2rem;
    }

    /* how it works */

    .how-it-works__stages {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .how-it-works__desc br {
        display: none;
    }

    /* engine */
    .engine__box {
        padding: 3rem 2.4rem;
        margin-bottom: 1.6rem;
    }

    .engine__demo-img {
        max-width: 100%;
    }

    /* output */
    .output__cards {
        grid-template-columns: 1fr;
        max-width: 44rem;
        margin: 0 auto;
    }

    .output__desc br {
        display: none;
    }

    /* method */

    .method__stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 479px) {
    /* stop */
    .stop {
        padding: 6rem 0 4rem;
    }
    .stop__checks {
        gap: 1.2rem;
    }
    .stop__title .highlight__underline {
        display: none;
    }

    /* output */
    .output__title .highlight__underline {
        display: none;
    }

    /* method */
    .method__ad-group-wrap {
        display: none;
    }

    /* navbar — minimal padding */
    .navbar {
        padding: 1.6rem;
    }

    .navbar__button {
        font-size: 1.3rem;
        padding: 1rem 1.4rem;
    }

    /* hero — minimal paddings */
    .hero {
        padding: 2rem 1.6rem 4rem;
    }

    .hero__pill {
        font-size: 1.3rem;
        padding: 0.6rem 1.4rem;
    }

    .hero__subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.4rem;
    }

    /* signup button — full width on mobile */
    .hero__signup-btn {
        width: 100%;
        padding: 1.4rem;
    }

    /* social proof — stack vertically */
    .hero__social-proof {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.3rem;
        text-align: center;
    }

    /* checks — smaller gap, allow wrap */
    .hero__checks {
        gap: 1.2rem 2rem;
    }

    .hero__checks li {
        font-size: 1.4rem;
    }

    /* brands — even smaller paddings on small mobile */
    .brands {
        padding: 4rem 0 3rem;
    }

    .brands__heading {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        padding: 0 2rem;
    }

    .reality {
        padding: 6rem 0;
        height: auto;
    }

    .reality__pin-wrap {
        position: relative;
        height: auto;
        display: block;
        padding: 0;
    }

    .reality__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .reality__cards-wrap {
        height: auto;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
        padding: 0;
    }

    .reality__cards-track {
        gap: 1.6rem;
        transform: none !important;
    }

    .reality__card,
    .reality__card--active {
        opacity: 1;
        pointer-events: auto;
    }

    .meet-hubble {
        padding: 6rem 0 0;
    }

    .meet-hubble__desc {
        font-size: 1.5rem;
    }

    /* setup */

    .setup {
        padding: 6rem 0;
    }

    /* how it works */

    .how-it-works {
        padding: 6rem 0 0;
    }

    .how-it-works__stages {
        grid-template-columns: 1fr;
    }

    /* compares — mobile Lottie has a different (portrait) aspect ratio */
    .compares__animation {
        aspect-ratio: 750 / 1644;
    }

    /* engine */
    .engine {
        padding: 6rem 0;
    }

    .engine__box {
        padding: 2.4rem 2rem;
    }

    /* output */
    .output {
        padding: 6rem 0;
    }

    .output__cards {
        max-width: 100%;
    }

    /* who is for — 479px */
    .who-is-for {
        padding: 6rem 0;
    }
    .who-is-for__card {
        padding: 2.4rem 2rem;
    }

    /* pricing — 479px */
    .pricing {
        padding: 6rem 0;
    }
    .pricing__plan {
        padding: 2.4rem 2rem;
    }

    /* compares — 479px */
    .compares {
        padding: 6rem 0;
    }

    .method__stats {
        grid-template-columns: 1fr;
    }

    .method__stat-eyebrow {
        margin-bottom: 3rem;
    }

    .who-is-for__cards {
        grid-template-columns: 1fr;
    }

    .who-is-for__card-tag {
        margin-bottom: 3rem;
    }

    .faq {
        padding: 6rem 0;
    }
}
