@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&family=Roboto+Condensed:wght@700;900&display=swap');

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

:root {
    --rose:     #f78da3;
    --rose-rgb: 247, 141, 163;
    --rose-dim: rgba(var(--rose-rgb), 0.18);
    --white:    #ffffff;
    --black:    #000000;
    --off:      rgba(255,255,255,0.82);
    --dim:      rgba(255,255,255,0.3);
    --nav-h:    68px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Roboto', system-ui, sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

sup.reg {
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Ambient background ──────────────────────────────────────── */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-orbs::before {
    content: '';
    position: absolute;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--rose-rgb),0.055) 0%, transparent 65%);
    top: -20vw;
    left: -10vw;
    animation: orbDrift1 28s ease-in-out infinite;
    filter: blur(60px);
}

.bg-orbs::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--rose-rgb),0.04) 0%, transparent 65%);
    bottom: -10vw;
    right: -10vw;
    animation: orbDrift2 34s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes orbDrift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(8vw,-6vw) scale(1.08); }
    66%     { transform: translate(-5vw,9vw) scale(0.94); }
}

@keyframes orbDrift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%     { transform: translate(-7vw,5vw) scale(1.1); }
    70%     { transform: translate(4vw,-8vw) scale(0.92); }
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(var(--rose-rgb),0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img { height: 38px; width: auto; display: block; }

.nav-logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #d3d3d3;
    letter-spacing: 0.06em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 400;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 8px 20px !important;
    border-radius: 20px !important;
    border: none !important;
    color: var(--rose) !important;
    position: relative !important;
    isolation: isolate !important;
    background: transparent !important;
}

.nav-cta::before {
    content: '' !important;
    position: absolute !important;
    inset: -2px !important;
    border-radius: calc(20px + 2px) !important;
    padding: 2px !important;
    background: conic-gradient(
        from var(--btn-angle),
        rgba(var(--rose-rgb), 0.12) 0deg,
        rgba(var(--rose-rgb), 0.12) 200deg,
        rgba(var(--rose-rgb), 0.4)  228deg,
        rgba(var(--rose-rgb), 0.85) 255deg,
        var(--rose)                  270deg,
        rgba(var(--rose-rgb), 0.85) 285deg,
        rgba(var(--rose-rgb), 0.4)  310deg,
        rgba(var(--rose-rgb), 0.12) 338deg,
        rgba(var(--rose-rgb), 0.12) 360deg
    ) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    animation: btnSpin 1.75s linear 1 forwards !important;
    z-index: 1 !important;
    width: auto !important;
    height: auto !important;
    transition: none !important;
}

.nav-cta::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    border-radius: 20px !important;
    background: radial-gradient(
        ellipse 60% 70% at
            calc(50% - 48% * cos(var(--btn-angle)))
            calc(50% - 48% * sin(var(--btn-angle))),
        rgba(var(--rose-rgb), 0.16) 0%,
        transparent 65%
    ) !important;
    animation: btnSpin 1.75s linear 1 forwards !important;
    z-index: -1 !important;
    transition: none !important;
}

.nav-cta:hover::before,
.nav-cta:hover::after {
    animation: btnSpin 1.75s linear infinite !important;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero--sub {
    height: 100vh;
    min-height: 620px;
}

.hero--sub .hero-title {
    font-size: clamp(1.3rem, 3.25vw, 2.7rem);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: grayscale(10%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(var(--rose-rgb),0.05) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.58) 100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle 480px at var(--mx, 50%) var(--my, 50%),
        rgba(var(--rose-rgb), 0.11) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.55s ease;
    z-index: 0;
}

.hero:hover .hero-glow { opacity: 1; }

.hero-grain {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0.35;
    pointer-events: none;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(var(--rose-rgb),0.012) 3px,
        rgba(var(--rose-rgb),0.012) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 48px;
    max-width: 860px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 22px;
    animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0s both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--rose);
    opacity: 0.6;
}

.hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    animation: fadeUp 2.1s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

