:root {
    --ink: #11100e;
    --ink-soft: #2d2a25;
    --muted: #746f65;
    --line: #ebe4d8;
    --paper: #fffaf0;
    --paper-soft: #fffdf8;
    --white: #ffffff;
    --gold: #efc243;
    --gold-dark: #c79419;
    --charcoal: #171614;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    background: #fffdf8;
    color: var(--ink);
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-nav.is-scrolled {
    background: rgba(251, 248, 241, 0.95);
    box-shadow: 0 18px 45px rgba(16, 16, 16, 0.08);
}

.nav-inner {
    width: min(1180px, calc(100% - 32px));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-link img {
    width: 118px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(17, 16, 14, 0.08);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
}

.nav-links a {
    color: rgba(17, 16, 14, 0.78);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    background: rgba(239, 194, 67, 0.16);
    color: var(--gold);
    transform: translateY(-1px);
}

.site-nav.is-scrolled .nav-links {
    border-color: rgba(16, 16, 16, 0.08);
    background: rgba(16, 16, 16, 0.04);
}

.site-nav.is-scrolled .nav-links a {
    color: var(--ink-soft);
}

.site-nav.is-scrolled .nav-links a:hover {
    color: var(--ink);
    background: rgba(239, 194, 67, 0.22);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.nav-cta {
    min-height: 44px;
    padding: 0 18px;
    background: var(--gold);
    color: var(--ink);
    font-size: 14px;
    box-shadow: 0 12px 28px rgba(239, 194, 67, 0.2);
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 16, 14, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--ink);
}

.site-nav.is-scrolled .mobile-menu-button {
    color: var(--ink);
    border-color: rgba(16, 16, 16, 0.1);
}

.mobile-menu {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(16, 16, 16, 0.16);
    border-radius: 18px;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu a {
    display: block;
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 800;
    border-radius: 12px;
}

.mobile-menu a:hover {
    background: rgba(239, 194, 67, 0.18);
}

.hero-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: heroZoom 14s ease-out both;
}

.hero-overlay {
    background: rgba(10, 10, 9, 0.48);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 82px);
    margin: 82px auto 0;
    padding: 54px 0 118px;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
    gap: 58px;
    align-items: center;
    transform: translateY(-28px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.split-section h2,
.contact-section h2 {
    margin: 18px 0;
    font-family: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 620px;
    color: var(--white);
    font-size: clamp(48px, 6.4vw, 84px);
    line-height: 0.92;
    text-wrap: balance;
    animation: fadeUp 0.8s ease both 0.08s;
}

.hero-copy p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.6;
    animation: fadeUp 0.8s ease both 0.18s;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    animation: fadeUp 0.8s ease both 0.28s;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
}

.hero-badges i {
    color: var(--gold);
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.8s ease both 0.38s;
}

.btn {
    min-height: 52px;
    padding: 0 24px;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(239, 194, 67, 0.28);
}

.btn-secondary {
    background: rgba(255, 253, 248, 0.9);
    border-color: rgba(255, 255, 255, 0.46);
    color: var(--ink);
    backdrop-filter: blur(12px);
}

.section-light .btn-secondary,
.price-card .btn-secondary,
.contact-section .btn-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
}

.image-frame {
    overflow: hidden;
    border: 1px solid rgba(235, 228, 216, 0.9);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(16, 16, 16, 0.09);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-frame {
    aspect-ratio: 16 / 10;
    animation: fadeUp 0.8s ease both 0.25s;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 999px;
    transform: translateX(-50%);
    animation: scrollCue 1.6s ease infinite;
}

.proof-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(16, 16, 16, 0.09);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-strip div {
    padding: 26px;
    border-right: 1px solid var(--line);
    transition: background 0.2s ease, transform 0.2s ease;
}

.proof-strip div:hover {
    background: #fff9e8;
    transform: translateY(-2px);
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong {
    display: block;
    font-size: 30px;
}

.proof-strip span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
}

.section,
.contact-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.section-light {
    color: var(--ink);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.split-section h2,
.contact-section h2 {
    color: var(--ink);
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.04;
    text-wrap: balance;
}

.section-heading p,
.split-section p,
.contact-section p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.feature-grid,
.pricing-grid,
.partner-grid,
.problem-grid,
.audience-grid,
.security-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.problem-grid,
.audience-grid {
    grid-template-columns: repeat(4, 1fr);
}

.security-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.problem-grid article,
.audience-grid article,
.security-grid article,
.testimonial-grid article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(16, 16, 16, 0.035);
}

.problem-grid i,
.audience-grid i,
.security-grid i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 14px;
}

.problem-grid h3,
.audience-grid h3,
.security-grid h3 {
    margin: 20px 0 8px;
    font-size: 20px;
}

.problem-grid p,
.audience-grid p,
.security-grid p,
.testimonial-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.product-section {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

.product-section h2 {
    margin: 18px 0;
    color: var(--ink);
    font-family: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.04;
    font-weight: 800;
    text-wrap: balance;
}

.product-section p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.product-points {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.product-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
}

.product-points i {
    color: var(--gold-dark);
}

.product-section .image-frame {
    aspect-ratio: 16 / 10;
}

.method-visual-stack {
    display: grid;
    gap: 18px;
}

.method-visual-stack .image-frame {
    aspect-ratio: 16 / 9;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    perspective: 1000px;
}

.feature-card {
    min-height: 265px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(16, 16, 16, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.price-card:hover {
    transform: translateY(-7px);
    border-color: rgba(239, 194, 67, 0.5);
    box-shadow: 0 28px 70px rgba(16, 16, 16, 0.09);
}

.feature-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 14px;
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(239, 194, 67, 0.22);
}

.feature-card h3,
.price-card h3 {
    margin: 24px 0 10px;
    font-size: 22px;
}

.feature-card p,
.price-card p {
    color: var(--muted);
    line-height: 1.65;
}

.insight-band {
    width: min(1180px, calc(100% - 32px));
    margin: 6px auto 0;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: end;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 26px 80px rgba(16, 16, 16, 0.07);
}

.insight-band h2 {
    margin: 16px 0 0;
    font-family: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.05;
}

.insight-band p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 68px;
    align-items: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--gold-dark);
    font-weight: 800;
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-list div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 6px 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(16, 16, 16, 0.035);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-list div:hover {
    transform: translateX(6px);
    border-color: rgba(239, 194, 67, 0.5);
}

.process-list span {
    grid-row: span 2;
    color: var(--gold-dark);
    font-weight: 800;
}

.process-list strong {
    font-size: 20px;
}

.process-list p {
    margin: 0;
}

.section-dark {
    width: 100%;
    max-width: none;
    padding: 78px max(16px, calc((100% - 1180px) / 2));
    background: #171614;
    color: var(--white);
}

.testimonial-grid article {
    background: var(--white);
}

.testimonial-grid p {
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.testimonial-grid strong {
    display: block;
    margin-top: 22px;
    color: var(--ink);
}

.testimonial-grid span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
    color: var(--white);
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.featured {
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-12px);
    box-shadow: 0 26px 80px rgba(239, 194, 67, 0.14);
}

.price {
    margin: 18px 0;
    color: var(--gold);
    font-size: 34px;
    font-weight: 800;
}

.price-card.featured .price {
    color: var(--ink);
}

.price small {
    color: var(--muted);
    font-size: 15px;
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 11px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 13px;
}

.price-card li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-card li i {
    color: var(--gold);
}

.partner-grid {
    grid-template-columns: repeat(3, 1fr);
}

.partner-grid div {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink-soft);
    font-weight: 800;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.partner-grid div:hover {
    transform: translateY(-5px);
    background: #fff9e8;
    border-color: rgba(239, 194, 67, 0.55);
}

.partner-grid i {
    color: var(--gold-dark);
    font-size: 26px;
}

.partner-grid strong {
    display: block;
    font-size: 18px;
}

.partner-grid span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.partner-cta {
    margin-top: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--ink);
    color: var(--white);
    border-radius: 18px;
}

.partner-visual {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 22px;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(16, 16, 16, 0.06);
}

.partner-visual h3 {
    margin: 14px 0 10px;
    color: var(--ink);
    font-family: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
    font-weight: 800;
}

.partner-visual p {
    color: var(--muted);
    line-height: 1.7;
}

.partner-visual .image-frame {
    aspect-ratio: 16 / 8.8;
}

.partner-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 900;
}

