/* ============================================================
   V2.1 — Figma redesign (node 214:33387)
   Section styles for the rebuilt landing page.
   ============================================================ */

/* ── Page ────────────────────────────────────────────────── */
html {
    overflow-x: hidden;
}

body.page-wrapper {
    background: #f8f6f1;
    overflow-x: clip;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav .nav-svg {
    color: #090909;
}

.nav_link-plain {
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 1.125rem;
    line-height: 1.29;
    color: #090909;
    padding: 0.625rem 1.33rem;
    border-radius: 24px;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.nav_link-plain:hover {
    opacity: 0.7;
}

.nav_cta---lavender {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 1.125rem;
    line-height: 1.29;
    color: #090909;
    background: var(--color-purple-light);
    border-radius: 40px;
    padding: 0.6875rem 1.5rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.nav_cta---lavender:hover {
    background: var(--color-purple-hover);
}

/* ── Hero ────────────────────────────────────────────────── */
.v2hero {
    padding: 5.1rem 3rem 0;
}

.v2hero_panel {
    position: relative;
    max-width: 84rem;
    /* 1344px */
    margin: 0 auto;
    height: 28.25rem;
    /* 452px */
    border-radius: 24px;
    background-color: var(--color-terracotta-light);
    overflow: hidden;
}


.v2hero_panel-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4.125rem;
    text-align: center;
}

.v2hero_backed {
    height: 18.5px;
    margin-bottom: 0.35rem;
}

.v2hero_heading {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 6rem;
    /* 96px */
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin: 0;
}

.v2hero_more {
    font-family: var(--font-marker);
    font-size: 6.39rem;
    /* 102px */
    line-height: 0.62;
    letter-spacing: 0.02em;
    color: var(--color-green);
    margin: 0 -0.3rem;
    transform: translateY(calc(0.85rem - 20px));
    white-space: nowrap;
}

.v2hero_sub {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-white);
    margin: 1.2rem 0 0;
}

.v2hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    height: 3.4375rem;
    /* 55px */
    padding: 0 1.65rem;
    margin-top: 1.75rem;
    border-radius: 55px;
    background: var(--color-purple-light);
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 1.125rem;
    color: #050505;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.v2hero_btn:hover {
    background: var(--color-purple-hover);
}

.v2hero_btn img {
    width: 19px;
    height: 19px;
}

.v2hero_status {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 21.7rem;
    /* 347px */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.v2hero_status-scan {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.v2hero_status-dot {
    width: 8.4px;
    height: 8.4px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 4px rgba(159, 255, 108, 0.25);
    animation: v2hero-dot-pulse 2s ease-out infinite;
}

@keyframes v2hero-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(159, 255, 108, 0.5);
    }

    60% {
        box-shadow: 0 0 0 7px rgba(159, 255, 108, 0.15);
    }

    100% {
        box-shadow: 0 0 0 9px rgba(159, 255, 108, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2hero_status-dot {
        animation: none;
    }
}

.v2hero_status-label {
    font-family: var(--font-sans);
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--color-white);
}

.v2hero_status-arrow {
    width: 13px;
    height: 13px;
}

.v2hero_status-count {
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 1.55;
    color: var(--color-white);
}

.v2hero_status-count strong {
    font-weight: var(--weight-bold);
}

/* stat-card row overlapping the panel bottom edge */
.v2hero_cards-clip {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -2.8rem;
    /* cards start 45px above panel bottom */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 3.5rem;
    /* room for the drop shadow */
}

.v2hero_cards-clip::-webkit-scrollbar {
    display: none;
}

.v2hero_cards {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0 1.5rem;
}

.v2card {
    flex: 0 0 auto;
    width: 28.0625rem;
    /* 449px */
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    filter: drop-shadow(0px 30px 25px rgba(17, 27, 39, 0.15));
}

.v2card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2card_grade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24.5px;
    height: 24.5px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 16.5px;
}

.v2card_grade---green {
    background: var(--color-green);
    color: #050505;
}

.v2card_grade---indigo {
    background: #7981cf;
    color: var(--color-white);
}

.v2card_grade---teal {
    background: #71bebf;
    color: var(--color-white);
}

.v2card_value {
    font-family: var(--font-sans);
    font-weight: var(--weight-bold);
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    line-height: 1.55;
    color: #111b27;
}