@keyframes voiceFirstShimmer {
    0%   { background-position: 100% center; }
    50%  { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.hero-title .title-shimmer {
    display: inline-block;
    padding-right: 0.15em;
    background: linear-gradient(
        90deg,
        #5a2d37 0%,
        var(--rose) 50%,
        #5a2d37 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: voiceFirstShimmer 3s ease-in-out 0.5s 1 both;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.9vw, 1.22rem);
    font-weight: 300;
    color: var(--off);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.72;
    animation: fadeUp 2.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.hero-btns {
    margin-top: 72px;
    animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.32s both;
}

.hero-btns .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline {
    margin-top: 72px;
    font-size: clamp(1rem, 1.9vw, 1.22rem);
    font-weight: 300;
    color: var(--off);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.72;
    animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.42s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: scrollFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.scroll-indicator span {
    font-size: 0.70rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(var(--rose-rgb),0.75), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Eyebrow label ───────────────────────────────────────────── */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 32px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--rose);
    flex-shrink: 0;
}

/* ── Intro / long text section ───────────────────────────────── */
.intro-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 48px 0;
}

.intro-block {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.intro-block p {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 300;
    line-height: 1.88;
    color: var(--off);
}

.intro-block p + p { margin-top: 1.4rem; }
.intro-block em { color: var(--rose); font-style: italic; }

.statement {
    position: relative;
    z-index: 1;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px;
}

.page-content .statement {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.statement em { color: var(--rose); font-style: italic; }

/* ── Videos (landing 2-up) ───────────────────────────────────── */
.landing-videos {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px 80px;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.video-slot { display: flex; flex-direction: column; gap: 16px; }

.video-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(var(--rose-rgb),0.2);
    background: #070707;
    aspect-ratio: 16/9;
}

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

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(var(--rose-rgb), 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-btn:hover .play-circle {
    transform: scale(1.1);
    background: var(--rose);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,0.18);
}

.video-placeholder svg { width: 44px; height: 44px; opacity: 0.35; }

.video-placeholder p {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
}

.video-caption {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}

/* ── Cards section ───────────────────────────────────────────── */
.cards-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 48px 120px;
}

.page-content .cards-section {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cards-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 48px;
}

.card {
    position: relative;
    border: 1px solid var(--rose);
    border-radius: 16px;
    padding: 52px 48px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rose-dim);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 16px;
}

.card::after {
    content: '';
    position: absolute;
    top: 20px; right: 20px;
    width: 28px; height: 28px;
    border-top: 2px solid var(--rose);
    border-right: 2px solid var(--rose);
    opacity: 0;
    transform: translate(4px,-4px);
    transition: opacity 0.3s, transform 0.3s;
}

.card:hover { transform: translateY(-6px); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; transform: translate(0,0); }

.card-number {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 28px;
    position: relative; z-index: 1;
}

.card-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.card-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--off);
    max-width: 360px;
    margin-bottom: 32px;
    position: relative; z-index: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rose);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    position: relative; z-index: 1;
    transition: gap 0.25s;
}

.card:hover .card-link { gap: 16px; }

/* ── Page hero (subpages) ────────────────────────────────────── */
.page-hero {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-h) + 90px) 48px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 720px;
    margin-bottom: 28px;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--rose);
}

.page-hero-lead {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    line-height: 1.82;
    color: var(--off);
    max-width: 640px;
}

/* ── Page content wrapper ────────────────────────────────────── */
.page-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.content-body {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 300;
    line-height: 1.88;
    color: var(--off);
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.content-body p + p { margin-top: 1.5rem; }
.content-body em { color: var(--rose); font-style: italic; }

/* ── Features grid ───────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(var(--rose-rgb),0.14);
    border: 1px solid rgba(var(--rose-rgb),0.14);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 80px;
}

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

.feature-block {
    background: var(--black);
    padding: 44px 36px;
}

.feature-num {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(var(--rose-rgb),0.22);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-block h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.22rem;
    margin-bottom: 14px;
    line-height: 1.22;
}

.feature-block p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.74;
    color: var(--off);
}

/* ── Inline video (subpages) ─────────────────────────────────── */
.video-inline {
    margin-top: 80px;
    margin-bottom: 80px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(var(--rose-rgb),0.2);
    background: #060606;
    aspect-ratio: 16/9;
    position: relative;
}

.video-inline video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Spider web (job seekers) ────────────────────────────────── */
.spiderweb-section { margin-top: 80px; }

.spiderweb-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.spiderweb-wrap svg { max-width: 700px; width: 100%; }

/* ── CTA block ───────────────────────────────────────────────── */
.cta-block {
    border: 1px solid var(--rose);
    border-radius: 15px;
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
}

.cta-block h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    line-height: 1.2;
    max-width: 420px;
}

/* ── Rotating-border CTA buttons ─────────────────────────────── */
@property --btn-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes btnSpin {
    to { --btn-angle: 360deg; }
}

@keyframes btnSpinLoop {
    to { --btn-angle: 360deg; }
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 24px;
    border: none;
    color: var(--rose);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    background: transparent;
}