.faq-section {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
}

.faq-list p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.contact-items {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-items a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(16, 16, 16, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-soft);
    color: var(--ink);
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 4px rgba(239, 194, 67, 0.18);
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
}

.reveal-ready .feature-card,
.reveal-ready .price-card,
.reveal-ready .partner-grid div,
.reveal-ready .process-list div,
.reveal-ready .section-heading,
.reveal-ready .insight-band,
.reveal-ready .faq-list details,
.reveal-ready .contact-form,
.reveal-ready .problem-grid article,
.reveal-ready .audience-grid article,
.reveal-ready .security-grid article,
.reveal-ready .testimonial-grid article,
.reveal-ready .image-frame {
    opacity: 1;
    transform: none;
}

.reveal-ready .is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reveal-ready .price-card.featured.is-visible {
    transform: translateY(-12px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes panelFloat {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -10px;
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 173, 99, 0.52);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 173, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 173, 99, 0);
    }
}

@keyframes scrollCue {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 16px);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
    gap: 44px;
}

.footer-logo {
    width: 132px;
    margin-bottom: 16px;
}

.site-footer h4 {
    margin: 0 0 16px;
    color: var(--white);
}

.site-footer a {
    display: block;
    margin: 10px 0;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.loading {
    opacity: 0.72;
    pointer-events: none;
}

.careers-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 156px 0 54px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 54px;
    align-items: end;
}