.v2card_name {
    font-family: var(--font-sans);
    font-weight: var(--weight-semibold);
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #1a1917;
    margin: 0.25rem 0 0.5rem;
}

.v2card_tags {
    display: flex;
    gap: 6px;
}

.v2card_tag {
    display: inline-flex;
    align-items: center;
    height: 23px;
    padding: 0 6.5px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.55);
}

.v2card_due {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

/* ticker */
.v2ticker {
    padding: 3.7rem 0 0;
    text-align: center;
}

.v2ticker_label {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #090909;
    margin-bottom: 2.1rem;
}

.v2ticker_logos {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    max-width: 74.875rem;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.v2ticker_track {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: max-content;
}

.v2ticker_logos::-webkit-scrollbar {
    display: none;
}

.v2ticker_logo {
    height: 38.4px;
    width: auto;
    flex: 0 0 auto;
    filter: brightness(0);
    opacity: 0.75;
}

.v2ticker_logo.smaller {
    height: 24px;
}

/* ── Feature rows ─────────────────────────────────────────── */
.v2features {
    padding: 6rem 3rem 0;
}

.v2feature {
    display: grid;
    grid-template-columns: 29.3rem 1fr;
    gap: 5.7rem;
    align-items: center;
    max-width: 60rem;
    margin: 0 auto 6rem;
}

.v2feature---flip {
    grid-template-columns: 1fr 29.3rem;
}

.v2feature---flip .v2feature_visual {
    order: 2;
}

.v2feature---flip .v2feature_text {
    order: 1;
}

.v2feature_text {
    max-width: 19.5rem;
}

.v2feature_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.25rem;
    /* 36px */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    margin: 0 0 1rem;
}

.v2feature_sub {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #090909;
    margin: 0 0 2rem;
}

.v2btn_arrow {
    width: 19px;
    height: 19px;
}

.v2feature_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    height: 3.0625rem;
    /* 49px */
    padding: 0 1.6rem;
    border-radius: 43px;
    background: var(--color-purple-light);
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 1.125rem;
    color: #090909;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.v2feature_btn:hover {
    background: var(--color-purple-hover);
}

.v2feature_visual {
    position: relative;
    width: 29.3rem;
    /* 469px */
    height: 25.875rem;
    /* 414px */
    background: var(--color-terracotta-light);
    border-radius: 12px;
    overflow: hidden;
}

.v2feature_squiggle {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 67.6%;
    pointer-events: none;
}

.v2feature_squiggle---flip {
    transform: scaleX(-1);
}

.v2feature_inset {
    position: absolute;
    inset: 1.65rem 1.75rem;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
}

/* feature 1 — chips */
.v2f1_pill {
    position: absolute;
    top: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    height: 38px;
    padding: 0 0.9rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 16.7px;
    letter-spacing: -0.04em;
    color: #1a1917;
    white-space: nowrap;
}

.v2f1_pill strong {
    font-weight: var(--weight-semibold);
}

.v2f1_stars {
    position: relative;
    width: 25px;
    height: 25px;
}

.v2f1_stars img {
    position: absolute;
    inset: 3.5px;
    width: 18px;
    height: 18px;
}

.v2f1_stars img:first-child {
    transform: rotate(-45deg);
}

.v2f1_stars img:last-child {
    transform: rotate(145deg);
}

.v2f1_glow {
    position: absolute;
    left: 12%;
    top: 30%;
    width: 45%;
    height: 45%;
    background: radial-gradient(closest-side, rgba(121, 129, 207, 0.35), rgba(202, 189, 255, 0));
    filter: blur(6px);
    pointer-events: none;
}

.v2f1_line {
    position: absolute;
    left: 50%;
    top: 3.9rem;
    bottom: 2.6rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(121, 129, 207, 0), #7981cf 12%, #7981cf 88%, rgba(121, 129, 207, 0));
    z-index: 1;
}

.v2f1_rows {
    position: absolute;
    inset: 6rem 0 3.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.v2f1_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.v2f1_chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6.7px;
    padding: 6.7px;
    border-radius: 835px;
    background: rgba(202, 189, 255, 0.18);
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 11.7px;
    letter-spacing: -0.01em;
    color: #1a1917;
}

.v2f1_chip-grade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: var(--weight-medium);
}

.v2f1_chip-grade---green {
    background: var(--color-green);
    color: #365220;
}

.v2f1_chip-grade---indigo {
    background: #7981cf;
    color: var(--color-white);
}

