/* Section background */
.hero-section {
    background:
        radial-gradient(1200px 500px at 50% -120px, rgba(175, 255, 0, .10), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 40%),
        #050505;
}

/* ---------- Nav underline (matches screenshot) ---------- */
.nav-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    line-height: 1;
}

.nav-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0.75;
}

.menu-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* ---------- HERO TOP (fixed spacing to match screenshot) ---------- */
.hero-stage {
    /* mobile */
    min-height: 560px;
    display: flex;
    align-items: flex-start;
    /* key: content stays higher, empty space below */
    justify-content: center;
    padding: 84px 0 0;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-stage {
        /* desktop: pushes the video block down like the screenshot */
        min-height: 670px;
        padding-top: 92px;
    }
}

/* Orbit behind title (bigger + positioned higher, less “compressed”) */
.hero-orbit-img {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    width: min(1180px, 92vw);
    height: auto;
    opacity: 0.75;
    pointer-events: none;
    user-select: none;
}

.hero-title-1 {
    font-size: clamp(52px, 6.0vw, 110px);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EDF738;
    color: #0a0a0a;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.55;
    opacity: 0.95;
}

/* microcopy placement (matches screenshot height) */
.hero-micropos {
    top: 45%;
    transform: translateY(-50%);
}

.hero-micro {
    color: #EDF738;
    font-size: 12px;
    opacity: 0.9;
}

.hero-micro-line {
    height: 1px;
    width: 44px;
    background: rgba(215, 255, 74, 0.95);
}

/* ---------- HERO WATERMARKS (2 positions like screenshot) ---------- */
.hero-watermark {
    position: absolute;
    left: 18px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 1024px) {
    .hero-watermark {
        left: 24px;
        font-size: 24px;
    }
}

.hero-watermark--mid {
    /* fixed position to match screenshot */
    top: 520px;
}

.hero-watermark--bottom {
    bottom: 20px;
}

/* ---------- VIDEO BLOCK (position + proportions like screenshot) ---------- */
.hero-video-block {
    padding-bottom: clamp(170px, 14vw, 260px);
}

.hero-quote {
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: clamp(38px, 3.9vw, 64px);
}

.hero-quote-sub {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    background: transparent;
}

.hero-demo-btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

/* Video card */
.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 760px;
    border-radius: 28px;
    overflow: hidden;
    background: #2a2b7a;
    aspect-ratio: 16 / 9;
    /* mobile */
}

@media (min-width: 1024px) {
    .hero-video-wrap {
        /* screenshot looks slightly taller than 16:9 */
        aspect-ratio: 16 / 10;
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #2a2b7a;
}

.video-trigger {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.video-icon {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
    opacity: 0.95;
}

/* Hide play icon when playing */
.hero-video-wrap.is-playing .video-trigger {
    display: none;
}

/* ---------- Other section backgrounds (unchanged) ---------- */
/* ---------- SOCIETY CTA (match screenshot, bg image) ---------- */
.society-section {
    position: relative;
    overflow: hidden;
    background: #000 url("./assets/apart_bg.png") center / cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.society-inner {
    min-height: 220px;
    padding: 54px 0;
}

@media (min-width: 1024px) {
    .society-inner {
        min-height: 260px;
        padding: 64px 0;
    }
}

.society-title {
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(34px, 3.8vw, 54px);
}

.society-desc {
    margin: 28px 0 0;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.society-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    white-space: nowrap;
}

.society-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.50);
}

/* ---------- LOVED & TRUSTED (matches screenshot) ---------- */
.loved-section {
    position: relative;
    overflow: hidden;
    background: #000 url("./assets/loved_bg.png") center / cover no-repeat;
    padding: 64px 0 160px;
    /* gives the big black lower area */
}