.careers-hero h1 {
    max-width: 760px;
    margin: 18px 0;
    color: var(--ink);
    font-family: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    font-weight: 800;
    text-wrap: balance;
}

.careers-hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.careers-hero-card {
    padding: 28px;
    background: var(--ink);
    color: var(--white);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(16, 16, 16, 0.14);
}

.careers-hero-card strong {
    display: block;
    color: var(--gold);
    font-size: 58px;
    line-height: 1;
}

.careers-hero-card span {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 800;
}

.careers-hero-card small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.jobs-filter {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(16, 16, 16, 0.06);
}

.jobs-filter label {
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 800;
}

.jobs-filter input,
.jobs-filter select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    background: var(--paper-soft);
    color: var(--ink);
    font: inherit;
    outline: none;
}

.careers-section,
.jobs-section,
.candidate-section {
    padding-top: 66px;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.department-grid article,
.job-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(16, 16, 16, 0.035);
}

.department-grid article {
    padding: 24px;
}

.department-grid i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--ink);
    border-radius: 14px;
}

.department-grid h3 {
    margin: 22px 0 8px;
    font-size: 21px;
}

.department-grid p {
    color: var(--muted);
    line-height: 1.6;
}

.department-grid strong {
    display: inline-flex;
    margin-top: 14px;
    color: var(--gold-dark);
    font-weight: 900;
}

.job-list {
    display: grid;
    gap: 14px;
}

.job-card {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 26px;
    align-items: center;
}

.job-card span {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.job-card h3 {
    margin: 8px 0;
    font-size: 24px;
}

.job-card p {
    margin: 0;
    color: var(--muted);
}

.job-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-card li {
    padding: 8px 10px;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 800;
}

.job-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content,
    .split-section,
    .contact-section,
    .careers-hero,
    .product-section,
    .partner-visual,
    .insight-band {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 62px;
        gap: 34px;
        transform: none;
    }

    .hero-visual-notes {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 0;
    }

    .hero-note,
    .hero-note:nth-child(2) {
        width: auto;
        margin: 0;
    }

    .proof-strip,
    .feature-grid,
    .pricing-grid,
    .department-grid,
    .jobs-filter,
    .problem-grid,
    .audience-grid,
    .security-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-card {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 680px) {
    .nav-inner {
        height: 72px;
    }

    .brand-link img {
        width: 98px;
    }

    .hero-content {
        margin-top: 72px;
        padding: 52px 0 36px;
    }

    .hero-copy h1 {
        font-size: 41px;
    }

    .hero-visual-notes {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        padding: 18px;
    }

    .proof-strip,
    .feature-grid,
    .pricing-grid,
    .partner-grid,
    .department-grid,
    .jobs-filter,
    .problem-grid,
    .audience-grid,
    .security-grid,
    .testimonial-grid,
    .form-row,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .proof-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-strip div:last-child {
        border-bottom: 0;
    }

    .section,
    .contact-section {
        padding: 58px 0;
    }

    .careers-hero {
        padding-top: 118px;
        padding-bottom: 36px;
    }

    .insight-band {
        padding: 28px;
        border-radius: 18px;
    }

    .partner-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-badges span {
        width: 100%;
    }

    .section-dark {
        padding-top: 78px;
        padding-bottom: 78px;
    }
}