.v2f1_scramble {
    flex: 0 0 auto;
    height: 33px;
    border-radius: 835px;
    background-color: rgba(26, 25, 23, 0.045);
    position: relative;
}

.v2f1_scramble::after {
    content: "";
    position: absolute;
    inset: 10px 12px;
    background-image: radial-gradient(rgba(70, 70, 70, 0.55) 0.75px, transparent 0.85px);
    background-size: 4.5px 4.4px;
}

.v2f1_spinner {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 2;
    width: 37.5px;
    height: 37.5px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 0 18px rgba(121, 129, 207, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2f1_spinner svg {
    width: 22.5px;
    height: 22.5px;
    color: #0b0b0b;
}

/* feature 2 — network image */
.v2feature_visual---image {
    background: none;
    border-radius: 0;
    overflow: visible;
    height: auto;
}

.v2f2_full {
    display: block;
    width: 100%;
    height: auto;
}

/* feature 3 — map */
.v2f3_full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.v2f3_map {
    position: absolute;
    inset: 3.15% 2% 2.05% 2.15%;
    border-radius: 4px;
    overflow: hidden;
}

.v2f3_map>img {
    position: absolute;
    width: 134.11%;
    max-width: none;
    height: 122.98%;
    left: -18.23%;
    top: -6.01%;
}

.v2f3_map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04);
}

.v2f3_marker {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* translucent halo that scales with the marker */
.v2f3_marker::before {
    content: "";
    position: absolute;
    inset: -32%;
    border-radius: 50%;
    z-index: -1;
}

.v2f3_marker---green {
    background: #4cbe44;
}

.v2f3_marker---green::before {
    background: rgba(101, 214, 74, 0.4);
}

.v2f3_marker---indigo {
    background: #7981cf;
}

.v2f3_marker---indigo::before {
    background: rgba(121, 129, 207, 0.4);
}

.v2f3_minicard {
    position: absolute;
    z-index: 3;
    width: 12.155rem;
    /* 194.5px */
    background: var(--color-white);
    border-radius: 7.4px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    filter: drop-shadow(0px 18.5px 15.4px rgba(17, 27, 39, 0.15));
}

.v2f3_minicard .v2card_grade {
    width: 15px;
    height: 15px;
    font-size: 10.2px;
    border-radius: 2px;
}

.v2f3_minicard .v2card_value {
    font-size: 13.6px;
    line-height: 1.55;
}

.v2f3_minicard .v2card_name {
    font-size: 9.9px;
    margin: 2px 0 4px;
}

.v2f3_minicard .v2card_due {
    font-size: 6.8px;
}

/* ── Press (As seen on) ──────────────────────────────────── */
.v2press-setup-bg {
    background: linear-gradient(to bottom, var(--color-white) 8%, rgba(255, 255, 255, 0));
}

.v2press {
    position: relative;
    padding: 3.4rem 3rem 6rem;
}

.v2press_label {
    display: block;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #7a756b;
    margin-bottom: 1.6rem;
}

.v2press_track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.08rem;
    /* 49.3px */
    flex-wrap: wrap;
}

/* duplicate logo sets exist only for the mobile marquee */
.v2press_track .v2press_dup {
    display: none;
}

.v2press_track img {
    flex: 0 0 auto;
}

.v2press_logos .dimmed {
    opacity: 0.8;
}

.v2press_logos .mono {
    filter: grayscale(1) brightness(0.45);
    opacity: 0.85;
}

/* ── Setup stats (Set up once) ───────────────────────────── */
.v2setup {
    max-width: 84rem;
    margin: 0 auto;
    padding: 4.9rem 0.6rem 5rem;
    border-top: 1px solid rgba(11, 11, 11, 0.12);
    display: grid;
    grid-template-columns: minmax(0, 30.5rem) 1fr;
    gap: 5rem;
    align-items: start;
}

.v2setup_wrap {
    padding: 0 3.9rem;
}

.v2setup_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.5rem;
    /* 40px */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    margin: 0 0 1.5rem;
    padding-left: 0.25rem;
}

.v2setup_sub {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #090909;
    margin: 0;
    max-width: 28.1rem;
    padding-left: 0.25rem;
}

.v2setup_stats {
    display: flex;
    gap: 5.2rem;
    padding-top: 2.4rem;
}