/* dark fade to black at the bottom like screenshot */
.loved-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0.55) 62%,
            rgba(0, 0, 0, 0.92) 82%,
            rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.loved-watermark {
    position: absolute;
    left: 18px;
    bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.loved-section>* {
    position: relative;
    z-index: 2;
    /* above overlays */
}

.loved-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.loved-title {
    margin: 0;
    color: #0d0d0d;
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.95;
    font-size: clamp(64px, 6.2vw, 102px);
}

.loved-arrows {
    display: flex;
    gap: 18px;
    padding-top: 18px;
    /* aligns like screenshot */
}

.loved-arrow {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    line-height: 0;
}

.loved-arrow img {
    width: 44px;
    height: 44px;
    display: block;
}

.loved-arrow:hover {
    opacity: 0.92;
}

.loved-arrow.is-disabled,
.loved-arrow:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

/* viewport */
.loved-viewport {
    margin-top: 56px;
    overflow: hidden;
    /* creates the “2.5 cards visible” crop */
}

/* track */
.loved-track {
    --cardW: 460px;
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translateX(0);
    transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* card: open-bottom border frame like screenshot */
.loved-card {
    flex: 0 0 auto;
    width: var(--cardW);
    padding: 26px 28px 22px;
    color: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;

    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

/* make the vertical separators single-line (no double borders) */
.loved-card+.loved-card {
    border-left: 0;
}

.loved-quote {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.loved-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loved-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    flex: none;
}

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

.loved-meta {
    display: grid;
    gap: 2px;
}

.loved-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.loved-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}

/* responsive */
@media (max-width: 1024px) {
    .loved-section {
        padding: 48px 0 130px;
    }

    .loved-track {
        --cardW: 360px;
    }

    .loved-arrow img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 640px) {
    .loved-track {
        --cardW: 300px;
    }
}

/* Watermarks used elsewhere */
.society-watermark {
    position: absolute;
    left: 40px;
    bottom: -14px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, .08);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}

.experience-watermark {
    position: absolute;
    left: 40px;
    top: 60px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(0, 0, 0, .06);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}

/* Pill media overlays */
.pill-media::after {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(240px 160px at 25% 55%, rgba(255, 255, 255, .85), transparent 60%),
        radial-gradient(200px 160px at 70% 45%, rgba(0, 0, 0, .18), transparent 62%),
        linear-gradient(90deg, rgba(0, 0, 0, .08), transparent 55%);
    mix-blend-mode: overlay;
    opacity: .9;
}

.media-1 {
    background: linear-gradient(90deg, #e8decd, #f7f1e6);
}

.media-2 {
    background: linear-gradient(90deg, #bdf3d1, #e9fff0);
}

.media-3 {
    background: linear-gradient(90deg, #ffd6d6, #fff1f1);
}

.media-4 {
    background: linear-gradient(90deg, #e1ddff, #f1f0ff);
}

/* Strip */
.strip {
    scroll-snap-type: x mandatory;
}

.strip-pill {
    scroll-snap-align: start;
}

.strip-pill::after {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(260px 140px at 30% 60%, rgba(255, 255, 255, .85), transparent 60%),
        linear-gradient(90deg, rgba(0, 0, 0, .10), transparent 55%);
    mix-blend-mode: overlay;
    opacity: .9;
}

.g1 {
    background: linear-gradient(90deg, #d7e7ff, #f5fbff);
}

.g2 {
    background: linear-gradient(90deg, #ffe3f0, #fff7fb);
}

.g3 {
    background: linear-gradient(90deg, #e0ffe7, #f3fff6);
}

.g4 {
    background: linear-gradient(90deg, #f4e6ff, #fbf7ff);
}

.g5 {
    background: linear-gradient(90deg, #ffe8d5, #fff6ee);
}

.g6 {
    background: linear-gradient(90deg, #d8fff7, #f1fffc);
}

.g7 {
    background: linear-gradient(90deg, #fff6d8, #fffdf0);
}

/* Testimonials arrows */
.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .18);
    background: rgba(255, 255, 255, .45);
    color: rgba(0, 0, 0, .78);
    display: grid;
    place-items: center;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, .55);
}

/* Recent thumbnails gradients */
.r1 {
    background: linear-gradient(135deg, #111, #444);
}

.r2 {
    background: linear-gradient(135deg, #67ffb5, #2b8dff);
}

.r3 {
    background: linear-gradient(135deg, #ffe16a, #ff56a1);
}

/* Footer cubes */
.footer-decor {
    position: absolute;
    right: 20px;
    bottom: -4px;
    display: flex;
    gap: 10px;
    opacity: .35;
}

.cube {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 60%),
        radial-gradient(22px 22px at 30% 30%, rgba(255, 255, 255, .14), transparent 60%);
}

/* ---------- SECTION 3: What sets us apart (screenshot match) ---------- */
.apart-heading {
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.88;
    font-size: clamp(68px, 7.2vw, 130px);
    color: #0a0a0a;
}

.apart-intro {
    font-size: 18px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.78);
}

.apart-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #6b72ff;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.apart-cta:hover {
    filter: brightness(0.98);
}

.apart-no {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}

.apart-row-title {
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
    font-size: clamp(40px, 3.2vw, 56px);
    color: #0a0a0a;
}

.apart-arrow {
    width: 44px;
    height: 44px;
    flex: none;
    margin-top: 6px;
    /* matches the screenshot alignment */
}

.apart-row-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.62);
    max-width: 320px;
}

/* Pill image card */
.apart-pill {
    width: 100%;
    height: 170px;
    border-radius: 9999px;
    overflow: hidden;
    background: #eee;
}

@media (min-width: 1024px) {
    .apart-pill {
        height: 170px;
    }
}

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

/* ---------- EXPERIENCE SLIDERS (2-row, slow auto marquee) ---------- */

/* Full-bleed (100vw) while the text stays in max-w-container */
.exp-gallery {
    margin-top: 44px;
    padding-bottom: 18px;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* breakout from container */
}

.exp-row {
    width: 100%;
    overflow: hidden;
}

.exp-row+.exp-row {
    margin-top: 18px;
}

/* track */
.exp-track {
    --dur: 46s;
    --start: 0px;

    display: flex;
    gap: 28px;
    width: max-content;
    will-change: transform;

    animation: expMarquee var(--dur) linear infinite;
}

.exp-row--2 .exp-track {
    --dur: 54s;
    --start: -240px;
    /* makes left pill start “cut” */
    animation-direction: reverse;
    animation-delay: -12s;
    /* keeps rows out of sync */
}

@keyframes expMarquee {
    0% {
        transform: translateX(var(--start));
    }

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

    /* one full set */
}

@media (prefers-reduced-motion: reduce) {
    .exp-track {
        animation: none;
        transform: translateX(0);
    }
}

/* ✅ PILL: SAME WIDTH for every item */
/* ✅ PILL: SAME WIDTH for every item */
.exp-pill {
    flex: 0 0 auto;
    width: 400px;
    /* was 340px */
    height: 132px;
    /* was 118px */
    border-radius: 9999px;
    overflow: hidden;
    background: #111;
}

/* ✅ Cropping behavior: fills height, crops sides, hides ~top 20% */
.exp-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
    display: block;
}

@media (max-width: 1024px) {
    .exp-pill {
        width: 300px;
        /* was 260px */
        height: 104px;
        /* was 92px */
    }
}

/* ---------- RECENT HAPPENINGS (Instagram grid, screenshot style) ---------- */
.recent-section {
    background: #f2f2f2;
    padding: 72px 0 88px;
}

.recent-title {
    margin: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #0b0b0b;
}

.recent-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

@media (min-width: 1024px) {
    .recent-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 76px;
        /* airy like screenshot */
        align-items: start;
    }
}

/* Instagram embed container */
.ig-media {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Instagram's blockquote injects an iframe; force it to fit the card */
.ig-media .instagram-media {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.ig-media iframe {
    width: 100% !important;
    min-width: 0 !important;
}

/* Keep your caption area layout */
.ig-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ---------- FOOTER (screenshot style) ---------- */
.site-footer {
    position: relative;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 88px 0 22px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-wrap {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 86px;
        align-items: start;
    }
}

.footer-h {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.footer-p {
    margin: 0;
    font-size: 11px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.40);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 11px;
    line-height: 1.6;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.40);
}

.footer-list a:hover {
    color: rgba(255, 255, 255, 0.70);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.32);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.32);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* footer art (subtle) */
.footer-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
}

.footer-art-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-art-cross {
    position: absolute;
    right: 420px;
    bottom: 58px;
    width: 220px;
    height: 220px;
    opacity: 0.16;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.85) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.85) 50%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(255, 255, 255, 0.45) 50%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgba(255, 255, 255, 0.45) 50%, transparent 50.5%);
}

.footer-art-cube {
    position: absolute;
    right: 70px;
    bottom: 78px;
    width: 150px;
    height: 150px;
    opacity: 0.16;
}

.footer-art-cube .cube-front,
.footer-art-cube .cube-back {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-art-cube .cube-front {
    inset: 0;
}

.footer-art-cube .cube-back {
    inset: 18px;
    transform: translate(18px, -18px);
    opacity: 0.8;
}

/* connectors */
.footer-art-cube .cube-conn {
    position: absolute;
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.75);
    opacity: 0.75;
}

.footer-art-cube .c1 {
    left: 0;
    top: 0;
    transform: rotate(-45deg);
    transform-origin: top left;
}

.footer-art-cube .c2 {
    right: 0;
    top: 0;
    transform: rotate(45deg);
    transform-origin: top right;
}

.footer-art-cube .c3 {
    left: 0;
    bottom: 0;
    transform: rotate(45deg);
    transform-origin: bottom left;
}

.footer-art-cube .c4 {
    right: 0;
    bottom: 0;
    transform: rotate(-45deg);
    transform-origin: bottom right;
}

@media (max-width: 1024px) {
    .footer-art-cross {
        display: none;
    }

    .footer-art-cube {
        display: none;
    }
}


/* ---------- APP ICON STRIP (single-row, faster infinite marquee) ---------- */
.iconstrip-section {
    background: #050505;
    padding: 34px 0;
    position: relative;
    overflow: hidden;
}

/* subtle edge fade like the screenshot */
.iconstrip-section::before,
.iconstrip-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.iconstrip-section::before {
    left: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.iconstrip-section::after {
    right: 0;
    background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

/* full-bleed viewport */
.iconstrip-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

/* the moving track */
.iconstrip-track {
    --dur: 18s;
    /* faster than experience slider */
    display: flex;
    gap: 30px;
    padding: 0 40px;
    width: max-content;
    will-change: transform;
    animation: iconStripMarquee var(--dur) linear infinite;
}

/* IMPORTANT: this assumes you render the icons twice (we do in JS) */
@keyframes iconStripMarquee {
    from {
        transform: translateX(0);
    }

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

.iconstrip-icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    /* iOS-ish */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

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

@media (min-width: 1024px) {
    .iconstrip-icon {
        width: 194px;
        height: 194px;
        border-radius: 20px;
    }

    .iconstrip-track {
        gap: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iconstrip-track {
        animation: none;
        transform: translateX(0);
    }
}

/* ---------- POLICY PAGES ---------- */
.policy-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 50% -120px, rgba(175, 255, 0, .10), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 40%),
        #050505;
    padding: 86px 0 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-watermark {
    position: absolute;
    left: 18px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 1024px) {
    .policy-watermark {
        left: 24px;
        font-size: 24px;
    }
}

.policy-title {
    margin: 18px 0 0;
    color: #EDF738;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.95;
    font-size: clamp(42px, 5.2vw, 86px);
}

.policy-sub {
    margin: 16px auto 0;
    max-width: 62ch;
    color: rgba(215, 255, 74, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

.policy-content {
    background: #f2f2f2;
    padding: 64px 0 92px;
    color: #0b0b0b;
}

.policy-prose {
    max-width: 860px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.74);
}

.policy-prose h2 {
    margin: 34px 0 10px;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
}

.policy-prose p {
    margin: 10px 0;
}

.policy-prose a {
    color: #6b72ff;
    font-weight: 600;
}

.policy-prose a:hover {
    text-decoration: underline;
}

.policy-ol,
.policy-ul {
    margin: 14px 0 0 18px;
}

.policy-ol {
    list-style: decimal;
}

.policy-ul {
    list-style: disc;
}

.policy-ol li,
.policy-ul li {
    margin: 8px 0;
}