/* Rotating gradient ring — shared by .btn, .btn-submit, .mobile-cta */
.btn::before,
.btn-submit::before,
.mobile-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(24px + 2px);
    padding: 2px;
    background: conic-gradient(
        from var(--btn-angle),
        rgba(var(--rose-rgb), 0.12) 0deg,
        rgba(var(--rose-rgb), 0.12) 200deg,
        rgba(var(--rose-rgb), 0.4)  228deg,
        rgba(var(--rose-rgb), 0.85) 255deg,
        var(--rose)                  270deg,
        rgba(var(--rose-rgb), 0.85) 285deg,
        rgba(var(--rose-rgb), 0.4)  310deg,
        rgba(var(--rose-rgb), 0.12) 338deg,
        rgba(var(--rose-rgb), 0.12) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: btnSpin 1.75s linear 1 forwards;
    z-index: 1;
}

/* Inner orbiting glow — follows the bright spot */
.btn::after,
.btn-submit::after,
.mobile-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        ellipse 60% 70% at
            calc(50% - 48% * cos(var(--btn-angle)))
            calc(50% - 48% * sin(var(--btn-angle))),
        rgba(var(--rose-rgb), 0.16) 0%,
        transparent 65%
    );
    animation: btnSpin 1.75s linear 1 forwards;
    z-index: -1;
}

/* Hover: loop the animation */
.btn:hover::before,
.btn:hover::after,
.btn-submit:hover::before,
.btn-submit:hover::after,
.mobile-cta:hover::before,
.mobile-cta:hover::after {
    animation: btnSpin 1.75s linear infinite;
}

/* ── Compliance checks ───────────────────────────────────────── */
.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 48px;
    max-width: 680px;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    border: 1px solid rgba(var(--rose-rgb),0.2);
    border-radius: 12px;
    background: rgba(var(--rose-rgb),0.025);
}

.c-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.c-check::after {
    content: '';
    width: 7px; height: 7px;
    background: var(--rose);
    border-radius: 50%;
}

.c-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.c-text span {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

/* ── About / Contact page ────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about-aside h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.18;
    color: var(--rose);
    margin-bottom: 24px;
}

.about-aside p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

.contact-wrap {
    border: 1px solid rgba(var(--rose-rgb),0.28);
    border-radius: 16px;
    padding: 52px 48px;
}

.contact-wrap h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 36px;
}

/* ── Contact form ────────────────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #000000;
    border: none;
    border-bottom: 1px solid rgba(var(--rose-rgb),0.3);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--rose); }

.form-group textarea { resize: vertical; min-height: 90px; }

.hp-field { display: none !important; }

.btn-submit {
    width: 100%;
    padding: 16px 44px;
    border-radius: 24px;
    border: none;
    background: transparent;
    color: var(--rose);
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    isolation: isolate;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(var(--rose-rgb),0.14);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.footer a {
    color: var(--rose);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer a:hover { opacity: 1; }

.footer-links { display: flex; gap: 28px; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollFadeUp {
    from { opacity: 0; transform: translateX(-50%) translateY(32px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Hamburger toggle ────────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.22s;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu panel ───────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: #080808;
    border-left: 1px solid rgba(var(--rose-rgb),0.14);
    z-index: 400;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 350;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: var(--nav-h);
    border-bottom: 1px solid rgba(var(--rose-rgb),0.1);
    flex-shrink: 0;
}

.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    padding: 6px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.mobile-close:hover { color: var(--rose); }

.mobile-links {
    list-style: none;
    padding: 28px 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-links li a {
    display: block;
    padding: 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--rose-rgb),0.08);
    letter-spacing: 0.01em;
    transition: color 0.2s, padding-left 0.25s cubic-bezier(0.16,1,0.3,1);
}

.mobile-links li a:hover,
.mobile-links li a.active {
    color: var(--rose);
    padding-left: 8px;
}

.mobile-cta-wrap {
    padding: 28px 24px 40px;
    flex-shrink: 0;
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 24px;
    border: none;
    color: var(--rose);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    isolation: isolate;
    background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-container { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-content { padding: 0 24px; }

    .intro-section,
    .statement,
    .landing-videos,
    .cards-section,
    .page-content { padding-left: 20px; padding-right: 20px; }

    .page-hero { padding: calc(var(--nav-h) + 48px) 20px 56px; }


    .cards-grid,
    .cards-grid--3 { grid-template-columns: 1fr; }
    .card { padding: 40px 28px; }

    .features-grid,
    .features-grid.col-2 { grid-template-columns: 1fr; }

    .cta-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
    }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }

    .contact-wrap { padding: 36px 28px; }

    .form-row { grid-template-columns: 1fr; }

    .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px 20px;
    }

    .mobile-menu.open .mobile-cta::before,
    .mobile-menu.open .mobile-cta::after {
        animation: btnSpinLoop 1.75s linear infinite;
    }
}