.v2setup_num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    /* 56px */
    line-height: 0.72;
    letter-spacing: -0.04em;
    color: #1a1917;
    margin: 0 0 1.15rem;
    white-space: nowrap;
}

.v2setup_desc {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.2;
    color: var(--color-gray-dark);
    margin: 0;
    max-width: 11.5rem;
}

/* ── Network graph (v2 tweaks on existing section) ───────── */
.network-graph_canvas-wrap {
    background: #eee9df;
    border-radius: 16px;
    max-width: 80.75rem;
    /* 1292px */
    margin: 0 auto;
    overflow: hidden;
}

.network-graph_legend-item---pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 100px;
    background: #dfd6c3;
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    font-size: 12.7px;
    line-height: 1.54;
}

.network-graph_legend-square {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    flex: 0 0 auto;
}

/* ── Integrations (v2 tweaks) ─────────────────────────────── */
.v2integrations {
    position: relative;
    padding: 5rem 3rem 4.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 8%, var(--color-white));
}

.v2integrations_inner {
    max-width: 80.75rem;
    margin: 0 auto;
    padding: 0 4.85rem;
}

.v2integrations_squiggle {
    position: absolute;
    left: -3.5rem;
    bottom: -3rem;
    width: 22.6rem;
    /* 362px */
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.v2integrations_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.875rem;
    /* 46px */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    margin: 0 0 3.4rem;
}

.v2integrations_logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
}

.v2integrations_card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.5rem;
    /* 104px */
    padding: 1.9rem 2.8rem;
    background: #eee9df;
    border-radius: 20px;
}

.v2integrations_card img {
    height: 42px;
    width: auto;
}

.v2integrations_card img.mono {
    filter: grayscale(1) brightness(0.72) contrast(1.15);
}

.v2integrations_wordmark {
    margin-left: 0.7rem;
    font-family: var(--font-sans);
    font-weight: var(--weight-semibold);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #14120f;
    white-space: nowrap;
}

.v2integrations_more {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #0b0b0b;
    margin: 0;
}

/* ── News (In the press) ──────────────────────────────────── */
.v2news {
    padding: 4rem 3rem;
}

.v2news_inner {
    display: flex;
    align-items: stretch;
    gap: 3.2rem;
    max-width: 81.2rem;
    /* 1299px */
    margin: 0 auto;
}

.v2news_featured {
    flex: 1.6;
    display: flex;
    gap: 2.25rem;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.v2news_featured:hover,
.v2news_side:hover {
    opacity: 0.75;
}

.v2news_photo {
    width: 20rem;
    /* 320px */
    height: 16.3rem;
    /* 261px */
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
}

.v2news_featured-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.v2news_headline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.375rem;
    /* 22px */
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #0b0b0b;
    margin: 0 0 1rem;
}

.v2news_desc {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #3c3634;
    opacity: 0.8;
    margin: 0;
}

.v2news_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.25rem;
}

.v2news_logo {
    width: auto;
}

.v2news_logo.mono {
    filter: grayscale(1) brightness(0.45);
    opacity: 0.85;
}

.v2news_arrow {
    width: 19px;
    height: 19px;
}

.v2news_divider {
    flex: 0 0 1px;
    background: #dcd7cb;
}

.v2news_side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.v2news_side .v2news_headline {
    margin-bottom: 0;
}

.v2news_side .v2news_meta {
    margin-top: 1.5rem;
    padding-top: 0;
}

/* ── Testimonials (v2 tweaks) ─────────────────────────────── */
.v2testimonials {
    padding: 4.5rem 3rem 3rem;
}

.v2testimonials_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.875rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    text-align: center;
    margin: 0 0 5.2rem;
}

.v2testimonials_swiper {
    max-width: 83.5rem;
    margin: 0 auto;
    overflow: hidden;
}

.v2testimonials_card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 4px;
    height: 100%;
    min-height: 17.6rem;
    /* 281px */
    padding: 2rem 2.4rem 2rem 2rem;
    overflow: hidden;
}

.v2testimonials_swiper .swiper-slide {
    height: auto;
}

.v2testimonials_quote {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 16.2px;
    line-height: 27.2px;
    color: #0b0b0b;
    margin: 0;
}

.v2testimonials_attr {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 1.75rem;
    z-index: 1;
}

.v2testimonials_logos {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.8rem;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.v2testimonials_logos:hover {
    opacity: 0.7;
}

.v2testimonials_logos img {
    height: 22px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
}

.v2testimonials_role {
    font-family: var(--font-sans);
    font-weight: var(--weight-semibold);
    font-size: 1.125rem;
    line-height: 22.5px;
    color: #0b0b0b;
}

.v2testimonials_company {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 21px;
    color: var(--color-gray-dark);
    margin-top: 3px;
}

.v2testimonials_marks {
    position: absolute;
    right: 1.25rem;
    top: 8.4rem;
    width: 141px;
    height: 107px;
    pointer-events: none;
}

.v2testimonials_nav {
    display: flex;
    justify-content: center;
    gap: 2.75rem;
    margin-top: 3.4rem;
}

.v2testimonials_nav button {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.85;
}

.v2testimonials_nav button:hover {
    opacity: 1;
}

.v2testimonials_nav img {
    width: 16px;
    height: 14px;
    display: block;
}

/* ── Team (Built by ex-Googlers) ─────────────────────────── */
.v2team {
    position: relative;
    padding: 8.4rem 3rem 5rem;
}

.v2team_card {
    position: relative;
    max-width: 66.98rem;
    /* 1071.7px */
    margin: 0 auto;
    min-height: 20rem;
    /* 320px */
    padding: 3.4rem 0 3rem 3.5rem;
    border-radius: 12px;
    background-color: rgba(238, 233, 223, 0.8);
}

.v2team_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    margin: 0;
    white-space: nowrap;
}

.v2team_body {
    margin-top: 1.5rem;
    width: 22.9rem;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #090909;
    margin: 0;
}

.v2team_photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 41.7rem;
    /* 667px */
    pointer-events: none;
}

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

/* ── Latest from Cascade ─────────────────────────────────── */
.v2latest {
    padding: 4.6rem 3rem 3.5rem;
}

.v2latest_inner {
    max-width: 83.5rem;
    /* 1336px */
    margin: 0 auto;
}

.v2latest_heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.875rem;
    /* 62px */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1917;
    text-align: center;
    margin: 0 0 3.4rem;
}

.v2latest_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    /* 24px */
}

.v2latest_card {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 1.25rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(11, 11, 11, 0.12);
    border-radius: 18px 18px 0 0;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.v2latest_card:hover {
    opacity: 0.75;
}

.v2latest_tag {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.072em;
    text-transform: uppercase;
    color: #cd6f4e;
}

.v2latest_title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.4;
    letter-spacing: -0.033em;
    color: #0b0b0b;
    margin: 0.55rem 0 0.95rem;
}

.v2latest_desc {
    font-family: var(--font-sans);
    font-size: 14.5px;
    line-height: 24px;
    color: #3c3634;
    opacity: 0.8;
    margin: 0 0 1.25rem;
}

.v2latest_more-wrap {
    text-align: center;
    margin-top: 3rem;
}

.v2latest_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2rem;
    border-radius: 1440px;
    background: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #0b0b0b;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.v2latest_more:hover {
    background: var(--color-purple-light);
}

/* ── CTA (v2 tweaks) ──────────────────────────────────────── */
.v2cta {
    position: relative;
    padding: 5rem 3.45rem 8rem;
}

.v2cta_card {
    position: relative;
    max-width: 82rem;
    /* 1312px */
    margin: 0 auto;
    height: 26.7rem;
    /* 427px */
    border-radius: 16px;
    background: var(--color-terracotta-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.v2cta_heading {
    position: relative;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.5rem;
    /* 56px */
    line-height: 1.2;
    color: var(--color-white);
    margin: 4rem 0 0;
    z-index: 2;
}

.v2cta_marks {
    position: absolute;
    right: -3.4rem;
    bottom: 0.25rem;
    width: 32px;
    height: 44.5px;
}

.v2cta_text {
    position: relative;
    font-family: var(--font-sans);
    font-size: 17.9px;
    line-height: 27px;
    letter-spacing: -0.015em;
    color: #f3efe6;
    margin: 1.9rem 0 0;
    z-index: 2;
}

.v2cta_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    height: 3.4375rem;
    padding: 0 1.75rem;
    margin-top: 2.1rem;
    border-radius: 1440px;
    background: var(--color-purple-light);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #0b0b0b;
    text-decoration: none;
    z-index: 2;
    transition: background var(--transition-fast);
}

.v2cta_btn:hover {
    background: var(--color-purple-hover);
}

.v2cta_line {
    position: absolute;
    left: 22.2%;
    top: 36.2%;
    width: 169px;
    height: 193px;
    z-index: 1;
}

.v2cta_brush {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.v2cta_brush---tl1 {
    left: -9%;
    top: -19%;
    width: 28%;
    transform: rotate(17.28deg);
}

.v2cta_brush---tl2 {
    left: -7%;
    top: -4%;
    width: 26%;
    transform: rotate(177.87deg);
}

.v2cta_brush---br1 {
    right: -5%;
    bottom: -10%;
    width: 25%;
    transform: rotate(17.28deg);
}

.v2cta_brush---br2 {
    right: -11%;
    bottom: -11%;
    width: 28%;
    transform: rotate(177.87deg);
}

/* ── Footer (v2) ─────────────────────────────────────────── */
.v2footer {
    padding: 1.5rem 4.5rem 3rem;
}

.v2footer_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2footer_copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    line-height: 24px;
    color: var(--color-gray-dark);
}

.v2footer_legal {
    display: flex;
    gap: 1.5rem;
}

.v2footer_legal a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 24px;
    color: var(--color-gray-dark);
    text-decoration: none;
}

.v2footer_legal a:hover {
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
    .v2hero_cards {
        flex-wrap: nowrap;
        padding: 0 1.5rem 2rem;
    }

    .v2feature,
    .v2feature---flip {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 29.3rem;
    }

    .v2feature---flip .v2feature_visual {
        order: 1;
    }

    .v2feature---flip .v2feature_text {
        order: 2;
    }

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

    .v2integrations_squiggle {
        display: none;
    }
}

/* burger hidden on desktop */
.nav_burger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #090909;
    cursor: pointer;
    line-height: 0;
}

.nav_mobile-menu {
    display: none;
}

.v2features_mobile-cta {
    display: none;
}

/* ── Mobile (Figma node 239:319, 390px frame) ────────────── */
@media (max-width: 767px) {

    /* nav: logo + hamburger */
    .nav_inner {
        padding: 1rem 1.25rem;
    }

    .nav .nav_buttons-wrapper {
        display: none;
    }

    .nav_burger {
        display: block;
    }

    .nav_mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 1.25rem 1.25rem;
        background: rgba(248, 246, 241, 0.97);
        border-bottom: 1px solid var(--border);
    }

    /* section reorder: team moves up after features */
    .v2main {
        display: flex;
        flex-direction: column;
    }

    .v2main .v2features { order: 1; }
    .v2main .v2press-setup-bg { order: 2; }
    .v2main .v2news { order: 2; }
    .v2main .network-graph { order: 3; }
    .v2main .v2integrations { order: 4; }
    .v2main .v2testimonials { order: 5; }
    .v2main .v2team { order: 6; }
    .v2main .v2latest { order: 7; }
    .v2main .v2cta { order: 8; }
    .v2main .v2footer { order: 9; }

    /* latest: stacked cards */
    .v2latest {
        padding: 2.5rem 1.25rem 2rem;
    }

    .v2latest_heading {
        font-size: 2.125rem;
        margin-bottom: 1.8rem;
    }

    .v2latest_grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .v2latest_card {
        padding: 0 0.25rem 1.1rem;
    }

    .v2latest_more-wrap {
        margin-top: 2rem;
    }

    /* hero */
    .v2hero {
        padding: 4.3rem 1.25rem 0;
    }

    .v2hero_panel {
        height: 25.8rem;
        /* 413px */
        border-radius: 16px;
    }

    .v2hero_panel-inner {
        padding-top: 1.8rem;
    }

    .v2hero_backed {
        height: 15.4px;
        margin-bottom: 0.6rem;
    }

    .v2hero_heading {
        font-size: 2.5rem;
        /* 40px */
        letter-spacing: -0.02em;
    }

    .v2hero_more {
        font-size: 2.75rem;
        margin: 0 -0.15rem;
        transform: translateY(0.4rem);
    }

    .v2hero_sub {
        font-size: 0.8125rem;
        /* 13px */
        line-height: 1.6;
        margin-top: 0.7rem;
        max-width: 18.25rem;
    }

    .v2hero_btn {
        width: 100%;
        max-width: 18.875rem;
        /* 302px */
        justify-content: center;
        margin-top: 1.4rem;
    }

    /* status wraps to two centered lines */
    .v2hero_status {
        top: auto;
        bottom: 6.4rem;
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }

    .v2hero_status-label {
        font-size: 12px;
    }

    /* stat cards: 275px, horizontally swipeable */
    .v2hero_cards-clip {
        margin-top: -5rem;
        padding-bottom: 2.6rem;
    }

    .v2hero_cards {
        gap: 0.625rem;
        padding: 0 1.25rem;
    }

    .v2card {
        width: 17.2rem;
        /* 275px */
        padding: 1.025rem;
        border-radius: 10px;
        gap: 0.8rem;
    }

    .v2card_grade {
        width: 22.4px;
        height: 22.4px;
        font-size: 15px;
    }

    .v2card_value {
        font-size: 1.25rem;
    }

    .v2card_name {
        font-size: 0.92rem;
    }

    .v2card_tag {
        height: 21px;
        font-size: 11px;
    }

    .v2card_due {
        font-size: 10px;
    }

    /* ticker */
    .v2ticker {
        padding-top: 3rem;
    }

    .v2ticker_label {
        margin-bottom: 2rem;
    }

    /* features: text above visual, no per-card buttons */
    .v2features {
        padding: 3.5rem 1.25rem 0;
    }

    .v2feature,
    .v2feature---flip {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 21.875rem;
        margin: 0 auto 3rem;
    }

    .v2feature_text,
    .v2feature---flip .v2feature_text {
        order: 1;
        max-width: none;
    }

    .v2feature_visual,
    .v2feature---flip .v2feature_visual {
        order: 2;
        width: 100%;
        height: auto;
        aspect-ratio: 469 / 414;
    }

    .v2feature_heading {
        font-size: 1.625rem;
        /* 26px */
        margin-bottom: 0.5rem;
    }

    .v2feature_sub {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .v2feature .v2feature_btn {
        display: none;
    }

    .v2features_mobile-cta {
        display: flex;
        justify-content: center;
        padding: 0 0 0.5rem;
    }

    .v2features_mobile-cta .v2feature_btn {
        display: inline-flex;
    }

    .v2feature_inset {
        inset: 1.25rem;
    }

    .v2f1_rows {
        inset: 4.6rem 0 2.8rem;
    }

    .v2f1_line {
        top: 3.4rem;
        bottom: 2rem;
    }

    .v2f1_pill {
        top: 1rem;
        height: 32px;
        font-size: 14px;
    }

    .v2f1_chip {
        font-size: 10.5px;
        padding: 5px;
    }

    .v2f1_chip-grade {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }

    .v2f1_scramble {
        height: 25px;
    }

    .v2f1_spinner {
        bottom: 0.6rem;
        width: 30px;
        height: 30px;
    }

    .v2f1_spinner svg {
        width: 18px;
        height: 18px;
    }

    .v2feature_visual---image,
    .v2feature---flip .v2feature_visual---image {
        aspect-ratio: auto;
    }

    .v2f2_name {
        font-size: 10px;
    }

    .v2f2_desc {
        font-size: 8.7px;
    }

    .v2f3_minicard {
        width: 10.5rem;
        padding: 9px;
    }

    /* team: heading, body, photo stacked */
    .v2team {
        padding: 2rem 1.25rem 3.5rem;
    }

    .v2team_card {
        min-height: 0;
        padding: 0;
        overflow: visible;
    }

    .v2team_heading {
        font-size: 1.625rem;
        padding: 1.5rem 1.5rem 0;
        white-space: normal;
    }

    .v2team_body {
        margin-top: 0;
        width: auto;
        font-size: 1rem;
        line-height: 1.5;
        padding: 0.75rem 1.5rem 1rem;
    }

    .v2team_photo {
        position: relative;
        width: 100%;
    }

    /* press */
    .v2press {
        padding: 2.5rem 0 2.2rem;
        overflow: hidden;
    }

    .v2press_label {
        margin-bottom: 1rem;
    }

    .v2press_logos {
        transform: scale(0.68);
        transform-origin: left center;
        /* 1 / 0.68 — restore full-bleed visual width after the scale */
        width: 147.06%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .v2press_logos::-webkit-scrollbar {
        display: none;
    }

    .v2press_track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2.2rem;
        width: max-content;
    }

    .v2press_track .v2press_dup {
        display: block;
    }

    /* setup stats: stacked */
    .v2setup_wrap {
        padding: 0 1.25rem;
    }

    .v2setup {
        display: block;
        padding: 2rem 0 2.6rem;
    }

    .v2setup_heading {
        font-size: 1.625rem;
        /* 26px */
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
        padding-left: 0;
    }

    .v2setup_sub {
        font-family: var(--font-sans);
        font-size: 1rem;
        line-height: 1.5;
        color: var(--color-gray-dark);
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .v2setup_stats {
        flex-direction: column;
        gap: 1.125rem;
        padding-top: 0;
    }

    .v2setup_num {
        font-size: 1.875rem;
        /* 30px */
        line-height: normal;
        letter-spacing: 0;
        margin-bottom: 0.5rem;
    }

    .v2setup_desc {
        font-size: 0.875rem;
        line-height: 1.4;
        max-width: none;
    }

    /* network */
    .network-graph_canvas-wrap {
        border-radius: 16px;
        margin: 0 1.25rem;
    }

    .network-graph_heading {
        font-size: 1.625rem !important;
    }

    .network-graph_legend {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 21rem;
    }

    /* integrations: side-by-side swipeable cards, no "and many more" */
    .v2integrations {
        padding: 3.5rem 1.25rem 2rem;
    }

    .v2integrations_inner {
        padding: 0;
    }

    .v2integrations_heading {
        font-size: 2rem;
        /* 32px */
        margin-bottom: 1.6rem;
    }

    .v2integrations_logos {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.7rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
        scrollbar-width: none;
    }

    .v2integrations_logos::-webkit-scrollbar {
        display: none;
    }

    .v2integrations_card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        scroll-margin-left: 1.25rem;
        width: 16.3rem;
        /* 261px */
        height: 6.05rem;
        /* 97px */
        padding: 0;
    }

    .v2integrations_card---more {
        display: none;
    }

    /* news: stacked */
    .v2news {
        padding: 2.5rem 1.25rem;
    }

    .v2news_inner {
        flex-direction: column;
        gap: 1.75rem;
    }

    .v2news_featured {
        flex-direction: column;
        gap: 1.25rem;
    }

    .v2news_photo {
        width: 100%;
        height: auto;
        aspect-ratio: 320 / 261;
    }

    .v2news_headline {
        font-size: 1.25rem;
    }

    .v2news_divider {
        flex: 0 0 auto;
        height: 1px;
        width: 100%;
    }

    .v2news_side .v2news_meta {
        margin-top: 1rem;
    }

    /* testimonials */
    .v2testimonials {
        padding: 4rem 1.25rem 2rem;
    }

    .v2testimonials_heading {
        font-size: 2.125rem;
        /* 34px */
        margin-bottom: 2.6rem;
    }

    .v2testimonials_card {
        min-height: 15rem;
        padding-bottom: 2rem;
    }

    .v2testimonials_marks {
        width: 106px;
        height: 80px;
        top: auto;
        bottom: 1rem;
    }

    .v2testimonials_nav {
        margin-top: 1.5rem;
    }

    /* CTA */
    .v2cta {
        padding: 2rem 1.25rem 3rem;
    }

    .v2cta_card {
        height: auto;
        padding-bottom: 3.4rem;
        border-radius: 12px;
    }

    .v2cta_heading {
        font-size: 1.875rem;
        /* 30px */
        margin-top: 3.4rem;
    }

    .v2cta_marks {
        right: -2.4rem;
        bottom: 0;
        width: 28px;
        height: 35.6px;
    }

    .v2cta_text {
        font-size: 0.875rem;
        line-height: 1.5;
        max-width: 18.25rem;
        margin-top: 1.1rem;
    }

    .v2cta_btn {
        width: 100%;
        max-width: 18.875rem;
        margin-top: 1.6rem;
    }

    .v2cta_line {
        display: none;
    }

    .v2cta_brush---tl1 {
        left: -7%;
        top: -4%;
        width: 32%;
    }

    .v2cta_brush---tl2 {
        left: 24%;
        top: 10%;
        width: 30%;
    }

    .v2cta_brush---br1 {
        right: -8%;
        bottom: -5%;
        width: 34%;
    }

    .v2cta_brush---br2 {
        right: 60%;
        bottom: -6%;
        width: 33%;
        display: none;
    }

    /* footer: stacked */
    .v2footer {
        padding: 2rem 1.25rem 2rem;
    }

    .v2footer_bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .v2footer_copyright {
        font-size: 14px;
    }

    .v2footer_legal a {
        font-size: 14px;
    }
}
